Home
last modified time | relevance | path

Searched refs:is_ (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/
H A Dencodedstream.h44 EncodedInputStream(InputByteStream& is) : is_(is) { in RAPIDJSON_DIAG_OFF()
45 current_ = Encoding::TakeBOM(is_); in RAPIDJSON_DIAG_OFF()
49 Ch Take() { Ch c = current_; current_ = Encoding::Take(is_); return c; } in RAPIDJSON_DIAG_OFF()
50 size_t Tell() const { return is_.Tell(); } in RAPIDJSON_DIAG_OFF()
62 InputByteStream& is_; in RAPIDJSON_DIAG_OFF() local
72 EncodedInputStream(MemoryStream& is) : is_(is) { in EncodedInputStream()
73 if (static_cast<unsigned char>(is_.Peek()) == 0xEFu) is_.Take(); in EncodedInputStream()
74 if (static_cast<unsigned char>(is_.Peek()) == 0xBBu) is_.Take(); in EncodedInputStream()
75 if (static_cast<unsigned char>(is_.Peek()) == 0xBFu) is_.Take(); in EncodedInputStream()
77 Ch Peek() const { return is_.Peek(); } in Peek()
[all …]
H A Dreader.h442 is.is_.src_ = SkipWhitespace_SIMD(is.is_.src_, is.is_.end_); in SkipWhitespace()
H A Dschema.h1963 …SchemaValidatingReader(InputStream& is, const SchemaDocumentType& sd) : is_(is), sd_(sd), invalidS…
1969 parseResult_ = reader.template Parse<parseFlags>(is_, validator);
1993 InputStream& is_;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/math/policies/
H A Dpolicy.hpp126 template <class T> struct is_##name##_imp\
133 …template <class T> struct is_##name : public boost::mpl::bool_< ::boost::math::policies::detail::i…
141 template <class T> struct is_##name##_imp\
148 …template <class T> struct is_##name : public boost::mpl::bool_< ::boost::math::policies::detail::i…
156 template <class T> struct is_##name##_tester\
161 template <class T> struct is_##name##_imp\
164 …BOOST_STATIC_CONSTANT(bool, value = sizeof( ::boost::math::policies::detail::is_##name##_tester<T>…
167 …template <class T> struct is_##name : public boost::mpl::bool_< ::boost::math::policies::detail::i…
169 template <class U> struct apply{ typedef is_##name<U> type; };\
178 template <class T> struct is_##name##_tester\
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/char_encoding/
H A Dunicode.hpp142 is_##name(char_type ch) \
161 is_##name(char_type ch) \
209 is_##name(char_type ch) \
211 return ucd::is_##name(ch); \
228 is_##name(char_type ch) \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/
H A Dcount_args.hpp61 BOOST_PP_CAT(is_,BOOST_PP_CAT(AUX778076_COUNT_ARGS_PREFIX,_arg)) \
/OK3568_Linux_fs/kernel/arch/riscv/include/asm/
H A Dparse_asm.h173 static inline bool is_ ## INSN_NAME ## _insn(long insn) \
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/
H A Drational.hpp881 resetter(std::istream& is) : is_(is), f_(is.flags()) {} in resetter()
882 ~resetter() { is_.flags(f_); } in ~resetter()
883 std::istream& is_; member
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/
H A Dchar_class.hpp340 return CharEncoding::is_##name(detail::cast_char<char_type>(ch)); \