Home
last modified time | relevance | path

Searched refs:CharT (Results 1 – 25 of 359) sorted by relevance

12345678910>>...15

/third_party/boost/boost/spirit/home/classic/utility/
Dchset_operators.hpp34 template <typename CharT>
35 chset<CharT>
36 operator~(chset<CharT> const& a);
39 template <typename CharT>
40 chset<CharT>
41 operator|(chset<CharT> const& a, chset<CharT> const& b);
44 template <typename CharT>
45 chset<CharT>
46 operator&(chset<CharT> const& a, chset<CharT> const& b);
49 template <typename CharT>
[all …]
Dchset.hpp28 template <typename CharT, typename CharT2>
29 void construct_chset(boost::shared_ptr<basic_chset<CharT> >& ptr,
39 template <typename CharT = char>
40 class chset: public char_parser<chset<CharT> > {
45 explicit chset(CharT arg_);
48 explicit chset(chlit<CharT> const& arg_);
49 explicit chset(range<CharT> const& arg_);
50 explicit chset(negated_char_parser<chlit<CharT> > const& arg_);
51 explicit chset(negated_char_parser<range<CharT> > const& arg_);
55 : ptr(new basic_chset<CharT>()) in chset()
[all …]
/third_party/boost/boost/spirit/home/classic/utility/impl/
Dchset_operators.ipp25 template <typename CharT>
26 inline chset<CharT>
27 operator|(chset<CharT> const& a, chset<CharT> const& b)
29 return chset<CharT>(a) |= b;
33 template <typename CharT>
34 inline chset<CharT>
35 operator-(chset<CharT> const& a, chset<CharT> const& b)
37 return chset<CharT>(a) -= b;
41 template <typename CharT>
42 inline chset<CharT>
[all …]
Dchset.ipp28 template <typename CharT>
30 detach(boost::shared_ptr<basic_chset<CharT> >& ptr)
33 ptr = boost::shared_ptr<basic_chset<CharT> >
34 (new basic_chset<CharT>(*ptr));
37 template <typename CharT>
39 detach_clear(boost::shared_ptr<basic_chset<CharT> >& ptr)
44 ptr.reset(new basic_chset<CharT>());
47 template <typename CharT, typename CharT2>
48 void construct_chset(boost::shared_ptr<basic_chset<CharT> >& ptr,
76 template <typename CharT>
[all …]
/third_party/boost/boost/test/utils/basic_cstring/
Dbasic_cstring.hpp45 template<typename CharT>
47 typedef basic_cstring<CharT> self_type;
50 typedef ut_detail::bcs_char_traits<CharT> traits_type;
53 typedef CharT value_type;
126 return *this = basic_cstring<CharT>( s.begin(), s.end() ); in assign()
170 static CharT null;
183 template <class CharT, class string_view_t = std::basic_string_view<CharT>>
184 class BOOST_SYMBOL_VISIBLE stringview_cstring_helper : public basic_cstring<CharT> {
187 : basic_cstring<CharT>(const_cast<CharT*>(sv.data()), sv.size()) in stringview_cstring_helper()
199 template<typename CharT>
[all …]
Dcompare.hpp43 template<class CharT>
46 …static bool eq( CharT c1, CharT c2 ) { return (std::toupper)( c1 ) == (std::toupper)( c2 )… in eq()
47 …static bool lt( CharT c1, CharT c2 ) { return (std::toupper)( c1 ) < (std::toupper)( c2 )… in lt()
49 static int compare( CharT const* s1, CharT const* s2, std::size_t n ) in compare()
65 template<class CharT>
67 case_ins_eq( basic_cstring<CharT> x, basic_cstring<CharT> y ) in case_ins_eq()
69 …return x.size() == y.size() && ut_detail::case_ins<CharT>::compare( x.begin(), y.begin(), x.size()… in case_ins_eq()
78 template<class CharT>
83 typedef basic_cstring<CharT> first_argument_type;
84 typedef basic_cstring<CharT> second_argument_type;
[all …]
/third_party/boost/boost/spirit/home/classic/utility/impl/chset/
Dbasic_chset.ipp27 template <typename CharT>
28 inline basic_chset<CharT>::basic_chset() {}
31 template <typename CharT>
32 inline basic_chset<CharT>::basic_chset(basic_chset const& arg_)
36 template <typename CharT>
38 basic_chset<CharT>::test(CharT v) const
42 template <typename CharT>
44 basic_chset<CharT>::set(CharT from, CharT to)
45 { rr.set(utility::impl::range<CharT>(from, to)); }
48 template <typename CharT>
[all …]
Drange_run.ipp31 template <typename CharT>
32 inline range<CharT>::range(CharT first_, CharT last_)
36 template <typename CharT>
38 range<CharT>::is_valid() const
42 template <typename CharT>
44 range<CharT>::includes(range const& r) const
48 template <typename CharT>
50 range<CharT>::includes(CharT v) const
54 template <typename CharT>
56 range<CharT>::overlaps(range const& r) const
[all …]
Drange_run.hpp34 template <typename CharT>
37 range(CharT first, CharT last);
40 bool includes(CharT v) const;
45 CharT first;
46 CharT last;
50 template <typename CharT>
53 bool operator()(range<CharT> const& x, const CharT y) const in operator ()()
56 bool operator()(const CharT x, range<CharT> const& y) const in operator ()()
63 bool operator()(range<CharT> const& x, range<CharT> const& y) const in operator ()()
68 template <typename CharT>
[all …]
/third_party/boost/boost/beast/core/
Dstatic_string.hpp41 class CharT = char,
42 class Traits = std::char_traits<CharT>>
55 CharT s_[N+1];
79 basic_string_view<CharT, Traits>;
102 static_string(size_type count, CharT ch);
106 static_string(static_string<M, CharT, Traits> const& other,
111 static_string(static_string<M, CharT, Traits> const& other,
115 static_string(CharT const* s, size_type count);
118 static_string(CharT const* s);
129 static_string(static_string<M, CharT, Traits> const& other);
[all …]
/third_party/boost/boost/date_time/
Dtime_facet.hpp36 template <class CharT>
39 typedef CharT char_type;
71 template <class CharT>
72 const typename time_formats<CharT>::char_type
73 time_formats<CharT>::fractional_seconds_format[3] = {'%','f'};
75 template <class CharT>
76 const typename time_formats<CharT>::char_type
77 time_formats<CharT>::fractional_seconds_or_none_format[3] = {'%','F'};
79 template <class CharT>
80 const typename time_formats<CharT>::char_type
[all …]
Dtime_zone_names.hpp17 template<class CharT>
20 typedef CharT char_type;
25 template <class CharT>
26 const typename default_zone_names<CharT>::char_type
27 default_zone_names<CharT>::standard_name[9] =
30 template <class CharT>
31 const typename default_zone_names<CharT>::char_type
32 default_zone_names<CharT>::standard_abbrev[11] =
35 template <class CharT>
36 const typename default_zone_names<CharT>::char_type
[all …]
/third_party/boost/boost/spirit/home/classic/tree/impl/
Dtree_to_xml.ipp40 #define BOOST_SPIRIT_OSSTREAM std::basic_ostringstream<CharT>
50 template <typename CharT>
89 template <typename CharT>
91 encode (std::basic_string<CharT> &str, char s, char const *r, int len)
93 typedef typename std::basic_string<CharT>::size_type size_type;
96 while ((pos = str.find_first_of (impl::string_lit<CharT>::get(s), pos)) !=
97 size_type(std::basic_string<CharT>::npos))
99 str.replace (pos, 1, impl::string_lit<CharT>::get(r));
104 template <typename CharT>
105 inline std::basic_string<CharT>
[all …]
/third_party/boost/boost/test/utils/
Dwrap_stringstream.hpp39 template<typename CharT>
45 typedef std::basic_ostrstream<CharT> wrapped_stream;
47 typedef std::basic_ostringstream<CharT> wrapped_stream;
52 std::basic_string<CharT> const& str();
57 std::basic_string<CharT> m_str;
62 template <typename CharT, typename T>
63 inline basic_wrap_stringstream<CharT>&
64 operator<<( basic_wrap_stringstream<CharT>& targ, T const& t ) in operator <<()
72 template <typename CharT>
73 inline typename basic_wrap_stringstream<CharT>::wrapped_stream&
[all …]
/third_party/boost/boost/beast/core/impl/
Dstatic_string.hpp23 template<std::size_t N, class CharT, class Traits>
24 static_string<N, CharT, Traits>::
31 template<std::size_t N, class CharT, class Traits>
32 static_string<N, CharT, Traits>::
33 static_string(size_type count, CharT ch) in static_string()
38 template<std::size_t N, class CharT, class Traits>
40 static_string<N, CharT, Traits>::
41 static_string(static_string<M, CharT, Traits> const& other, in static_string() argument
47 template<std::size_t N, class CharT, class Traits>
49 static_string<N, CharT, Traits>::
[all …]
/third_party/boost/boost/spirit/home/classic/core/primitives/
Dprimitives.hpp116 template <typename CharT = char>
117 struct chlit : public char_parser<chlit<CharT> >
119 chlit(CharT ch_) in chlit()
128 CharT ch;
131 template <typename CharT>
132 inline chlit<CharT>
133 ch_p(CharT ch) in ch_p()
135 return chlit<CharT>(ch); in ch_p()
139 template <typename CharT, std::size_t N>
140 inline chlit<CharT>
[all …]
/third_party/boost/boost/log/detail/
Ddate_time_format_parser.hpp37 template< typename CharT >
41 typedef CharT char_type;
174 template< typename CharT >
178 typedef CharT char_type;
337 template< typename CharT >
339 public date_format_parser_callback< CharT >,
340 public time_format_parser_callback< CharT >
343 typedef CharT char_type;
375 template< typename CharT >
376 BOOST_LOG_API void parse_date_format(const CharT* begin, const CharT* end, date_format_parser_callb…
[all …]
Dsink_init_helpers.hpp51 template< typename CharT >
53 log::aux::is_character_type< CharT >::value,
55 >::type acquire_filter(const CharT* filter) in acquire_filter()
60 template< typename CharT, typename TraitsT, typename AllocatorT >
61 inline filter acquire_filter(std::basic_string< CharT, TraitsT, AllocatorT > const& filter) in acquire_filter() argument
67 template< typename CharT, typename TraitsT >
68 inline filter acquire_filter(std::basic_string_view< CharT, TraitsT > const& filter) in acquire_filter() argument
70 const CharT* p = filter.data(); in acquire_filter()
75 template< typename CharT, typename TraitsT >
76 inline filter acquire_filter(boost::basic_string_view< CharT, TraitsT > const& filter) in acquire_filter() argument
[all …]
/third_party/boost/libs/chrono/example/
Dfrench.cpp25 template <typename CharT=char>
26 class duration_units_fr: public duration_units_default<CharT>
29 typedef CharT char_type;
32 duration_units_default<CharT>(refs) in duration_units_fr()
37 using duration_units_default<CharT>::do_get_unit;
43 std::basic_string<CharT> do_get_unit(duration_style style, ratio<1> , std::size_t pf) const in do_get_unit()
45 static const CharT t[] = in do_get_unit()
47 static const std::basic_string<CharT> symbol(t, t + sizeof (t) / sizeof (t[0])); in do_get_unit()
48 static const CharT u[] = in do_get_unit()
50 static const std::basic_string<CharT> singular(u, u + sizeof (u) / sizeof (u[0])); in do_get_unit()
[all …]
/third_party/boost/boost/beast/core/detail/
Dostream.hpp38 class CharT, class Traits, bool isMovable>
43 template<class DynamicBuffer, class CharT, class Traits>
45 <DynamicBuffer, CharT, Traits, true> final
46 : public std::basic_streambuf<CharT, Traits>
49 std::basic_streambuf<CharT, Traits>::int_type;
52 std::basic_streambuf<CharT, Traits>::traits_type;
89 auto const p = static_cast<CharT*>(b.data()); in overflow()
90 this->setp(p, p + b.size() / sizeof(CharT)); in overflow()
102 sizeof(CharT)); in sync()
114 template<class DynamicBuffer, class CharT, class Traits>
[all …]
/third_party/boost/libs/log/src/windows/
Devent_log_backend.cpp192 template< typename CharT >
193 std::basic_string< CharT > get_current_module_name()
203 CharT buf[MAX_PATH];
211 return std::basic_string< CharT >(buf, buf + size);
220 template< typename CharT >
221 struct basic_simple_event_log_backend< CharT >::implementation
234 template< typename CharT >
235 BOOST_LOG_API basic_simple_event_log_backend< CharT >::basic_simple_event_log_backend() in basic_simple_event_log_backend()
241 template< typename CharT >
242 BOOST_LOG_API basic_simple_event_log_backend< CharT >::~basic_simple_event_log_backend() in ~basic_simple_event_log_backend()
[all …]
/third_party/boost/boost/lexical_cast/detail/
Dinf_nan.hpp42 template <class CharT>
43 …bool lc_iequal(const CharT* val, const CharT* lcase, const CharT* ucase, unsigned int len) BOOST_N… in lc_iequal()
52 template <class CharT, class T>
53 inline bool parse_inf_nan_impl(const CharT* begin, const CharT* end, T& value in parse_inf_nan_impl()
54 , const CharT* lc_NAN, const CharT* lc_nan in parse_inf_nan_impl()
55 , const CharT* lc_INFINITY, const CharT* lc_infinity in parse_inf_nan_impl()
56 , const CharT opening_brace, const CharT closing_brace) BOOST_NOEXCEPT in parse_inf_nan_impl()
60 const CharT minus = lcast_char_constants<CharT>::minus; in parse_inf_nan_impl()
61 const CharT plus = lcast_char_constants<CharT>::plus; in parse_inf_nan_impl()
104 template <class CharT, class T>
[all …]
/third_party/boost/boost/log/utility/setup/
Dformatter_parser.hpp45 template< typename CharT >
49 typedef CharT char_type;
86 template< typename CharT, typename AttributeValueT >
88 public formatter_factory< CharT >
91 typedef formatter_factory< CharT > base_type;
123 template< typename CharT >
125 attribute_name const& attr_name, shared_ptr< formatter_factory< CharT > > const& factory);
159 template< typename AttributeValueT, typename CharT >
162 shared_ptr< formatter_factory< CharT > > factory = in register_simple_formatter_factory()
163 boost::make_shared< basic_formatter_factory< CharT, AttributeValueT > >(); in register_simple_formatter_factory()
[all …]
Dconsole.hpp56 template< typename CharT, typename ArgsT >
59 sinks::basic_text_ostream_backend< CharT >
61 > add_console_log(std::basic_ostream< CharT >& strm, ArgsT const& args) in add_console_log()
63 shared_ptr< std::basic_ostream< CharT > > pStream(&strm, boost::null_deleter()); in add_console_log()
65 typedef sinks::basic_text_ostream_backend< CharT > backend_t; in add_console_log()
84 template< typename CharT >
107 template< typename CharT >
110 sinks::basic_text_ostream_backend< CharT >
115 aux::default_console_stream< CharT >::get(), log::aux::empty_arg_list()); in add_console_log()
119 template< typename CharT >
[all …]
/third_party/boost/boost/date_time/gregorian/
Dgregorian_io.hpp46 template <class CharT, class TraitsT>
47 inline std::basic_ostream<CharT, TraitsT>&
48 operator<<(std::basic_ostream<CharT, TraitsT>& os, const boost::gregorian::date& d) { in operator <<() argument
50 typedef boost::date_time::date_facet<date, CharT> custom_date_facet; in operator <<()
51 std::ostreambuf_iterator<CharT> output_itr(os); in operator <<()
71 template <class CharT, class Traits>
73 std::basic_istream<CharT, Traits>&
74 operator>>(std::basic_istream<CharT, Traits>& is, date& d) in operator >>() argument
77 typename std::basic_istream<CharT, Traits>::sentry strm_sentry(is, false); in operator >>()
80 typedef typename date_time::date_input_facet<date, CharT> date_input_facet_local; in operator >>()
[all …]

12345678910>>...15