Home
last modified time | relevance | path

Searched refs:Char (Results 1 – 25 of 114) sorted by relevance

12345

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/lexical_cast/detail/
H A Dconverter_lexical.hpp61 template < class Char >
64 typedef Char type;
99 template < typename Char >
100 struct stream_char_common< Char* >: public boost::mpl::if_c<
101 boost::detail::is_character< Char >::value,
102 Char,
103 boost::detail::deduce_character_type_later< Char* >
106 template < typename Char >
107 struct stream_char_common< const Char* >: public boost::mpl::if_c<
108 boost::detail::is_character< Char >::value,
[all …]
H A Dlcast_char_constants.hpp30 template < typename Char >
34 BOOST_STATIC_CONSTANT(Char, zero = static_cast<Char>('0'));
35 BOOST_STATIC_CONSTANT(Char, minus = static_cast<Char>('-'));
36 BOOST_STATIC_CONSTANT(Char, plus = static_cast<Char>('+'));
37 BOOST_STATIC_CONSTANT(Char, lowercase_e = static_cast<Char>('e'));
38 BOOST_STATIC_CONSTANT(Char, capital_e = static_cast<Char>('E'));
39 BOOST_STATIC_CONSTANT(Char, c_decimal_separator = static_cast<Char>('.'));
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/detail/
H A Dhold_any.hpp61 template <typename Char>
69 std::basic_istream<Char>& (*stream_in)(std::basic_istream<Char>&, void**);
70 std::basic_ostream<Char>& (*stream_out)(std::basic_ostream<Char>&, void* const*);
80 template<typename T, typename Char>
104 static std::basic_istream<Char>&
105 stream_in (std::basic_istream<Char>& i, void** obj) in stream_in()
110 static std::basic_ostream<Char>&
111 stream_out(std::basic_ostream<Char>& o, void* const* obj) in stream_out()
123 template<typename T, typename Char>
149 static std::basic_istream<Char>&
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/char_set/
H A Dbasic_chset.hpp28 template <typename Char>
36 test(Char v) const in test()
42 set(Char from, Char to) in set()
44 rr.set(range<Char>(from, to)); in set()
48 set(Char c) in set()
50 rr.set(range<Char>(c, c)); in set()
54 clear(Char from, Char to) in clear()
56 rr.clear(range<Char>(from, to)); in clear()
60 clear(Char c) in clear()
62 rr.clear(range<Char>(c, c)); in clear()
[all …]
H A Drange_run_impl.hpp49 template <typename Char>
51 range_run<Char>::test(Char val) const in test()
67 template <typename Char>
69 range_run<Char>::swap(range_run& other) in swap()
74 template <typename Char>
76 range_run<Char>::set(range_type const& range) in set()
116 template <typename Char>
118 range_run<Char>::clear(range_type const& range) in clear()
142 Char save_last = left_iter->last; in clear()
177 template <typename Char>
[all …]
H A Drange_run.hpp35 template <typename Char>
40 typedef range<Char> range_type;
44 bool test(Char v) const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/fusion/sequence/io/detail/
H A Dmanip.hpp130 template <typename Char>
132 check_delim(Char c) const in check_delim()
157 template <typename Char, typename Traits> \
158 inline detail::name##_type<Char, Traits> \
159 name(const std::basic_string<Char, Traits>& s) \
161 return detail::name##_type<Char, Traits>(s); \
191 template <typename Char, typename Traits> \
192 inline detail::name##_type<Char, Traits> \
193 name(const std::basic_string<Char, Traits>& s) \
195 return detail::name##_type<Char, Traits>(s); \
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/string/
H A Dsymbols.hpp40 typename Char = char
42 , typename Lookup = tst<Char, T>
47 reference<symbols<Char, T, Lookup, Filter> >
49 , symbols<Char, T, Lookup, Filter>
51 , primitive_parser<symbols<Char, T, Lookup, Filter> >
53 typedef Char char_type; // the character type
55 typedef symbols<Char, T, Lookup, Filter> this_type;
85 symbols(symbols<Char, T, Lookup, Filter_> const& syms) in symbols()
132 operator=(symbols<Char, T, Lookup, Filter_> const& rhs) in operator =()
211 return *lookup->add(traits::get_begin<Char>(str) in at()
[all …]
H A Dtst.hpp20 template <typename Char>
21 Char operator()(Char ch) const in operator ()()
27 template <typename Char, typename T>
30 typedef Char char_type; // the character type
32 typedef detail::tst_node<Char, T> node;
91 node::for_each(root, std::basic_string<Char>(), f); in for_each()
96 friend struct detail::tst_node<Char, T>;
115 node* new_node(Char id) in new_node()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/numeric/detail/
H A Dnumeric_utils.hpp101 template <typename Char>
102 inline static bool is_valid(Char ch) in is_valid()
105 return (ch >= '0' && ch <= static_cast<Char>('0' + Radix -1)); in is_valid()
107 || (ch >= 'a' && ch <= static_cast<Char>('a' + Radix -10 -1)) in is_valid()
108 || (ch >= 'A' && ch <= static_cast<Char>('A' + Radix -10 -1)); in is_valid()
111 template <typename Char>
112 inline static unsigned digit(Char ch) in digit()
134 template <typename T, typename Char>
135 inline static void add(T& n, Char ch, mpl::false_) // unchecked add in add()
141 template <typename T, typename Char>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/io/dsv/
H A Dwrite.hpp76 template <typename Char, typename Traits>
77 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
94 template <typename Char, typename Traits>
95 static inline void apply(std::basic_ostream<Char, Traits>&, in apply()
114 template <typename Char, typename Traits>
115 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
131 template <typename Char, typename Traits>
132 static inline void apply(std::basic_ostream<Char, Traits>&, Geometry const&, in apply()
144 template <typename Char, typename Traits>
145 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/
H A Dtoken_functions.hpp96 template <class Char,
97 class Traits = BOOST_DEDUCED_TYPENAME std::basic_string<Char>::traits_type >
101 typedef std::basic_string<Char,Traits> string_type;
103 Char e_;
104 char_eq(Char e):e_(e) { } in char_eq()
105 bool operator()(Char c) { in operator ()()
114 bool is_escape(Char e) { in is_escape()
118 bool is_c(Char e) { in is_c()
122 bool is_quote(Char e) { in is_quote()
152 explicit escaped_list_separator(Char e = '\\', in escaped_list_separator()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/io/wkt/
H A Dwrite.hpp65 template <typename Char, typename Traits>
66 static inline void apply(std::basic_ostream<Char, Traits>& os, P const& p) in apply()
76 template <typename Char, typename Traits>
77 static inline void apply(std::basic_ostream<Char, Traits>&, P const&) in apply()
113 template <typename Char, typename Traits>
114 static inline void apply(std::basic_ostream<Char, Traits>& os, Point const& p) in apply()
129 template <typename Char, typename Traits>
130 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
167 template <typename Char, typename Traits>
168 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/
H A Dutf8.hpp27 template <typename Char>
28 inline utf8_string to_utf8(Char value) in to_utf8()
35 typedef typename make_unsigned<Char>::type UChar; in to_utf8()
40 template <typename Char>
41 inline utf8_string to_utf8(Char const* str) in to_utf8()
48 typedef typename make_unsigned<Char>::type UChar; in to_utf8()
54 template <typename Char, typename Traits, typename Allocator>
56 to_utf8(std::basic_string<Char, Traits, Allocator> const& str) in to_utf8() argument
63 typedef typename make_unsigned<Char>::type UChar; in to_utf8()
64 BOOST_FOREACH(Char ch, str) in to_utf8()
H A Dchar_class.hpp291 template <typename Char> \
293 is(tag::name, Char ch) \
317 template <typename Char> in BOOST_SPIRIT_CLASSIFY()
319 is(tag::lowernum, Char ch) in BOOST_SPIRIT_CLASSIFY()
325 template <typename Char>
327 is(tag::uppernum, Char ch) in is()
336 template <typename Char> \
338 is(tag::name, Char ch) \
516 template <typename Char>
517 static Char
[all …]
H A Dinfo.hpp59 template <typename Char>
60 info(utf8_string const& tag_, Char const* str) in info()
63 template <typename Char, typename Traits, typename Allocator>
65 , std::basic_string<Char, Traits, Allocator> const& str) in info()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/stream/detail/
H A Dmatch_manip.hpp150 template<typename Char, typename Traits, typename Expr
152 inline std::basic_istream<Char, Traits> &
153 operator>>(std::basic_istream<Char, Traits> &is, in operator >>() argument
156 typedef spirit::basic_istream_iterator<Char, Traits> input_iterator; in operator >>()
168 template<typename Char, typename Traits, typename Expr
171 inline std::basic_istream<Char, Traits> &
172 operator>>(std::basic_istream<Char, Traits> &is, in operator >>() argument
175 typedef spirit::basic_istream_iterator<Char, Traits> input_iterator; in operator >>()
187 template<typename Char, typename Traits, typename Expr
190 inline std::basic_istream<Char, Traits> &
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/io/svg/
H A Dwrite.hpp53 template <typename Char, typename Traits>
54 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
68 template <typename Char, typename Traits>
69 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
92 template <typename Char, typename Traits>
93 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
115 template <typename Char, typename Traits>
116 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
143 template <typename Char, typename Traits>
144 static inline void apply(std::basic_ostream<Char, Traits>& os, in apply()
[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 Dstandard_wide.hpp46 template <typename Char>
47 static typename std::char_traits<Char>::int_type
48 to_int_type(Char ch) in to_int_type()
50 return std::char_traits<Char>::to_int_type(ch); in to_int_type()
53 template <typename Char>
54 static Char
55 to_char_type(typename std::char_traits<Char>::int_type ch) in to_char_type()
57 return std::char_traits<Char>::to_char_type(ch); in to_char_type()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/detail/
H A Dimplementation_help.hpp56 template< class Char >
57 inline Char* str_end( Char* s ) in str_end()
59 return const_cast<Char*>( str_end( s, s ) ); in str_end()
78 template< class Char >
79 inline std::size_t str_size( const Char* const& s ) in str_size()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/range/
H A Das_literal.hpp112 template< class Char, std::size_t sz >
113 inline iterator_range<Char*> as_literal( Char (&arr)[sz] ) in as_literal()
118 template< class Char, std::size_t sz >
119 inline iterator_range<const Char*> as_literal( const Char (&arr)[sz] ) in as_literal()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/stream/
H A Dstream.hpp47 template <typename Char = char, typename T = spirit::basic_hold_any<char> >
49 : primitive_parser<stream_parser<Char, T> >
92 template <typename T, typename Char = char>
94 : proto::terminal<stream_parser<Char, T> >::type
101 template <typename Char>
104 typedef stream_parser<Char> result_type;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/detail/
H A Dstring_parse.hpp18 template <typename Char, typename Iterator, typename Attribute>
20 Char const* str in string_parse()
24 Char ch = *str; in string_parse()
55 template <typename Char, typename Iterator, typename Attribute>
57 Char const* uc_i, Char const* lc_i in string_parse()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/char/
H A Dchar.hpp125 template <typename Char>
126 literal_char(Char ch_) in literal_char()
429 template <typename Char>
430 result_type operator()(Char ch, unused_type) const in operator ()()
435 template <typename Char>
436 result_type operator()(Char const* str, unused_type) const in operator ()()
536 template <typename CharEncoding, typename Modifiers, typename Char>
540 , fusion::vector1<Char(&)[2]> // For single char strings
587 template <typename CharEncoding, typename Modifiers, typename Char>
591 , fusion::vector2<Char(&)[2], Char(&)[2]> // For single char strings
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/string/detail/
H A Dtst.hpp24 template <typename Char, typename T>
27 tst_node(Char id_) in tst_node()
192 for_each(tst_node* p, std::basic_string<Char> prefix, F f) in for_each()
197 std::basic_string<Char> s = prefix + p->id; in for_each()
205 Char id; // the node's identity character

12345