/external/astl/include/ |
char_traits.h | 54 typedef int int_type; typedef in struct:std::char_traits 82 static char to_char(const int_type& c) { return static_cast<char>(c); } 84 static int_type to_int_type(const char& c) 85 { return static_cast<int_type>(static_cast<unsigned char>(c)); } 87 static bool eq_int_type(const int_type& lhs, const int_type& rhs) 90 static int_type eof() { return static_cast<int_type>(EOF); } 92 static int_type not_eof(const int_type& c [all...] |
streambuf | 53 typedef traits_type::int_type int_type; 70 int_type sputc(char_type c) { 136 virtual int_type overflow(int_type /* c */ = traits_type::eof())
|
/external/stlport/src/ |
stdio_streambuf.h | 80 int_type underflow(); 81 int_type uflow(); 82 virtual int_type pbackfail(int_type c = traits_type::eof()); 92 int_type overflow(int_type c = traits_type::eof());
|
/ndk/sources/cxx-stl/stlport/src/ |
stdio_streambuf.h | 80 int_type underflow(); 81 int_type uflow(); 82 virtual int_type pbackfail(int_type c = traits_type::eof()); 92 int_type overflow(int_type c = traits_type::eof());
|
/external/stlport/test/unit/ |
full_streambuf.h | 15 typedef _Base::int_type int_type; typedef in class:full_streambuf 26 int_type overflow(int_type c) {
|
/ndk/tests/device/test-gnustl-full/unit/ |
full_streambuf.h | 15 typedef _Base::int_type int_type; typedef in class:full_streambuf 26 int_type overflow(int_type c) {
|
/ndk/tests/device/test-stlport/unit/ |
full_streambuf.h | 15 typedef _Base::int_type int_type; typedef in class:full_streambuf 26 int_type overflow(int_type c) {
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/ |
stdio_sync_filebuf.h | 53 typedef typename traits_type::int_type int_type; typedef in class:stdio_sync_filebuf 63 int_type _M_unget_buf; 82 int_type 85 int_type 86 syncungetc(int_type __c); 88 int_type 89 syncputc(int_type __c); 91 virtual int_type 94 int_type __c = this->syncgetc() [all...] |
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 48 typedef I int_type; typedef in struct:character 91 typedef typename char_type::int_type int_type; typedef in struct:char_traits 157 to_char_type(const int_type& __i) 160 static int_type 162 { return char_type::template to<int_type>(__c); } 165 eq_int_type(const int_type& __c1, const int_type& __c2 [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/ |
stdio_sync_filebuf.h | 53 typedef typename traits_type::int_type int_type; typedef in class:stdio_sync_filebuf 63 int_type _M_unget_buf; 82 int_type 85 int_type 86 syncungetc(int_type __c); 88 int_type 89 syncputc(int_type __c); 91 virtual int_type 94 int_type __c = this->syncgetc() [all...] |
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 48 typedef I int_type; typedef in struct:character 91 typedef typename char_type::int_type int_type; typedef in struct:char_traits 157 to_char_type(const int_type& __i) 160 static int_type 162 { return char_type::template to<int_type>(__c); } 165 eq_int_type(const int_type& __c1, const int_type& __c2 [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/ |
stdio_sync_filebuf.h | 53 typedef typename traits_type::int_type int_type; typedef in class:stdio_sync_filebuf 63 int_type _M_unget_buf; 82 int_type 85 int_type 86 syncungetc(int_type __c); 88 int_type 89 syncputc(int_type __c); 91 virtual int_type 94 int_type __c = this->syncgetc() [all...] |
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 48 typedef I int_type; typedef in struct:character 91 typedef typename char_type::int_type int_type; typedef in struct:char_traits 157 to_char_type(const int_type& __i) 160 static int_type 162 { return char_type::template to<int_type>(__c); } 165 eq_int_type(const int_type& __c1, const int_type& __c2 [all...] |
/external/chromium/base/ |
string16.h | 58 typedef int int_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); 92 static char_type* move(char_type* s1, const char_type* s2, int_type n) { 104 static int_type not_eof(const int_type& c) { 108 static char_type to_char_type(const int_type& c) { 112 static int_type to_int_type(const char_type& c) { 113 return int_type(c); 116 static bool eq_int_type(const int_type& c1, const int_type& c2) [all...] |
/external/chromium/googleurl/base/ |
string16.h | 80 typedef int int_type; typedef in struct:base::string16_char_traits 110 static char_type* move(char_type* s1, const char_type* s2, int_type n) { 122 static int_type not_eof(const int_type& c) { 126 static char_type to_char_type(const int_type& c) { 130 static int_type to_int_type(const char_type& c) { 131 return int_type(c); 134 static bool eq_int_type(const int_type& c1, const int_type& c2) { 138 static int_type eof() [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
char_traits.h | 58 * of char_traits. It defines int_type, off_type, pos_type, and 67 typedef unsigned long int_type; typedef in struct:_Char_types 79 * right, but the int_type and state_type typedefs, and the eof() 93 typedef typename _Char_types<_CharT>::int_type int_type; typedef in struct:char_traits 129 to_char_type(const int_type& __c) 132 static int_type 134 { return static_cast<int_type>(__c); } 137 eq_int_type(const int_type& __c1, const int_type& __c2 240 typedef int int_type; typedef in struct:char_traits 311 typedef wint_t int_type; typedef in struct:char_traits 387 typedef uint_least16_t int_type; typedef in struct:char_traits 480 typedef uint_least32_t int_type; typedef in struct:char_traits [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
char_traits.h | 58 * of char_traits. It defines int_type, off_type, pos_type, and 67 typedef unsigned long int_type; typedef in struct:_Char_types 79 * right, but the int_type and state_type typedefs, and the eof() 93 typedef typename _Char_types<_CharT>::int_type int_type; typedef in struct:char_traits 129 to_char_type(const int_type& __c) 132 static int_type 134 { return static_cast<int_type>(__c); } 137 eq_int_type(const int_type& __c1, const int_type& __c2 240 typedef int int_type; typedef in struct:char_traits 311 typedef wint_t int_type; typedef in struct:char_traits 387 typedef uint_least16_t int_type; typedef in struct:char_traits 480 typedef uint_least32_t int_type; typedef in struct:char_traits [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
char_traits.h | 58 * of char_traits. It defines int_type, off_type, pos_type, and 67 typedef unsigned long int_type; typedef in struct:_Char_types 79 * right, but the int_type and state_type typedefs, and the eof() 93 typedef typename _Char_types<_CharT>::int_type int_type; typedef in struct:char_traits 129 to_char_type(const int_type& __c) 132 static int_type 134 { return static_cast<int_type>(__c); } 137 eq_int_type(const int_type& __c1, const int_type& __c2 240 typedef int int_type; typedef in struct:char_traits 311 typedef wint_t int_type; typedef in struct:char_traits 387 typedef uint_least16_t int_type; typedef in struct:char_traits 480 typedef uint_least32_t int_type; typedef in struct:char_traits [all...] |
/external/stlport/stlport/stl/ |
_sstream.h | 58 typedef typename _Traits::int_type int_type; typedef in class:basic_stringbuf 79 virtual int_type underflow(); 80 virtual int_type uflow(); 81 virtual int_type pbackfail(int_type __c); 82 virtual int_type overflow(int_type __c); 83 int_type pbackfail() {return pbackfail(_Traits::eof());} 84 int_type overflow() {return overflow(_Traits::eof()); 120 typedef typename _Traits::int_type int_type; typedef in class:basic_istringstream 163 typedef typename _Traits::int_type int_type; typedef in class:basic_ostringstream 207 typedef typename _Traits::int_type int_type; typedef in class:basic_stringstream [all...] |
_strstream.h | 74 virtual int_type overflow(int_type __c = _Traits::eof()); 75 virtual int_type pbackfail(int_type __c = _Traits::eof()); 76 virtual int_type underflow(); 142 typedef char_traits<char>::int_type int_type; typedef in class:strstream
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_sstream.h | 58 typedef typename _Traits::int_type int_type; typedef in class:basic_stringbuf 79 virtual int_type underflow(); 80 virtual int_type uflow(); 81 virtual int_type pbackfail(int_type __c); 82 virtual int_type overflow(int_type __c); 83 int_type pbackfail() {return pbackfail(_Traits::eof());} 84 int_type overflow() {return overflow(_Traits::eof()); 120 typedef typename _Traits::int_type int_type; typedef in class:basic_istringstream 163 typedef typename _Traits::int_type int_type; typedef in class:basic_ostringstream 207 typedef typename _Traits::int_type int_type; typedef in class:basic_stringstream [all...] |
_strstream.h | 74 virtual int_type overflow(int_type __c = _Traits::eof()); 75 virtual int_type pbackfail(int_type __c = _Traits::eof()); 76 virtual int_type underflow(); 142 typedef char_traits<char>::int_type int_type; typedef in class:strstream
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_sstream.h | 58 typedef typename _Traits::int_type int_type; typedef in class:basic_stringbuf 79 virtual int_type underflow(); 80 virtual int_type uflow(); 81 virtual int_type pbackfail(int_type __c); 82 virtual int_type overflow(int_type __c); 83 int_type pbackfail() {return pbackfail(_Traits::eof());} 84 int_type overflow() {return overflow(_Traits::eof()); 120 typedef typename _Traits::int_type int_type; typedef in class:basic_istringstream 163 typedef typename _Traits::int_type int_type; typedef in class:basic_ostringstream 207 typedef typename _Traits::int_type int_type; typedef in class:basic_stringstream [all...] |
_strstream.h | 74 virtual int_type overflow(int_type __c = _Traits::eof()); 75 virtual int_type pbackfail(int_type __c = _Traits::eof()); 76 virtual int_type underflow(); 142 typedef char_traits<char>::int_type int_type; typedef in class:strstream
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_sstream.h | 58 typedef typename _Traits::int_type int_type; typedef in class:basic_stringbuf 79 virtual int_type underflow(); 80 virtual int_type uflow(); 81 virtual int_type pbackfail(int_type __c); 82 virtual int_type overflow(int_type __c); 83 int_type pbackfail() {return pbackfail(_Traits::eof());} 84 int_type overflow() {return overflow(_Traits::eof()); 120 typedef typename _Traits::int_type int_type; typedef in class:basic_istringstream 163 typedef typename _Traits::int_type int_type; typedef in class:basic_ostringstream 207 typedef typename _Traits::int_type int_type; typedef in class:basic_stringstream [all...] |