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

1 2 3 4 5 6 7 8 91011

  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
enc_filebuf.h 44 typedef encoding_char_traits<_CharT> traits_type; typedef in class:enc_filebuf
45 typedef typename traits_type::state_type state_type;
46 typedef typename traits_type::pos_type pos_type;
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
enc_filebuf.h 44 typedef encoding_char_traits<_CharT> traits_type; typedef in class:enc_filebuf
45 typedef typename traits_type::state_type state_type;
46 typedef typename traits_type::pos_type pos_type;
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
enc_filebuf.h 44 typedef encoding_char_traits<_CharT> traits_type; typedef in class:enc_filebuf
45 typedef typename traits_type::state_type state_type;
46 typedef typename traits_type::pos_type pos_type;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
enc_filebuf.h 44 typedef encoding_char_traits<_CharT> traits_type; typedef in class:enc_filebuf
45 typedef typename traits_type::state_type state_type;
46 typedef typename traits_type::pos_type pos_type;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/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;
  /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;
  /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;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/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;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/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;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/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;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/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;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/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;
  /prebuilts/ndk/9/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;
  /external/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());
  /external/stlport/test/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/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/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/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);}

Completed in 780 milliseconds

1 2 3 4 5 6 7 8 91011