HomeSort by relevance Sort by last modified time
    Searched refs:CharT (Results 1 - 25 of 344) 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) {}
  /ndk/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) {}
  /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>
pubsetbuf.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
20 template <class CharT>
22 : public std::basic_streambuf<CharT>
  /ndk/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>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
wrap_stringstream.hpp 39 template<typename CharT>
45 typedef std::basic_ostrstream<CharT> wrapped_stream;
47 typedef std::basic_ostringstream<CharT> wrapped_stream;
52 std::basic_string<CharT> const& str();
57 std::basic_string<CharT> m_str;
62 template <typename CharT, typename T>
63 inline basic_wrap_stringstream<CharT>&
64 operator<<( basic_wrap_stringstream<CharT>& targ, T const& t )
72 template <typename CharT>
73 inline typename basic_wrap_stringstream<CharT>::wrapped_stream
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/
compare.hpp 43 template<class CharT>
46 static bool eq( CharT c1, CharT c2 ) { return (std::toupper)( c1 ) == (std::toupper)( c2 ); }
47 static bool lt( CharT c1, CharT c2 ) { return (std::toupper)( c1 ) < (std::toupper)( c2 ); }
49 static int compare( CharT const* s1, CharT const* s2, std::size_t n )
65 template<class CharT>
67 case_ins_eq( basic_cstring<CharT> x, basic_cstring<CharT> y
    [all...]
basic_cstring.hpp 38 template<typename CharT>
40 typedef basic_cstring<CharT> self_type;
43 typedef ut_detail::bcs_char_traits<CharT> traits_type;
44 typedef typename ut_detail::bcs_char_traits<CharT>::std_string std_string;
46 typedef CharT value_type;
114 basic_cstring& assign( basic_cstring<CharT2> const& s ) { *this = basic_cstring<CharT>( s.begin(), s.end() ); return *this; }
148 template<typename CharT>
149 inline typename basic_cstring<CharT>::pointer
150 basic_cstring<CharT>::null_str()
152 static CharT null = 0
    [all...]
  /external/libcxx/test/std/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*> >());
  /external/libcxx/test/std/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};
  /ndk/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*> >());
  /ndk/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};
  /external/libcxx/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...]
  /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...]
  /ndk/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...]
  /ndk/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...]
  /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)
  /ndk/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)
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
pbump.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
20 template <class CharT>
22 : public std::basic_streambuf<CharT>
24 typedef std::basic_streambuf<CharT> base;
28 void setp(CharT* pbeg, CharT* pend)
35 CharT* pbeg = base::pbase();
36 CharT* pnext = base::pptr();
37 CharT* pend = base::epptr()
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.get/
showmanyc.pass.cpp 12 // template <class charT, class traits = char_traits<charT> >
22 template <class CharT>
24 : public std::basic_streambuf<CharT>
  /external/libcxx/test/std/re/re.iter/re.regiter/re.regiter.cnstr/
default.pass.cpp 12 // class regex_iterator<BidirectionalIterator, charT, traits>
19 template <class CharT>
23 typedef std::regex_iterator<const CharT*> I;
  /external/libcxx/test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/
default.pass.cpp 12 // class regex_token_iterator<BidirectionalIterator, charT, traits>
19 template <class CharT>
23 typedef std::regex_token_iterator<const CharT*> I;

Completed in 1336 milliseconds

1 2 3 4 5 6 7 8 91011>>