Home
last modified time | relevance | path

Searched refs:Ch (Results 1 – 25 of 432) sorted by relevance

12345678910>>...18

/third_party/boost/libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/contrib/rapidxml-1.13/
Drapidxml_print.hpp36 template<class OutIt, class Ch>
37 inline OutIt copy_chars(const Ch *begin, const Ch *end, OutIt out) in copy_chars()
46 template<class OutIt, class Ch>
47 inline OutIt copy_and_expand_chars(const Ch *begin, const Ch *end, Ch noexpand, OutIt out) in copy_and_expand_chars()
59 case Ch('<'): in copy_and_expand_chars()
60 *out++ = Ch('&'); *out++ = Ch('l'); *out++ = Ch('t'); *out++ = Ch(';'); in copy_and_expand_chars()
62 case Ch('>'): in copy_and_expand_chars()
63 *out++ = Ch('&'); *out++ = Ch('g'); *out++ = Ch('t'); *out++ = Ch(';'); in copy_and_expand_chars()
65 case Ch('\''): in copy_and_expand_chars()
66 …*out++ = Ch('&'); *out++ = Ch('a'); *out++ = Ch('p'); *out++ = Ch('o'); *out++ = Ch('s'); *out++ =… in copy_and_expand_chars()
[all …]
Drapidxml.hpp93 template<class Ch>
94 Ch *where() const in where()
96 return reinterpret_cast<Ch *>(m_where); in where()
137 template<class Ch> class xml_node;
138 template<class Ch> class xml_attribute;
139 template<class Ch> class xml_document;
309 template<class Ch>
310 inline std::size_t measure(const Ch *p) in measure()
312 const Ch *tmp = p; in measure()
319 template<class Ch>
[all …]
Drapidxml_iterators.hpp15 template<class Ch>
21 typedef typename xml_node<Ch> value_type;
22 typedef typename xml_node<Ch> &reference;
23 typedef typename xml_node<Ch> *pointer;
32 node_iterator(xml_node<Ch> *node) in node_iterator()
77 bool operator ==(const node_iterator<Ch> &rhs) in operator ==()
82 bool operator !=(const node_iterator<Ch> &rhs) in operator !=()
89 xml_node<Ch> *m_node;
94 template<class Ch>
100 typedef typename xml_attribute<Ch> value_type;
[all …]
Drapidxml_utils.hpp20 template<class Ch = char>
33 basic_ifstream<Ch> stream(filename, ios::binary); in file()
51 file(std::basic_istream<Ch> &stream) in file()
57 m_data.assign(istreambuf_iterator<Ch>(stream), istreambuf_iterator<Ch>()); in file()
65 Ch *data() in data()
72 const Ch *data() const in data()
86 std::vector<Ch> m_data; // File data
92 template<class Ch>
93 inline std::size_t count_children(xml_node<Ch> *node) in count_children()
95 xml_node<Ch> *child = node->first_node(); in count_children()
[all …]
/third_party/boost/boost/property_tree/detail/
Dinfo_parser_write.hpp19 template<class Ch>
20 void write_info_indent(std::basic_ostream<Ch> &stream, in write_info_indent()
22 const info_writer_settings<Ch> &settings in write_info_indent()
25 stream << std::basic_string<Ch>(indent * settings.indent_count, settings.indent_char); in write_info_indent()
29 template<class Ch>
30 std::basic_string<Ch> create_escapes(const std::basic_string<Ch> &s) in create_escapes()
32 std::basic_string<Ch> result; in create_escapes()
33 typename std::basic_string<Ch>::const_iterator b = s.begin(); in create_escapes()
34 typename std::basic_string<Ch>::const_iterator e = s.end(); in create_escapes()
37 if (*b == Ch('\0')) result += Ch('\\'), result += Ch('0'); in create_escapes()
[all …]
Dinfo_parser_read.hpp30 typedef typename std::iterator_traits<It>::value_type Ch; in expand_escapes() typedef
31 std::basic_string<Ch> result; in expand_escapes()
34 if (*b == Ch('\\')) in expand_escapes()
42 else if (*b == Ch('0')) result += Ch('\0'); in expand_escapes()
43 else if (*b == Ch('a')) result += Ch('\a'); in expand_escapes()
44 else if (*b == Ch('b')) result += Ch('\b'); in expand_escapes()
45 else if (*b == Ch('f')) result += Ch('\f'); in expand_escapes()
46 else if (*b == Ch('n')) result += Ch('\n'); in expand_escapes()
47 else if (*b == Ch('r')) result += Ch('\r'); in expand_escapes()
48 else if (*b == Ch('t')) result += Ch('\t'); in expand_escapes()
[all …]
Drapidxml.hpp69 template<class Ch>
70 Ch *where() const in where()
72 return reinterpret_cast<Ch *>(m_where); in where()
111 template<class Ch> class xml_node;
112 template<class Ch> class xml_attribute;
113 template<class Ch> class xml_document;
283 template<class Ch>
284 inline std::size_t measure(const Ch *p) in measure()
286 const Ch *tmp = p; in measure()
293 template<class Ch>
[all …]
Dxml_parser_write.hpp39 typedef typename Str::value_type Ch; in write_xml_comment() typedef
42 stream << Ch('<') << Ch('!') << Ch('-') << Ch('-'); in write_xml_comment()
44 stream << Ch('-') << Ch('-') << Ch('>'); in write_xml_comment()
46 stream << Ch('\n'); in write_xml_comment()
57 typedef typename Str::value_type Ch; in write_xml_text() typedef
62 stream << Ch('\n'); in write_xml_text()
72 typedef typename Ptree::key_type::value_type Ch; in write_xml_element() typedef
99 stream << Ch('<') << key << in write_xml_element()
100 Ch('/') << Ch('>'); in write_xml_element()
102 stream << Ch('\n'); in write_xml_element()
[all …]
Dxml_parser_utils.hpp26 typedef typename Str::value_type Ch; in condense() typedef
34 if (isspace(*it, loc) || *it == Ch('\n')) in condense()
37 r += Ch(' '), space = true; in condense()
52 typedef typename Str::value_type Ch; in encode_char_entities() typedef
57 Str sp(1, Ch(' ')); in encode_char_entities()
61 r += Str(s.size() - 1, Ch(' ')); in encode_char_entities()
68 case Ch('<'): r += detail::widen<Str>("&lt;"); break; in encode_char_entities()
69 case Ch('>'): r += detail::widen<Str>("&gt;"); break; in encode_char_entities()
70 case Ch('&'): r += detail::widen<Str>("&amp;"); break; in encode_char_entities()
71 case Ch('"'): r += detail::widen<Str>("&quot;"); break; in encode_char_entities()
[all …]
/third_party/boost/boost/property_tree/json_parser/detail/
Dwrite.hpp24 template<class Ch>
25 std::basic_string<Ch> create_escapes(const std::basic_string<Ch> &s) in create_escapes()
27 std::basic_string<Ch> result; in create_escapes()
28 typename std::basic_string<Ch>::const_iterator b = s.begin(); in create_escapes()
29 typename std::basic_string<Ch>::const_iterator e = s.end(); in create_escapes()
32 typedef typename make_unsigned<Ch>::type UCh; in create_escapes()
40 else if (*b == Ch('\b')) result += Ch('\\'), result += Ch('b'); in create_escapes()
41 else if (*b == Ch('\f')) result += Ch('\\'), result += Ch('f'); in create_escapes()
42 else if (*b == Ch('\n')) result += Ch('\\'), result += Ch('n'); in create_escapes()
43 else if (*b == Ch('\r')) result += Ch('\\'), result += Ch('r'); in create_escapes()
[all …]
/third_party/boost/boost/iostreams/detail/
Dresolve.hpp47 template<typename Mode, typename Ch, typename T>
52 output_iterator_adapter<Mode, Ch, T>,
59 template<typename Mode, typename Ch, typename T>
60 typename resolve_traits<Mode, Ch, T>::type
75 typedef typename resolve_traits<Mode, Ch, T>::type return_type; in resolve()
79 template<typename Mode, typename Ch, typename Tr>
80 mode_adapter< Mode, std::basic_streambuf<Ch, Tr> >
81 resolve(std::basic_streambuf<Ch, Tr>& sb) in resolve() argument
82 { return mode_adapter< Mode, std::basic_streambuf<Ch, Tr> >(wrap(sb)); } in resolve()
84 template<typename Mode, typename Ch, typename Tr>
[all …]
Dbuffer.hpp37 template< typename Ch,
38 typename Alloc = std::allocator<Ch> >
43 typedef typename Alloc::template rebind<Ch>::other allocator_type;
45 typedef typename std::allocator_traits<Alloc>::template rebind_alloc<Ch> allocator_type;
49 typedef std::allocator<Ch> allocator_type;
51 static Ch* allocate(std::streamsize buffer_size);
57 Ch* begin() const { return buf_; } in begin()
58 Ch* end() const { return buf_ + size_; } in end()
59 Ch* data() const { return buf_; } in data()
66 Ch* buf_;
[all …]
/third_party/boost/boost/format/
Dfeed_args.hpp29 template<class Ch, class Tr, class Alloc>
30 void mk_str( std::basic_string<Ch,Tr, Alloc> & res, in mk_str() argument
31 const Ch * beg, in mk_str()
32 typename std::basic_string<Ch,Tr,Alloc>::size_type size, in mk_str() argument
34 const Ch fill_char, in mk_str()
36 const Ch prefix_space, // 0 if no space-padding in mk_str()
41 typedef typename std::basic_string<Ch,Tr,Alloc>::size_type size_type; in mk_str()
77 template< class Ch, class Tr, class T> inline
78 void put_head (BOOST_IO_STD basic_ostream<Ch, Tr> & os, const T& x ) { in put_head() argument
79 disambiguater<Ch, Tr, T>::put_head(os, x, 1L); in put_head()
[all …]
Dformat_implementation.hpp27 template< class Ch, class Tr, class Alloc>
28 basic_format<Ch, Tr, Alloc>:: basic_format(const Ch* s) in basic_format()
37 template< class Ch, class Tr, class Alloc>
38 basic_format<Ch, Tr, Alloc>:: basic_format(const Ch* s, const std::locale & loc) in basic_format()
45 template< class Ch, class Tr, class Alloc>
46 basic_format<Ch, Tr, Alloc>:: basic_format(const string_type& s, const std::locale & loc) in basic_format()
53 template< class Ch, class Tr, class Alloc>
54 io::detail::locale_t basic_format<Ch, Tr, Alloc>::
59 template< class Ch, class Tr, class Alloc>
60 basic_format<Ch, Tr, Alloc>:: basic_format(const string_type& s) in basic_format()
[all …]
Dinternals_fwd.hpp24 template<class Ch, class Tr> struct stream_format_state;
25 template<class Ch, class Tr, class Alloc> struct format_item;
31 template<class Ch, class Tr, class Alloc, class T>
32 basic_format<Ch, Tr, Alloc>&
33 modify_item_body (basic_format<Ch, Tr, Alloc>& self,
36 template<class Ch, class Tr, class Alloc, class T>
37 basic_format<Ch, Tr, Alloc>&
38 bind_arg_body (basic_format<Ch, Tr, Alloc>& self,
42 template<class Ch, class Tr, class T>
43 void apply_manip_body (stream_format_state<Ch, Tr>& self,
[all …]
Dinternals.hpp34 template<class Ch, class Tr>
37 typedef BOOST_IO_STD basic_ios<Ch, Tr> basic_ios;
39 stream_format_state(Ch fill) { reset(fill); } in stream_format_state()
42 void reset(Ch fill); //- sets to default state.
48 { apply_manip_body<Ch, Tr, T>( *this, manipulator) ; } in apply_manip()
53 Ch fill_;
64 template<class Ch, class Tr, class Alloc>
75 typedef BOOST_IO_STD basic_ios<Ch, Tr> basic_ios;
76 typedef detail::stream_format_state<Ch, Tr> stream_format_state;
77 typedef ::std::basic_string<Ch, Tr, Alloc> string_type;
[all …]
Dalt_sstream_impl.hpp20 template<class Ch, class Tr, class Alloc>
21 void basic_altstringbuf<Ch, Tr, Alloc>::
23 const Ch * p = pptr(); in clear_buffer()
24 const Ch * b = pbase(); in clear_buffer()
35 template<class Ch, class Tr, class Alloc>
36 void basic_altstringbuf<Ch, Tr, Alloc>::
42 Ch *new_ptr = static_cast<Ch *>(vd_ptr); in str()
44 Ch *new_ptr = boost::allocator_allocate(alloc_, sz, is_allocated_? eback() : 0); in str()
64 template<class Ch, class Tr, class Alloc>
65 Ch* basic_altstringbuf<Ch, Tr, Alloc>::
[all …]
/third_party/boost/boost/iostreams/device/
Dfile.hpp31 template<typename Ch>
34 typedef Ch char_type;
68 BOOST_IOSTREAMS_BASIC_FILEBUF(Ch) file_;
76 template<typename Ch>
77 struct basic_file_source : private basic_file<Ch> {
78 typedef Ch char_type;
84 using basic_file<Ch>::read;
85 using basic_file<Ch>::putback;
86 using basic_file<Ch>::seek;
87 using basic_file<Ch>::is_open;
[all …]
Dnull.hpp23 template<typename Ch, typename Mode>
26 typedef Ch char_type;
32 std::streamsize read(Ch*, std::streamsize) { return -1; } in read() argument
33 std::streamsize write(const Ch*, std::streamsize n) { return n; } in write() argument
42 template<typename Ch>
43 struct basic_null_source : private basic_null_device<Ch, input> {
44 typedef Ch char_type;
46 using basic_null_device<Ch, input>::read;
47 using basic_null_device<Ch, input>::close;
53 template<typename Ch>
[all …]
Darray.hpp29 template<typename Mode, typename Ch>
32 typedef Ch char_type;
57 template<typename Ch> \
58 struct BOOST_PP_CAT(basic_, name) : detail::array_adapter<mode, Ch> { \
60 typedef detail::array_adapter<mode, Ch> base_type; \
73 BOOST_PP_CAT(basic_, name)(Ch (&ar)[N]) \
89 template<typename Mode, typename Ch>
90 array_adapter<Mode, Ch>::array_adapter in array_adapter()
95 template<typename Mode, typename Ch>
96 array_adapter<Mode, Ch>::array_adapter in array_adapter()
[all …]
/third_party/boost/boost/property_tree/
Dstream_translator.hpp29 template <typename Ch, typename Traits, typename E, typename Enabler = void>
32 static void insert(std::basic_ostream<Ch, Traits>& s, const E& e) { in insert()
35 static void extract(std::basic_istream<Ch, Traits>& s, E& e) { in extract()
44 template <typename Ch, typename Traits>
45 struct customize_stream<Ch, Traits, Ch, void>
47 static void insert(std::basic_ostream<Ch, Traits>& s, Ch e) { in insert()
50 static void extract(std::basic_istream<Ch, Traits>& s, Ch& e) { in extract()
91 template <typename Ch, typename Traits, typename F>
92 struct customize_stream<Ch, Traits, F,
96 static void insert(std::basic_ostream<Ch, Traits>& s, const F& e) { in insert()
[all …]
/third_party/skia/third_party/externals/icu/source/data/lang/
Dvi.txt172 es_ES{"Tiếng Tây Ban Nha (Châu Âu)"}
360 mnc{"Tiếng Mãn Châu"}
432 pt_PT{"Tiếng Bồ Đào Nha (Châu Âu)"}
598 Afak{"Chữ Afaka"}
599 Arab{"Chữ Ả Rập"}
600 Aran{"Chữ Nastaliq"}
601 Armi{"Chữ Imperial Aramaic"}
602 Armn{"Chữ Armenia"}
603 Avst{"Chữ Avestan"}
604 Bali{"Chữ Bali"}
[all …]
/third_party/icu/icu4c/source/data/lang/
Dvi.txt172 es_ES{"Tiếng Tây Ban Nha (Châu Âu)"}
360 mnc{"Tiếng Mãn Châu"}
432 pt_PT{"Tiếng Bồ Đào Nha (Châu Âu)"}
598 Afak{"Chữ Afaka"}
599 Arab{"Chữ Ả Rập"}
600 Aran{"Chữ Nastaliq"}
601 Armi{"Chữ Imperial Aramaic"}
602 Armn{"Chữ Armenia"}
603 Avst{"Chữ Avestan"}
604 Bali{"Chữ Bali"}
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/lang/
Dvi.txt170 es_ES{"Tiếng Tây Ban Nha (Châu Âu)"}
357 mnc{"Tiếng Mãn Châu"}
429 pt_PT{"Tiếng Bồ Đào Nha (Châu Âu)"}
587 Afak{"Chữ Afaka"}
588 Arab{"Chữ Ả Rập"}
589 Armi{"Chữ Imperial Aramaic"}
590 Armn{"Chữ Armenia"}
591 Avst{"Chữ Avestan"}
592 Bali{"Chữ Bali"}
593 Bamu{"Chữ Bamum"}
[all …]
/third_party/boost/boost/
Dio_fwd.hpp20 template<class Ch, class Tr = std::char_traits<Ch> >
23 template<class Ch, class Tr = std::char_traits<Ch> >
26 template<class Ch, class Tr = std::char_traits<Ch> >
29 template<class Ch, class Tr = std::char_traits<Ch> >
32 template<class Ch, class Tr = std::char_traits<Ch> >
35 template<class Ch, class Tr = std::char_traits<Ch> >
38 template<class Ch, class Tr = std::char_traits<Ch> >

12345678910>>...18