Searched defs:traits_type (Results 1 - 12 of 12) sorted by relevance

/external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
H A Doverflow.pass.cpp30 typedef typename base::traits_type traits_type; typedef in struct:test_buf
37 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} argument
H A Dpbackfail.pass.cpp26 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);} argument
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/
H A Dsputbackc.pass.cpp35 int_type pbackfail(int_type = traits_type::eof()) argument
H A Dsungetc.pass.cpp35 int_type pbackfail(int_type = traits_type::eof()) argument
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
H A Dsputc.pass.cpp39 int_type overflow(int_type = traits_type::eof()) argument
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Doverflow.pass.cpp29 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);} argument
H A Dpbackfail.pass.cpp29 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);} argument
48 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
55 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
H A Dunderflow.pass.cpp29 typedef base::traits_type traits_type; typedef in struct:test_buf
82 assert(f.sbumpc() == test_buf::traits_type::eof());
/external/fmtlib/fmt/
H A Dostream.h24 typedef typename std::basic_streambuf<Char>::traits_type traits_type; typedef in class:fmt::internal::FormatBuf
34 int_type overflow(int_type ch = traits_type::eof()) { argument
35 if (!traits_type::eq_int_type(ch, traits_type::eof())) {
41 start_[buf_size] = traits_type::to_char_type(ch);
/external/libchrome/base/
H A Dscoped_generic.h71 typedef Traits traits_type; typedef in class:base::ScopedGeneric
73 ScopedGeneric() : data_(traits_type::InvalidValue()) {}
80 ScopedGeneric(const element_type& value, const traits_type& traits)
102 void reset(const element_type& value = traits_type::InvalidValue()) { argument
103 if (data_.generic != traits_type::InvalidValue() && data_.generic == value)
123 data_.generic = traits_type::InvalidValue();
131 bool is_valid() const { return data_.generic != traits_type::InvalidValue(); }
145 if (data_.generic != traits_type::InvalidValue()) {
147 data_.generic = traits_type::InvalidValue();
/external/clang/test/SemaTemplate/
H A Dalias-templates.cpp44 typedef traits<thing<inner>> traits_type; typedef in struct:X::thing
48 thing(traits_type &traits) : traits(traits), val(traits.alloc()) {}
51 traits_type &traits;
66 itt::thing::traits_type itr;
/external/xmlrpcpp/src/
H A Dbase64.h49 typedef _Tr traits_type; typedef in class:base64

Completed in 6421 milliseconds