HomeSort by relevance Sort by last modified time
    Searched refs:CharT (Results 1 - 25 of 550) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/localization/locale.categories/category.messages/locale.messages/locale.messages.members/
not_testable.pass.cpp 12 // class messages<charT>
23 template <class CharT>
25 : public std::messages<CharT>
29 : std::messages<CharT>(refs) {}
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.messages/locale.messages/locale.messages.members/
not_testable.pass.cpp 12 // class messages<charT>
23 template <class CharT>
25 : public std::messages<CharT>
29 : std::messages<CharT>(refs) {}
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.messages/locale.messages/locale.messages.members/
not_testable.pass.cpp 12 // class messages<charT>
23 template <class CharT>
25 : public std::messages<CharT>
29 : std::messages<CharT>(refs) {}
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/
pubsync.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
20 template <class CharT>
22 : public std::basic_streambuf<CharT>
pubseekpos.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
21 template <class CharT>
23 : public std::basic_streambuf<CharT>
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/
pubsync.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
20 template <class CharT>
22 : public std::basic_streambuf<CharT>
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.buffer/
pubsync.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
20 template <class CharT>
22 : public std::basic_streambuf<CharT>
  /external/libcxx/test/std/re/re.results/re.results.const/
default.pass.cpp 20 template <class CharT>
24 std::match_results<const CharT*> m;
26 assert(m.str() == std::basic_string<CharT>());
27 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >());
  /external/libcxx/test/std/re/re.submatch/re.submatch.members/
default.pass.cpp 23 typedef char CharT;
24 typedef std::sub_match<const CharT*> SM;
29 typedef wchar_t CharT;
30 typedef std::sub_match<const CharT*> SM;
length.pass.cpp 23 typedef char CharT;
24 typedef std::sub_match<const CharT*> SM;
27 const CharT s[] = {'1', '2', '3', 0};
34 typedef wchar_t CharT;
35 typedef std::sub_match<const CharT*> SM;
38 const CharT s[] = {'1', '2', '3', 0};
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.const/
default.pass.cpp 19 template <class CharT>
23 std::match_results<const CharT*> m;
25 assert(m.str() == std::basic_string<CharT>());
26 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >());
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/
default.pass.cpp 22 typedef char CharT;
23 typedef std::sub_match<const CharT*> SM;
28 typedef wchar_t CharT;
29 typedef std::sub_match<const CharT*> SM;
length.pass.cpp 22 typedef char CharT;
23 typedef std::sub_match<const CharT*> SM;
26 const CharT s[] = {'1', '2', '3', 0};
33 typedef wchar_t CharT;
34 typedef std::sub_match<const CharT*> SM;
37 const CharT s[] = {'1', '2', '3', 0};
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.results/re.results.const/
default.pass.cpp 20 template <class CharT>
24 std::match_results<const CharT*> m;
26 assert(m.str() == std::basic_string<CharT>());
27 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.submatch/re.submatch.members/
default.pass.cpp 23 typedef char CharT;
24 typedef std::sub_match<const CharT*> SM;
29 typedef wchar_t CharT;
30 typedef std::sub_match<const CharT*> SM;
length.pass.cpp 23 typedef char CharT;
24 typedef std::sub_match<const CharT*> SM;
27 const CharT s[] = {'1', '2', '3', 0};
34 typedef wchar_t CharT;
35 typedef std::sub_match<const CharT*> SM;
38 const CharT s[] = {'1', '2', '3', 0};
  /external/libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/
sync.pass.cpp 19 template <class CharT>
21 : public std::basic_streambuf<CharT>
23 typedef std::basic_string<CharT> string_type;
24 typedef std::basic_streambuf<CharT> base;
33 base::setg(const_cast<CharT*>(str_.data()),
34 const_cast<CharT*>(str_.data()),
35 const_cast<CharT*>(str_.data()) + str_.size());
38 CharT* eback() const {return base::eback();}
39 CharT* gptr() const {return base::gptr();}
40 CharT* egptr() const {return base::egptr();
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.rvalue/
rvalue.pass.cpp 12 // template <class charT, class traits, class T>
13 // basic_istream<charT, traits>&
14 // operator>>(basic_istream<charT, traits>&& is, T& x);
21 template <class CharT>
23 : public std::basic_streambuf<CharT>
25 typedef std::basic_string<CharT> string_type;
26 typedef std::basic_streambuf<CharT> base;
35 base::setg(const_cast<CharT*>(str_.data()),
36 const_cast<CharT*>(str_.data()),
37 const_cast<CharT*>(str_.data()) + str_.size())
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
sync.pass.cpp 19 template <class CharT>
21 : public std::basic_streambuf<CharT>
23 typedef std::basic_string<CharT> string_type;
24 typedef std::basic_streambuf<CharT> base;
33 base::setg(const_cast<CharT*>(str_.data()),
34 const_cast<CharT*>(str_.data()),
35 const_cast<CharT*>(str_.data()) + str_.size());
38 CharT* eback() const {return base::eback();}
39 CharT* gptr() const {return base::gptr();}
40 CharT* egptr() const {return base::egptr();
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/input.streams/istream.rvalue/
rvalue.pass.cpp 12 // template <class charT, class traits, class T>
13 // basic_istream<charT, traits>&
14 // operator>>(basic_istream<charT, traits>&& is, T& x);
21 template <class CharT>
23 : public std::basic_streambuf<CharT>
25 typedef std::basic_string<CharT> string_type;
26 typedef std::basic_streambuf<CharT> base;
35 base::setg(const_cast<CharT*>(str_.data()),
36 const_cast<CharT*>(str_.data()),
37 const_cast<CharT*>(str_.data()) + str_.size())
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/input.streams/istream.unformatted/
sync.pass.cpp 19 template <class CharT>
21 : public std::basic_streambuf<CharT>
23 typedef std::basic_string<CharT> string_type;
24 typedef std::basic_streambuf<CharT> base;
33 base::setg(const_cast<CharT*>(str_.data()),
34 const_cast<CharT*>(str_.data()),
35 const_cast<CharT*>(str_.data()) + str_.size());
38 CharT* eback() const {return base::eback();}
39 CharT* gptr() const {return base::gptr();}
40 CharT* egptr() const {return base::egptr();
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/
in_avail.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
22 template <class CharT>
24 : public std::basic_streambuf<CharT>
26 typedef std::basic_streambuf<CharT> base;
30 void setg(CharT* gbeg, CharT* gnext, CharT* gend)
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/
in_avail.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
22 template <class CharT>
24 : public std::basic_streambuf<CharT>
26 typedef std::basic_streambuf<CharT> base;
30 void setg(CharT* gbeg, CharT* gnext, CharT* gend)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.get/
in_avail.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
22 template <class CharT>
24 : public std::basic_streambuf<CharT>
26 typedef std::basic_streambuf<CharT> base;
30 void setg(CharT* gbeg, CharT* gnext, CharT* gend)
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
streambuf.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
15 // basic_ostream<charT,traits>& operator<<(basic_streambuf<charT,traits>* sb);
20 template <class CharT>
22 : public std::basic_streambuf<CharT>
24 typedef std::basic_streambuf<CharT> base;
25 std::basic_string<CharT> str_;
30 testbuf(const std::basic_string<CharT>& str)
33 base::setg(const_cast<CharT*>(str_.data())
    [all...]

Completed in 1881 milliseconds

1 2 3 4 5 6 7 8 91011>>