HomeSort by relevance Sort by last modified time
    Searched defs:traits_type (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
enc_filebuf.h 46 typedef encoding_char_traits<_CharT> traits_type; typedef in class:enc_filebuf
47 typedef typename traits_type::state_type state_type;
48 typedef typename traits_type::pos_type pos_type;
stdio_filebuf.h 55 typedef _Traits traits_type; typedef in class:stdio_filebuf
56 typedef typename traits_type::int_type int_type;
57 typedef typename traits_type::pos_type pos_type;
58 typedef typename traits_type::off_type off_type;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
enc_filebuf.h 46 typedef encoding_char_traits<_CharT> traits_type; typedef in class:enc_filebuf
47 typedef typename traits_type::state_type state_type;
48 typedef typename traits_type::pos_type pos_type;
stdio_filebuf.h 55 typedef _Traits traits_type; typedef in class:stdio_filebuf
56 typedef typename traits_type::int_type int_type;
57 typedef typename traits_type::pos_type pos_type;
58 typedef typename traits_type::off_type off_type;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
enc_filebuf.h 46 typedef encoding_char_traits<_CharT> traits_type; typedef in class:enc_filebuf
47 typedef typename traits_type::state_type state_type;
48 typedef typename traits_type::pos_type pos_type;
stdio_filebuf.h 55 typedef _Traits traits_type; typedef in class:stdio_filebuf
56 typedef typename traits_type::int_type int_type;
57 typedef typename traits_type::pos_type pos_type;
58 typedef typename traits_type::off_type off_type;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
enc_filebuf.h 46 typedef encoding_char_traits<_CharT> traits_type; typedef in class:enc_filebuf
47 typedef typename traits_type::state_type state_type;
48 typedef typename traits_type::pos_type pos_type;
stdio_filebuf.h 55 typedef _Traits traits_type; typedef in class:stdio_filebuf
56 typedef typename traits_type::int_type int_type;
57 typedef typename traits_type::pos_type pos_type;
58 typedef typename traits_type::off_type off_type;
  /ndk/sources/cxx-stl/stlport/src/
fstream.cpp 39 typedef char_traits<char> traits_type; typedef
40 typedef traits_type::int_type int_type;
44 return traits_type::eof();
49 int_type __c = traits_type::to_int_type(*__this->gptr());
81 return traits_type::to_int_type(*__this->gptr());
  /ndk/tests/device/test-gnustl-full/unit/
full_streambuf.h 16 typedef _Base::traits_type traits_type; typedef in class:full_streambuf
33 return traits_type::eof();
36 _buf += traits_type::to_char_type(c);
  /ndk/tests/device/test-stlport/unit/
full_streambuf.h 16 typedef _Base::traits_type traits_type; typedef in class:full_streambuf
33 return traits_type::eof();
36 _buf += traits_type::to_char_type(c);
  /external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 28 typedef typename base::traits_type traits_type; typedef in struct:test_buf
35 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
pbackfail.pass.cpp 26 typedef typename base::traits_type traits_type; typedef in struct:test_buf
33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
  /external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
overflow.pass.cpp 29 typedef base::traits_type traits_type; typedef in struct:test_buf
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
pbackfail.pass.cpp 29 typedef base::traits_type traits_type; typedef in struct:test_buf
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
48 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
55 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
underflow.pass.cpp 29 typedef base::traits_type traits_type; typedef in struct:test_buf
82 assert(f.sbumpc() == test_buf::traits_type::eof());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 28 typedef typename base::traits_type traits_type; typedef in struct:test_buf
35 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
pbackfail.pass.cpp 26 typedef typename base::traits_type traits_type; typedef in struct:test_buf
33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
overflow.pass.cpp 29 typedef base::traits_type traits_type; typedef in struct:test_buf
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
pbackfail.pass.cpp 29 typedef base::traits_type traits_type; typedef in struct:test_buf
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
48 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
55 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
underflow.pass.cpp 29 typedef base::traits_type traits_type; typedef in struct:test_buf
82 assert(f.sbumpc() == test_buf::traits_type::eof());
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/
compare.hpp 101 typedef typename boost::unit_test::basic_cstring<CharT>::traits_type traits_type; typedef
104 : traits_type::compare( x.begin(), y.begin(), x.size() ) < 0;
  /external/libchrome/base/
scoped_generic.h 74 typedef Traits traits_type; typedef in class:base::ScopedGeneric
76 ScopedGeneric() : data_(traits_type::InvalidValue()) {}
83 ScopedGeneric(const element_type& value, const traits_type& traits)
105 void reset(const element_type& value = traits_type::InvalidValue()) {
106 if (data_.generic != traits_type::InvalidValue() && data_.generic == value)
126 data_.generic = traits_type::InvalidValue();
134 bool is_valid() const { return data_.generic != traits_type::InvalidValue(); }
148 if (data_.generic != traits_type::InvalidValue()) {
150 data_.generic = traits_type::InvalidValue();
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ostreambuf_iterator.h 45 typedef _Traits traits_type; typedef in class:ostreambuf_iterator
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
63 traits_type::eof());
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_ostreambuf_iterator.h 45 typedef _Traits traits_type; typedef in class:ostreambuf_iterator
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
63 traits_type::eof());

Completed in 1444 milliseconds

1 2 3 4 5