HomeSort by relevance Sort by last modified time
    Searched full:char_type (Results 1 - 25 of 245) sorted by null

1 2 3 4 5 6 7 8 910

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
char_traits.h 92 typedef _CharT char_type; typedef in struct:char_traits
99 assign(char_type& __c1, const char_type& __c2)
103 eq(const char_type& __c1, const char_type& __c2)
107 lt(const char_type& __c1, const char_type& __c2)
111 compare(const char_type* __s1, const char_type* __s2, std::size_t __n);
114 length(const char_type* __s)
239 typedef char char_type; typedef in struct:char_traits
310 typedef wchar_t char_type; typedef in struct:char_traits
386 typedef char16_t char_type; typedef in struct:char_traits
479 typedef char32_t char_type; typedef in struct:char_traits
    [all...]
locale_facets.h 149 typedef _CharT char_type; typedef in class:__ctype_abstract_base
152 * @brief Test char_type classification.
155 * It does so by returning the value of ctype<char_type>::do_is().
157 * @param c The char_type to compare the mask of.
162 is(mask __m, char_type __c) const
168 * This function finds the mask for each char_type in the range [lo,hi)
171 * ctype<char_type>::do_is().
178 const char_type*
179 is(const char_type *__lo, const char_type *__hi, mask *__vec) cons
609 typedef _CharT char_type; typedef in class:ctype
679 typedef char char_type; typedef in class:ctype
1180 typedef wchar_t char_type; typedef in class:ctype
1642 typedef _CharT char_type; typedef in class:numpunct
1871 typedef _CharT char_type; typedef in class:numpunct_byname
1914 typedef _CharT char_type; typedef in class:num_get
2251 typedef _CharT char_type; typedef in class:num_put
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
char_traits.h 92 typedef _CharT char_type; typedef in struct:char_traits
99 assign(char_type& __c1, const char_type& __c2)
103 eq(const char_type& __c1, const char_type& __c2)
107 lt(const char_type& __c1, const char_type& __c2)
111 compare(const char_type* __s1, const char_type* __s2, std::size_t __n);
114 length(const char_type* __s)
239 typedef char char_type; typedef in struct:char_traits
310 typedef wchar_t char_type; typedef in struct:char_traits
386 typedef char16_t char_type; typedef in struct:char_traits
479 typedef char32_t char_type; typedef in struct:char_traits
    [all...]
locale_facets.h 149 typedef _CharT char_type; typedef in class:__ctype_abstract_base
152 * @brief Test char_type classification.
155 * It does so by returning the value of ctype<char_type>::do_is().
157 * @param c The char_type to compare the mask of.
162 is(mask __m, char_type __c) const
168 * This function finds the mask for each char_type in the range [lo,hi)
171 * ctype<char_type>::do_is().
178 const char_type*
179 is(const char_type *__lo, const char_type *__hi, mask *__vec) cons
609 typedef _CharT char_type; typedef in class:ctype
679 typedef char char_type; typedef in class:ctype
1180 typedef wchar_t char_type; typedef in class:ctype
1642 typedef _CharT char_type; typedef in class:numpunct
1871 typedef _CharT char_type; typedef in class:numpunct_byname
1914 typedef _CharT char_type; typedef in class:num_get
2251 typedef _CharT char_type; typedef in class:num_put
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
char_traits.h 92 typedef _CharT char_type; typedef in struct:char_traits
99 assign(char_type& __c1, const char_type& __c2)
103 eq(const char_type& __c1, const char_type& __c2)
107 lt(const char_type& __c1, const char_type& __c2)
111 compare(const char_type* __s1, const char_type* __s2, std::size_t __n);
114 length(const char_type* __s)
239 typedef char char_type; typedef in struct:char_traits
310 typedef wchar_t char_type; typedef in struct:char_traits
386 typedef char16_t char_type; typedef in struct:char_traits
479 typedef char32_t char_type; typedef in struct:char_traits
    [all...]
locale_facets.h 149 typedef _CharT char_type; typedef in class:__ctype_abstract_base
152 * @brief Test char_type classification.
155 * It does so by returning the value of ctype<char_type>::do_is().
157 * @param c The char_type to compare the mask of.
162 is(mask __m, char_type __c) const
168 * This function finds the mask for each char_type in the range [lo,hi)
171 * ctype<char_type>::do_is().
178 const char_type*
179 is(const char_type *__lo, const char_type *__hi, mask *__vec) cons
609 typedef _CharT char_type; typedef in class:ctype
679 typedef char char_type; typedef in class:ctype
1180 typedef wchar_t char_type; typedef in class:ctype
1642 typedef _CharT char_type; typedef in class:numpunct
1871 typedef _CharT char_type; typedef in class:numpunct_byname
1914 typedef _CharT char_type; typedef in class:num_get
2251 typedef _CharT char_type; typedef in class:num_put
    [all...]
  /external/stlport/stlport/stl/
