Home
last modified time | relevance | path

Searched refs:char_type (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/third_party/boost/libs/log/src/setup/
Dparser_utils.hpp43 typedef char char_type; typedef
44 typedef std::basic_string< char_type > string_type;
45 typedef boost::log::basic_string_literal< char_type > literal_type;
47 static const char_type char_comment = '#';
48 static const char_type char_comma = ',';
49 static const char_type char_dot = '.';
50 static const char_type char_quote = '"';
51 static const char_type char_percent = '%';
52 static const char_type char_exclamation = '!';
53 static const char_type char_and = '&';
[all …]
Dparser_utils.cpp39 const char_constants< char >::char_type char_constants< char >::char_comment;
40 const char_constants< char >::char_type char_constants< char >::char_comma;
41 const char_constants< char >::char_type char_constants< char >::char_dot;
42 const char_constants< char >::char_type char_constants< char >::char_quote;
43 const char_constants< char >::char_type char_constants< char >::char_percent;
44 const char_constants< char >::char_type char_constants< char >::char_exclamation;
45 const char_constants< char >::char_type char_constants< char >::char_and;
46 const char_constants< char >::char_type char_constants< char >::char_or;
47 const char_constants< char >::char_type char_constants< char >::char_equal;
48 const char_constants< char >::char_type char_constants< char >::char_greater;
[all …]
/third_party/boost/boost/log/detail/
Ddate_time_format_parser.hpp41 typedef CharT char_type; typedef
51 virtual void on_literal(iterator_range< const char_type* > const& lit) = 0;
58 virtual void on_placeholder(iterator_range< const char_type* > const& ph) in on_placeholder()
69 …const char_type placeholder[3] = { static_cast< char_type >('%'), static_cast< char_type >('y'), s… in on_short_year()
78 …const char_type placeholder[3] = { static_cast< char_type >('%'), static_cast< char_type >('Y'), s… in on_full_year()
87 …const char_type placeholder[3] = { static_cast< char_type >('%'), static_cast< char_type >('m'), s… in on_numeric_month()
96 …const char_type placeholder[3] = { static_cast< char_type >('%'), static_cast< char_type >('b'), s… in on_short_month()
105 …const char_type placeholder[3] = { static_cast< char_type >('%'), static_cast< char_type >('B'), s… in on_full_month()
116char_type placeholder[3] = { static_cast< char_type >('%'), (leading_zero ? static_cast< char_type in on_month_day()
125 …const char_type placeholder[3] = { static_cast< char_type >('%'), static_cast< char_type >('w'), s… in on_numeric_week_day()
[all …]
/third_party/boost/boost/xpressive/detail/dynamic/
Dparser_traits.hpp40 typedef typename regex_traits::char_type char_type; typedef
111 case BOOST_XPR_CHAR_(char_type, '\\'): return this->get_escape_token(++begin, end); in get_token()
112 case BOOST_XPR_CHAR_(char_type, '.'): ++begin; return token_any; in get_token()
113 case BOOST_XPR_CHAR_(char_type, '^'): ++begin; return token_assert_begin_line; in get_token()
114 case BOOST_XPR_CHAR_(char_type, '$'): ++begin; return token_assert_end_line; in get_token()
115 case BOOST_XPR_CHAR_(char_type, '('): ++begin; return token_group_begin; in get_token()
116 case BOOST_XPR_CHAR_(char_type, ')'): ++begin; return token_group_end; in get_token()
117 case BOOST_XPR_CHAR_(char_type, '|'): ++begin; return token_alternate; in get_token()
118 case BOOST_XPR_CHAR_(char_type, '['): ++begin; return token_charset_begin; in get_token()
120 case BOOST_XPR_CHAR_(char_type, '*'): in get_token()
[all …]
Dparse_charset.hpp76 typedef typename iterator_value<FwdIter>::type char_type; in parse_escape() typedef
81 typedef typename boost::uint_t<CHAR_BIT * sizeof(char_type)>::least uchar_t; in parse_escape()
82 BOOST_MPL_ASSERT_RELATION(sizeof(uchar_t), ==, sizeof(char_type)); in parse_escape()
87 escape_value<char_type,char_class_type> esc = { 0, 0, 0, escape_char }; in parse_escape()
108 case BOOST_XPR_CHAR_(char_type, 'a'): in parse_escape()
109 esc.ch_ = BOOST_XPR_CHAR_(char_type, '\a'); in parse_escape()
113 case BOOST_XPR_CHAR_(char_type, 'e'): in parse_escape()
118 case BOOST_XPR_CHAR_(char_type, 'c'): in parse_escape()
122 … rxtraits.in_range(BOOST_XPR_CHAR_(char_type, 'a'), BOOST_XPR_CHAR_(char_type, 'z'), *begin) in parse_escape()
123 … || rxtraits.in_range(BOOST_XPR_CHAR_(char_type, 'A'), BOOST_XPR_CHAR_(char_type, 'Z'), *begin) in parse_escape()
[all …]
/third_party/boost/libs/log/src/
Ddate_time_format_parser.cpp45 typedef char char_type;
47 static const char_type* iso_date_format() { return "%Y%m%d"; }
48 static const char_type* extended_iso_date_format() { return "%Y-%m-%d"; }
50 static const char_type* iso_time_format() { return "%H%M%S"; }
51 static const char_type* extended_iso_time_format() { return "%H:%M:%S"; }
52 static const char_type* default_time_format() { return "%H:%M:%S.%f"; }
62 typedef wchar_t char_type;
64 static const char_type* iso_date_format() { return L"%Y%m%d"; }
65 static const char_type* extended_iso_date_format() { return L"%Y-%m-%d"; }
67 static const char_type* iso_time_format() { return L"%H%M%S"; }
[all …]
/third_party/boost/boost/date_time/
Dtime_facet.hpp39 typedef CharT char_type; typedef
40 static const char_type fractional_seconds_format[3]; // f
41 static const char_type fractional_seconds_or_none_format[3]; // F
42 static const char_type seconds_with_fractional_seconds_format[3]; // s
43 static const char_type seconds_format[3]; // S
44 static const char_type hours_format[3]; // H
45 static const char_type unrestricted_hours_format[3]; // O
46 static const char_type full_24_hour_time_format[3]; // T
47 static const char_type full_24_hour_time_expanded_format[9]; // HH:MM:SS
48 static const char_type short_24_hour_time_format[3]; // R
[all …]
Dperiod_parser.hpp44 typedef CharT char_type; typedef in boost::date_time::period_parser
51 static const char_type default_period_separator[2];
52 static const char_type default_period_start_delimeter[2];
53 static const char_type default_period_open_range_end_delimeter[2];
54 static const char_type default_period_closed_range_end_delimeter[2];
60 const char_type* const period_separator = default_period_separator, in period_parser()
61 const char_type* const period_start_delimeter = default_period_start_delimeter, in period_parser()
62 … const char_type* const period_open_range_end_delimeter = default_period_open_range_end_delimeter, in period_parser()
63 …const char_type* const period_closed_range_end_delimeter = default_period_closed_range_end_delimet… in period_parser()
174 …+ convert_string_type<char_type,char>(delim) + "' but found '" + convert_string_type<char_type,cha… in consume_delim()
[all …]
Ddate_facet.hpp58 typedef CharT char_type; typedef in boost::date_time::date_facet
70 static const char_type long_weekday_format[3];
71 static const char_type short_weekday_format[3];
72 static const char_type long_month_format[3];
73 static const char_type short_month_format[3];
74 static const char_type default_period_separator[4];
75 static const char_type standard_format_specifier[3];
76 static const char_type iso_format_specifier[7];
77 static const char_type iso_format_extended_specifier[9];
78 static const char_type default_date_format[9]; // YYYY-Mon-DD
[all …]
/third_party/boost/boost/iostreams/device/
Darray.hpp32 typedef Ch char_type; typedef in boost::iostreams::detail::array_adapter
33 typedef std::pair<char_type*, char_type*> pair_type;
39 array_adapter(char_type* begin, char_type* end);
40 array_adapter(char_type* begin, std::size_t length);
41 array_adapter(const char_type* begin, const char_type* end);
42 array_adapter(const char_type* begin, std::size_t length);
44 array_adapter(char_type (&ar)[N]) in array_adapter()
50 char_type* begin_;
51 char_type* end_;
62 typedef typename base_type::char_type char_type; \
[all …]
/third_party/boost/libs/utility/test/
Dstring_view_constexpr_test1.cpp23 typedef char char_type; typedef
29 static void assign(char_type& c1, const char_type& c2) noexcept { c1 = c2; } in assign()
30 static constexpr bool eq(char_type c1, char_type c2) noexcept { return c1 == c2; } in eq()
31 static constexpr bool lt(char_type c1, char_type c2) noexcept { return c1 < c2; } in lt()
33 …static constexpr int compare(const char_type* s1, const char_type* s2, size_t n) noex…
34 static constexpr size_t length(const char_type* s) noexcept;
35 … static constexpr const char_type* find(const char_type* s, size_t n, const char_type& a) noexcept;
36 static constexpr char_type* move(char_type* s1, const char_type* s2, size_t n) noexcept;
37 static constexpr char_type* copy(char_type* s1, const char_type* s2, size_t n) noexcept;
38 static constexpr char_type* assign(char_type* s, size_t n, char_type a) noexcept;
[all …]
Dstring_ref_test_io.cpp40 typedef CharT char_type; typedef
41 typedef std::basic_string< char_type > string_type;
42 typedef std::basic_ostringstream< char_type > ostream_type;
63 typedef CharT char_type; in test_string_ref_output() typedef
64 typedef std::basic_ostringstream< char_type > ostream_type; in test_string_ref_output()
65 typedef boost::basic_string_ref< char_type > string_ref_type; in test_string_ref_output()
67 context< char_type > ctx; in test_string_ref_output()
78 typedef CharT char_type; in test_padding() typedef
79 typedef std::basic_ostringstream< char_type > ostream_type; in test_padding()
80 typedef boost::basic_string_ref< char_type > string_ref_type; in test_padding()
[all …]
Dstring_view_test_io.cpp40 typedef CharT char_type; typedef
41 typedef std::basic_string< char_type > string_type;
42 typedef std::basic_ostringstream< char_type > ostream_type;
63 typedef CharT char_type; in test_string_view_output() typedef
64 typedef std::basic_ostringstream< char_type > ostream_type; in test_string_view_output()
65 typedef boost::basic_string_view< char_type > string_view_type; in test_string_view_output()
67 context< char_type > ctx; in test_string_view_output()
78 typedef CharT char_type; in test_padding() typedef
79 typedef std::basic_ostringstream< char_type > ostream_type; in test_padding()
80 typedef boost::basic_string_view< char_type > string_view_type; in test_padding()
[all …]
/third_party/boost/boost/spirit/home/qi/char/
Dchar.hpp118 , typename CharEncoding::char_type
120 , typename CharEncoding::char_type>::type>
122 typedef typename CharEncoding::char_type char_type; typedef
127 : ch(static_cast<char_type>(ch_)) {} in literal_char()
133 no_attribute, unused_type, char_type>::type
141 ch == char_type(ch_); in test()
150 char_type ch;
158 , typename CharEncoding::char_type>::type>
160 typedef typename CharEncoding::char_type char_type; typedef
163 literal_char(char_type ch) in literal_char()
[all …]
/third_party/boost/boost/locale/
Dcollator.hpp64 typedef CharType char_type; typedef in boost::locale::collator
78 char_type const *b1,char_type const *e1, in compare()
79 char_type const *b2,char_type const *e2) const in compare()
94 string_type transform(level_type level,char_type const *b,char_type const *e) const in transform()
106 long hash(level_type level,char_type const *b,char_type const *e) const in hash()
164 virtual int do_compare( char_type const *b1,char_type const *e1, in do_compare()
165 char_type const *b2,char_type const *e2) const in do_compare()
173 virtual string_type do_transform(char_type const *b,char_type const *e) const in do_transform()
181 virtual long do_hash(char_type const *b,char_type const *e) const in do_hash()
190 char_type const *b1,char_type const *e1,
[all …]
Dutf.hpp67 typedef CharType char_type; typedef
106 static int trail_length(char_type c);
110 static bool is_trail(char_type c);
114 static bool is_lead(char_type c);
145 typedef CharType char_type; typedef
147 static int trail_length(char_type ci) in trail_length()
181 static bool is_trail(char_type ci) in is_trail()
187 static bool is_lead(char_type ci) in is_lead()
290 *out++ = static_cast<char_type>(value); in encode()
293 *out++ = static_cast<char_type>((value >> 6) | 0xC0); in encode()
[all …]
/third_party/boost/boost/xpressive/traits/
Dc_regex_traits.hpp121 typedef Char char_type; typedef
122 typedef std::basic_string<char_type> string_type;
139 bool operator ==(c_regex_traits<char_type> const &) const in operator ==()
147 bool operator !=(c_regex_traits<char_type> const &) const in operator !=()
156 static char_type widen(char ch);
162 static unsigned char hash(char_type ch) in hash()
171 static char_type translate(char_type ch) in translate()
180 static char_type translate_nocase(char_type ch) in translate_nocase()
189 static char_type tolower(char_type ch) in tolower()
198 static char_type toupper(char_type ch) in toupper()
[all …]
Dnull_regex_traits.hpp44 typedef Elem char_type; typedef
45 typedef std::vector<char_type> string_type;
59 bool operator ==(null_regex_traits<char_type> const &that) const in operator ==()
68 bool operator !=(null_regex_traits<char_type> const &that) const in operator !=()
78 char_type widen(char ch) const in widen()
80 return char_type(ch); in widen()
87 static unsigned char hash(char_type ch) in hash()
96 static char_type translate(char_type ch) in translate()
105 static char_type translate_nocase(char_type ch) in translate_nocase()
116 static bool in_range(char_type first, char_type last, char_type ch) in in_range()
[all …]
Dcpp_regex_traits.hpp320 typedef Char char_type; typedef
321 typedef std::basic_string<char_type> string_type;
340 bool operator ==(cpp_regex_traits<char_type> const &that) const in operator ==()
348 bool operator !=(cpp_regex_traits<char_type> const &that) const in operator !=()
357 char_type widen(char ch) const in widen()
366 static unsigned char hash(char_type ch) in hash()
375 static char_type translate(char_type ch) in translate()
384 char_type translate_nocase(char_type ch) const in translate_nocase()
393 char_type tolower(char_type ch) const in tolower()
402 char_type toupper(char_type ch) const in toupper()
[all …]
/third_party/boost/boost/convert/
Dstrtol.hpp55 …template <typename char_type> cnv::range<char_type*> to_str ( int_type v, char_type* buf) const … in to_str()
56 …template <typename char_type> cnv::range<char_type*> to_str ( uint_type v, char_type* buf) const … in to_str()
57 …template <typename char_type> cnv::range<char_type*> to_str ( lint_type v, char_type* buf) const … in to_str()
58 …template <typename char_type> cnv::range<char_type*> to_str ( ulint_type v, char_type* buf) const … in to_str()
59 …template <typename char_type> cnv::range<char_type*> to_str ( llint_type v, char_type* buf) const … in to_str()
60 …template <typename char_type> cnv::range<char_type*> to_str (ullint_type v, char_type* buf) const … in to_str()
61 template <typename char_type> cnv::range<char_type*> to_str ( dbl_type v, char_type* buf) const;
63 …template<typename char_type, typename in_type> cnv::range<char_type*> i_to_str (in_type, char_type
71 template<typename char_type, typename Type>
72 boost::cnv::range<char_type*>
[all …]
/third_party/boost/libs/locale/src/icu/
Duconv.hpp35 typedef CharType char_type; typedef in boost::locale::impl_icu::icu_std_converter
36 typedef std::basic_string<char_type> string_type;
39 icu::UnicodeString icu(char_type const *begin,char_type const *end) const;
41 …size_t cut(icu::UnicodeString const &str,char_type const *begin,char_type const *end,size_t n,size…
47 typedef CharType char_type; typedef in boost::locale::impl_icu::icu_std_converter
48 typedef std::basic_string<char_type> string_type;
51 icu::UnicodeString icu_checked(char_type const *vb,char_type const *ve) const in icu_checked()
55 icu::UnicodeString icu(char_type const *vb,char_type const *ve) const in icu()
80 size_t cut(icu::UnicodeString const &str,char_type const *begin,char_type const *end, in cut()
140 size_t cut(size_t n,char_type const *begin,char_type const *end) in cut()
[all …]
/third_party/boost/boost/xpressive/detail/core/
Dregex_impl.hpp71 : traits<typename Traits::char_type>
73 typedef typename Traits::char_type char_type; typedef
85 char_type tolower(char_type ch) const in tolower()
90 char_type toupper(char_type ch) const in toupper()
95 int value(char_type ch, int radix) const in value()
100 bool in_range(char_type from, char_type to, char_type ch) const in in_range()
106 char_type tolower_(char_type ch, regex_traits_version_1_tag) const in tolower_()
111 char_type toupper_(char_type ch, regex_traits_version_1_tag) const in toupper_()
116 char_type tolower_(char_type ch, regex_traits_version_2_tag) const in tolower_()
121 char_type toupper_(char_type ch, regex_traits_version_2_tag) const in toupper_()
[all …]
/third_party/boost/libs/log/test/run/
Dutil_manip_tuple.cpp48 typedef CharT char_type; in BOOST_AUTO_TEST_CASE_TEMPLATE() typedef
49 typedef test_data< char_type > test_data_type; in BOOST_AUTO_TEST_CASE_TEMPLATE()
50 typedef std::basic_ostringstream< char_type > ostream_type; in BOOST_AUTO_TEST_CASE_TEMPLATE()
51 typedef std::basic_string< char_type > string_type; in BOOST_AUTO_TEST_CASE_TEMPLATE()
66 typedef CharT char_type; in BOOST_AUTO_TEST_CASE_TEMPLATE() typedef
67 typedef test_data< char_type > test_data_type; in BOOST_AUTO_TEST_CASE_TEMPLATE()
68 typedef std::basic_ostringstream< char_type > ostream_type; in BOOST_AUTO_TEST_CASE_TEMPLATE()
69 typedef std::basic_string< char_type > string_type; in BOOST_AUTO_TEST_CASE_TEMPLATE()
84 typedef CharT char_type; in BOOST_AUTO_TEST_CASE_TEMPLATE() typedef
85 typedef test_data< char_type > test_data_type; in BOOST_AUTO_TEST_CASE_TEMPLATE()
[all …]
/third_party/boost/libs/interprocess/test/
Dnamed_allocation_test_template.hpp49 typedef typename ManagedMemory::char_type char_type; in test_names_and_types() typedef
50 typedef std::char_traits<char_type> char_traits_type; in test_names_and_types()
53 char_type name[BufferLen]; in test_names_and_types()
55 basic_bufferstream<char_type> formatter(name, BufferLen); in test_names_and_types()
59 formatter << get_prefix(char_type()) << i << std::ends; in test_names_and_types()
107 typedef typename ManagedMemory::char_type char_type; in test_named_iterators() typedef
110 char_type name[BufferLen]; in test_named_iterators()
111 typedef std::basic_string<char_type> string_type; in test_named_iterators()
114 basic_bufferstream<char_type> formatter(name, BufferLen); in test_named_iterators()
120 formatter << get_prefix(char_type()) << i << std::ends; in test_named_iterators()
[all …]
/third_party/boost/boost/spirit/home/x3/char/
Dchar_set.hpp24 template <typename Encoding, typename Attribute = typename Encoding::char_type>
29 typedef typename Encoding::char_type char_type; typedef
36 constexpr char_range(char_type from_, char_type to_) in char_range()
43 char_type ch = char_type(ch_); // optimize for token based parsing in test()
48 char_type from, to;
55 template <typename Encoding, typename Attribute = typename Encoding::char_type>
58 typedef typename Encoding::char_type char_type; typedef
79 chset.set(cast_char<char_type>(ch)); in char_set()
84 cast_char<char_type>(ch), in char_set()
85 cast_char<char_type>(next) in char_set()
[all …]

12345678910>>...19