HomeSort by relevance Sort by last modified time
    Searched refs:__c (Results 26 - 50 of 592) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 65 string_type get(catalog __c, int __set, int __msgid,
67 { return do_get(__c, __set, __msgid, __dfault); }
68 inline void close(catalog __c) const
69 { do_close(__c); }
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
81 virtual void do_close(catalog __c) const
98 inline string_type get(catalog __c, int __set, int __msgid,
100 { return do_get(__c, __set, __msgid, __dfault); }
101 inline void close(catalog __c) const
102 { do_close(__c); }
    [all...]
_ios.h 110 static bool _STLP_CALL _S_eof(int_type __c) {
112 return _Traits::eq_int_type(__c, __eof);
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const
146 { return _M_ctype_facet()->narrow(__c, __default); }
150 basic_ios<_CharT, _Traits>::widen(char __c) const
151 { return _M_ctype_facet()->widen(__c); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const
158 return __c;
163 basic_ios<char, char_traits<char> >::widen(char __c) const
165 return __c;
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 65 string_type get(catalog __c, int __set, int __msgid,
67 { return do_get(__c, __set, __msgid, __dfault); }
68 inline void close(catalog __c) const
69 { do_close(__c); }
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
81 virtual void do_close(catalog __c) const
98 inline string_type get(catalog __c, int __set, int __msgid,
100 { return do_get(__c, __set, __msgid, __dfault); }
101 inline void close(catalog __c) const
102 { do_close(__c); }
    [all...]
_ios.h 110 static bool _STLP_CALL _S_eof(int_type __c) {
112 return _Traits::eq_int_type(__c, __eof);
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const
146 { return _M_ctype_facet()->narrow(__c, __default); }
150 basic_ios<_CharT, _Traits>::widen(char __c) const
151 { return _M_ctype_facet()->widen(__c); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const
158 return __c;
163 basic_ios<char, char_traits<char> >::widen(char __c) const
165 return __c;
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 65 string_type get(catalog __c, int __set, int __msgid,
67 { return do_get(__c, __set, __msgid, __dfault); }
68 inline void close(catalog __c) const
69 { do_close(__c); }
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
81 virtual void do_close(catalog __c) const
98 inline string_type get(catalog __c, int __set, int __msgid,
100 { return do_get(__c, __set, __msgid, __dfault); }
101 inline void close(catalog __c) const
102 { do_close(__c); }
    [all...]
_ios.h 110 static bool _STLP_CALL _S_eof(int_type __c) {
112 return _Traits::eq_int_type(__c, __eof);
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const
146 { return _M_ctype_facet()->narrow(__c, __default); }
150 basic_ios<_CharT, _Traits>::widen(char __c) const
151 { return _M_ctype_facet()->widen(__c); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const
158 return __c;
163 basic_ios<char, char_traits<char> >::widen(char __c) const
165 return __c;
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 65 string_type get(catalog __c, int __set, int __msgid,
67 { return do_get(__c, __set, __msgid, __dfault); }
68 inline void close(catalog __c) const
69 { do_close(__c); }
78 virtual string_type do_get(catalog __c, int __set, int __msgid,
81 virtual void do_close(catalog __c) const
98 inline string_type get(catalog __c, int __set, int __msgid,
100 { return do_get(__c, __set, __msgid, __dfault); }
101 inline void close(catalog __c) const
102 { do_close(__c); }
    [all...]
_ios.h 110 static bool _STLP_CALL _S_eof(int_type __c) {
112 return _Traits::eq_int_type(__c, __eof);
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const
146 { return _M_ctype_facet()->narrow(__c, __default); }
150 basic_ios<_CharT, _Traits>::widen(char __c) const
151 { return _M_ctype_facet()->widen(__c); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const
158 return __c;
163 basic_ios<char, char_traits<char> >::widen(char __c) const
165 return __c;
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/libs/mips/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
ctype_noninline.h 64 ctype<char>::do_toupper(char __c) const
66 int __x = __c;
67 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
82 ctype<char>::do_tolower(char __c) const
84 int __x = __c;
85 return (this->is(ctype_base::upper, __c) ? (__x - 'A' + 'a') : __x);
  /external/stlport/stlport/stl/
_ios.h 110 static bool _STLP_CALL _S_eof(int_type __c) {
112 return _Traits::eq_int_type(__c, __eof);
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const
146 { return _M_ctype_facet()->narrow(__c, __default); }
150 basic_ios<_CharT, _Traits>::widen(char __c) const
151 { return _M_ctype_facet()->widen(__c); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const
158 return __c;
163 basic_ios<char, char_traits<char> >::widen(char __c) const
165 return __c;
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ios.h 110 static bool _STLP_CALL _S_eof(int_type __c) {
112 return _Traits::eq_int_type(__c, __eof);
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const
146 { return _M_ctype_facet()->narrow(__c, __default); }
150 basic_ios<_CharT, _Traits>::widen(char __c) const
151 { return _M_ctype_facet()->widen(__c); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const
158 return __c;
163 basic_ios<char, char_traits<char> >::widen(char __c) const
165 return __c;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
stdio_sync_filebuf.h 86 syncungetc(int_type __c);
89 syncputc(int_type __c);
94 int_type __c = this->syncgetc(); local
95 return this->syncungetc(__c);
107 pbackfail(int_type __c = traits_type::eof())
113 if (traits_type::eq_int_type(__c, __eof)) // unget
121 __ret = this->syncungetc(__c);
132 overflow(int_type __c = traits_type::eof())
135 if (traits_type::eq_int_type(__c, traits_type::eof()))
140 __ret = traits_type::not_eof(__c);
239 int_type __c = this->syncgetc(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
stdio_sync_filebuf.h 96 syncungetc(int_type __c);
99 syncputc(int_type __c);
104 int_type __c = this->syncgetc(); local
105 return this->syncungetc(__c);
117 pbackfail(int_type __c = traits_type::eof())
123 if (traits_type::eq_int_type(__c, __eof)) // unget
131 __ret = this->syncungetc(__c);
142 overflow(int_type __c = traits_type::eof())
145 if (traits_type::eq_int_type(__c, traits_type::eof()))
150 __ret = traits_type::not_eof(__c);
249 int_type __c = this->syncgetc(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
stdio_sync_filebuf.h 96 syncungetc(int_type __c);
99 syncputc(int_type __c);
104 int_type __c = this->syncgetc(); local
105 return this->syncungetc(__c);
117 pbackfail(int_type __c = traits_type::eof())
123 if (traits_type::eq_int_type(__c, __eof)) // unget
131 __ret = this->syncungetc(__c);
142 overflow(int_type __c = traits_type::eof())
145 if (traits_type::eq_int_type(__c, traits_type::eof()))
150 __ret = traits_type::not_eof(__c);
249 int_type __c = this->syncgetc(); local
    [all...]

Completed in 2263 milliseconds

12 3 4 5 6 7 8 91011>>