_ctraits_fns.h 34 : public binary_function<typename _Traits::char_type,
35 typename _Traits::char_type,
37 bool operator()(const typename _Traits::char_type& __x,
38 const typename _Traits::char_type& __y) const
44 : public unary_function<typename _Traits::char_type, bool> {
45 typename _Traits::char_type __val;
46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
47 bool operator()(const typename _Traits::char_type& __x) const
53 : public unary_function<typename _Traits::char_type, bool>
55 typename _Traits::char_type __val
    [all...]
char_traits.h 134 typedef _CharT char_type; typedef in class:__char_traits_base
140 static void _STLP_CALL assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; }
141 static bool _STLP_CALL eq(const char_type& __c1, const char_type& __c2)
143 static bool _STLP_CALL lt(const char_type& __c1, const char_type& __c2)
146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) {
153 static size_t _STLP_CALL length(const char_type* __s)
213 typedef char char_type; typedef in class:char_traits
    [all...]
_streambuf.h 53 typedef _CharT char_type; typedef in class:basic_streambuf
61 char_type* _M_gbegin; // Beginning of get area
62 char_type* _M_gnext; // Current position within the get area
63 char_type* _M_gend; // End of get area
65 char_type* _M_pbegin; // Beginning of put area
66 char_type* _M_pnext; // Current position within the put area
67 char_type* _M_pend; // End of put area
87 char_type* eback() const { return _M_gbegin; } // Beginning
88 char_type* gptr() const { return _M_gnext; } // Current position
89 char_type* egptr() const { return _M_gend; } // En
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ctraits_fns.h 34 : public binary_function<typename _Traits::char_type,
35 typename _Traits::char_type,
37 bool operator()(const typename _Traits::char_type& __x,
38 const typename _Traits::char_type& __y) const
44 : public unary_function<typename _Traits::char_type, bool> {
45 typename _Traits::char_type __val;
46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
47 bool operator()(const typename _Traits::char_type& __x) const
53 : public unary_function<typename _Traits::char_type, bool>
55 typename _Traits::char_type __val
    [all...]
char_traits.h 134 typedef _CharT char_type; typedef in class:__char_traits_base
140 static void _STLP_CALL assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; }
141 static bool _STLP_CALL eq(const char_type& __c1, const char_type& __c2)
143 static bool _STLP_CALL lt(const char_type& __c1, const char_type& __c2)
146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) {
153 static size_t _STLP_CALL length(const char_type* __s)
213 typedef char char_type; typedef in class:char_traits
    [all...]
_streambuf.h 53 typedef _CharT char_type; typedef in class:basic_streambuf
61 char_type* _M_gbegin; // Beginning of get area
62 char_type* _M_gnext; // Current position within the get area
63 char_type* _M_gend; // End of get area
65 char_type* _M_pbegin; // Beginning of put area
66 char_type* _M_pnext; // Current position within the put area
67 char_type* _M_pend; // End of put area
87 char_type* eback() const { return _M_gbegin; } // Beginning
88 char_type* gptr() const { return _M_gnext; } // Current position
89 char_type* egptr() const { return _M_gend; } // En
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_ctraits_fns.h 34 : public binary_function<typename _Traits::char_type,
35 typename _Traits::char_type,
37 bool operator()(const typename _Traits::char_type& __x,
38 const typename _Traits::char_type& __y) const
44 : public unary_function<typename _Traits::char_type, bool> {
45 typename _Traits::char_type __val;
46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
47 bool operator()(const typename _Traits::char_type& __x) const
53 : public unary_function<typename _Traits::char_type, bool>
55 typename _Traits::char_type __val
    [all...]
char_traits.h 134 typedef _CharT char_type; typedef in class:__char_traits_base
140 static void _STLP_CALL assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; }
141 static bool _STLP_CALL eq(const char_type& __c1, const char_type& __c2)
143 static bool _STLP_CALL lt(const char_type& __c1, const char_type& __c2)
146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) {
153 static size_t _STLP_CALL length(const char_type* __s)
213 typedef char char_type; typedef in class:char_traits
    [all...]
_streambuf.h 53 typedef _CharT char_type; typedef in class:basic_streambuf
61 char_type* _M_gbegin; // Beginning of get area
62 char_type* _M_gnext; // Current position within the get area
63 char_type* _M_gend; // End of get area
65 char_type* _M_pbegin; // Beginning of put area
66 char_type* _M_pnext; // Current position within the put area
67 char_type* _M_pend; // End of put area
87 char_type* eback() const { return _M_gbegin; } // Beginning
88 char_type* gptr() const { return _M_gnext; } // Current position
89 char_type* egptr() const { return _M_gend; } // En
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_ctraits_fns.h 34 : public binary_function<typename _Traits::char_type,
35 typename _Traits::char_type,
37 bool operator()(const typename _Traits::char_type& __x,
38 const typename _Traits::char_type& __y) const
44 : public unary_function<typename _Traits::char_type, bool> {
45 typename _Traits::char_type __val;
46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {}
47 bool operator()(const typename _Traits::char_type& __x) const
53 : public unary_function<typename _Traits::char_type, bool>
55 typename _Traits::char_type __val
    [all...]
char_traits.h 134 typedef _CharT char_type; typedef in class:__char_traits_base
140 static void _STLP_CALL assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; }
141 static bool _STLP_CALL eq(const char_type& __c1, const char_type& __c2)
143 static bool _STLP_CALL lt(const char_type& __c1, const char_type& __c2)
146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) {
153 static size_t _STLP_CALL length(const char_type* __s)
213 typedef char char_type; typedef in class:char_traits
    [all...]
_streambuf.h 53 typedef _CharT char_type; typedef in class:basic_streambuf
61 char_type* _M_gbegin; // Beginning of get area
62 char_type* _M_gnext; // Current position within the get area
63 char_type* _M_gend; // End of get area
65 char_type* _M_pbegin; // Beginning of put area
66 char_type* _M_pnext; // Current position within the put area
67 char_type* _M_pend; // End of put area
87 char_type* eback() const { return _M_gbegin; } // Beginning
88 char_type* gptr() const { return _M_gnext; } // Current position
89 char_type* egptr() const { return _M_gend; } // En
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
pod_char_traits.h 40 // NB: The char_type parameter is a subset of int_type, as to allow
41 // int_type to properly hold the full range of char_type values as
50 typedef character<V, I, S> char_type; typedef in struct:character
55 static char_type
58 char_type ret = { static_cast<value_type>(v) };
64 to(const char_type& c)
90 typedef __gnu_cxx::character<V, I, S> char_type; typedef in struct:char_traits
91 typedef typename char_type::int_type int_type;
92 typedef typename char_type::state_type state_type;
97 assign(char_type& __c1, const char_type& __c2
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
pod_char_traits.h 40 // NB: The char_type parameter is a subset of int_type, as to allow
41 // int_type to properly hold the full range of char_type values as
50 typedef character<V, I, S> char_type; typedef in struct:character
55 static char_type
58 char_type ret = { static_cast<value_type>(v) };
64 to(const char_type& c)
90 typedef __gnu_cxx::character<V, I, S> char_type; typedef in struct:char_traits
91 typedef typename char_type::int_type int_type;
92 typedef typename char_type::state_type state_type;
97 assign(char_type& __c1, const char_type& __c2
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
pod_char_traits.h 40 // NB: The char_type parameter is a subset of int_type, as to allow
41 // int_type to properly hold the full range of char_type values as
50 typedef character<V, I, S> char_type; typedef in struct:character
55 static char_type
58 char_type ret = { static_cast<value_type>(v) };
64 to(const char_type& c)
90 typedef __gnu_cxx::character<V, I, S> char_type; typedef in struct:char_traits
91 typedef typename char_type::int_type int_type;
92 typedef typename char_type::state_type state_type;
97 assign(char_type& __c1, const char_type& __c2
    [all...]
  /external/chromium/base/
string16.h 57 typedef char16 char_type; typedef in struct:base::string16_char_traits
60 // int_type needs to be able to hold each possible value of char_type, and in
62 COMPILE_ASSERT(sizeof(int_type) > sizeof(char_type), unexpected_type_width);
68 static void assign(char_type& c1, const char_type& c2) {
72 static bool eq(const char_type& c1, const char_type& c2) {
75 static bool lt(const char_type& c1, const char_type& c2) {
79 static int compare(const char_type* s1, const char_type* s2, size_t n)
    [all...]
  /external/chromium/googleurl/base/
string16.h 79 typedef char16 char_type; typedef in struct:base::string16_char_traits
86 static void assign(char_type& c1, const char_type& c2) {
90 static bool eq(const char_type& c1, const char_type& c2) {
93 static bool lt(const char_type& c1, const char_type& c2) {
97 static int compare(const char_type* s1, const char_type* s2, size_t n) {
101 static size_t length(const char_type* s)
    [all...]
  /external/astl/include/
ostream 50 typedef char char_type;
51 typedef char_traits<char_type>::int_type int_type;
52 typedef char_traits<char_type>::pos_type pos_type;
53 typedef char_traits<char_type>::off_type off_type;
86 ostream& operator<<(char_type c);
87 ostream& operator<<(const char_type *str);
94 ostream& write_formatted(const char_type *str, streamsize num);
97 ostream& put(char_type c);
98 ostream& write(const char_type *str, streamsize num);
streambuf 52 typedef traits_type::char_type char_type;
70 int_type sputc(char_type c) {
83 streamsize sputn(const char_type* str, streamsize num) {
98 char_type* pbase() const { return mPutBeg; }
99 char_type* pptr() const { return mPutCurr; }
100 char_type* epptr() const { return mPutEnd; }
110 void setp(char_type* beg, char_type* end) {
126 virtual streamsize xsputn(const char_type* str, streamsize num)
    [all...]

Completed in 1695 milliseconds

1 2 3 4 5 6 7 8 910