/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/input.streams/istream.unformatted/ |
seekg.pass.cpp | 12 // basic_istream<charT,traits>& seekg(pos_type pos); 17 template <class CharT> 19 : public std::basic_streambuf<CharT> 21 typedef std::basic_string<CharT> string_type; 22 typedef std::basic_streambuf<CharT> base; 31 base::setg(const_cast<CharT*>(str_.data()), 32 const_cast<CharT*>(str_.data()), 33 const_cast<CharT*>(str_.data()) + str_.size()); 36 CharT* eback() const {return base::eback();} 37 CharT* gptr() const {return base::gptr(); [all...] |
tellg.pass.cpp | 17 template <class CharT> 19 : public std::basic_streambuf<CharT> 21 typedef std::basic_string<CharT> string_type; 22 typedef std::basic_streambuf<CharT> base; 31 base::setg(const_cast<CharT*>(str_.data()), 32 const_cast<CharT*>(str_.data()), 33 const_cast<CharT*>(str_.data()) + str_.size()); 36 CharT* eback() const {return base::eback();} 37 CharT* gptr() const {return base::gptr();} 38 CharT* egptr() const {return base::egptr(); [all...] |
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/ |
setg.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 setg(CharT* gbeg, CharT* gnext, CharT* gend)
|
/external/libcxx/test/std/re/re.iter/re.regiter/ |
types.pass.cpp | 13 // class charT = typename iterator_traits< BidirectionalIterator>::value_type, 14 // class traits = regex_traits<charT>> 18 // typedef basic_regex<charT, traits> regex_type; 29 template <class CharT> 33 typedef std::regex_iterator<const CharT*> I; 34 static_assert((std::is_same<typename I::regex_type, std::basic_regex<CharT> >::value), ""); 35 static_assert((std::is_same<typename I::value_type, std::match_results<const CharT*> >::value), ""); 37 static_assert((std::is_same<typename I::pointer, const std::match_results<const CharT*>*>::value), ""); 38 static_assert((std::is_same<typename I::reference, const std::match_results<const CharT*>&>::value), "");
|
/external/libcxx/test/std/re/re.iter/re.tokiter/ |
types.pass.cpp | 13 // class charT = typename iterator_traits< BidirectionalIterator>::value_type, 14 // class traits = regex_traits<charT>> 18 // typedef basic_regex<charT, traits> regex_type; 29 template <class CharT> 33 typedef std::regex_token_iterator<const CharT*> I; 34 static_assert((std::is_same<typename I::regex_type, std::basic_regex<CharT> >::value), ""); 35 static_assert((std::is_same<typename I::value_type, std::sub_match<const CharT*> >::value), ""); 37 static_assert((std::is_same<typename I::pointer, const std::sub_match<const CharT*>*>::value), ""); 38 static_assert((std::is_same<typename I::reference, const std::sub_match<const CharT*>&>::value), "");
|
/external/libcxx/test/std/re/re.submatch/re.submatch.members/ |
compare_string_type.pass.cpp | 23 typedef char CharT; 24 typedef std::sub_match<const CharT*> SM; 28 const CharT s[] = {'1', '2', '3', 0}; 36 typedef wchar_t CharT; 37 typedef std::sub_match<const CharT*> SM; 41 const CharT s[] = {'1', '2', '3', 0};
|
compare_value_type_ptr.pass.cpp | 23 typedef char CharT; 24 typedef std::sub_match<const CharT*> SM; 27 const CharT s[] = {'1', '2', '3', 0}; 35 typedef wchar_t CharT; 36 typedef std::sub_match<const CharT*> SM; 39 const CharT s[] = {'1', '2', '3', 0};
|
operator_string.pass.cpp | 23 typedef char CharT; 24 typedef std::sub_match<const CharT*> SM; 28 const CharT s[] = {'1', '2', '3', 0}; 36 typedef wchar_t CharT; 37 typedef std::sub_match<const CharT*> SM; 41 const CharT s[] = {'1', '2', '3', 0};
|
str.pass.cpp | 23 typedef char CharT; 24 typedef std::sub_match<const CharT*> SM; 28 const CharT s[] = {'1', '2', '3', 0}; 36 typedef wchar_t CharT; 37 typedef std::sub_match<const CharT*> SM; 41 const CharT s[] = {'1', '2', '3', 0};
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/ |
setg.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 setg(CharT* gbeg, CharT* gnext, CharT* gend)
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.iter/re.regiter/ |
types.pass.cpp | 13 // class charT = typename iterator_traits< BidirectionalIterator>::value_type, 14 // class traits = regex_traits<charT>> 18 // typedef basic_regex<charT, traits> regex_type; 28 template <class CharT> 32 typedef std::regex_iterator<const CharT*> I; 33 static_assert((std::is_same<typename I::regex_type, std::basic_regex<CharT> >::value), ""); 34 static_assert((std::is_same<typename I::value_type, std::match_results<const CharT*> >::value), ""); 36 static_assert((std::is_same<typename I::pointer, const std::match_results<const CharT*>*>::value), ""); 37 static_assert((std::is_same<typename I::reference, const std::match_results<const CharT*>&>::value), "");
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.iter/re.tokiter/ |
types.pass.cpp | 13 // class charT = typename iterator_traits< BidirectionalIterator>::value_type, 14 // class traits = regex_traits<charT>> 18 // typedef basic_regex<charT, traits> regex_type; 28 template <class CharT> 32 typedef std::regex_token_iterator<const CharT*> I; 33 static_assert((std::is_same<typename I::regex_type, std::basic_regex<CharT> >::value), ""); 34 static_assert((std::is_same<typename I::value_type, std::sub_match<const CharT*> >::value), ""); 36 static_assert((std::is_same<typename I::pointer, const std::sub_match<const CharT*>*>::value), ""); 37 static_assert((std::is_same<typename I::reference, const std::sub_match<const CharT*>&>::value), "");
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/ |
compare_string_type.pass.cpp | 22 typedef char CharT; 23 typedef std::sub_match<const CharT*> SM; 28 const CharT s[] = {'1', '2', '3', 0}; 36 typedef wchar_t CharT; 37 typedef std::sub_match<const CharT*> SM; 42 const CharT s[] = {'1', '2', '3', 0};
|
compare_value_type_ptr.pass.cpp | 22 typedef char CharT; 23 typedef std::sub_match<const CharT*> SM; 27 const CharT s[] = {'1', '2', '3', 0}; 35 typedef wchar_t CharT; 36 typedef std::sub_match<const CharT*> SM; 40 const CharT s[] = {'1', '2', '3', 0};
|
operator_string.pass.cpp | 22 typedef char CharT; 23 typedef std::sub_match<const CharT*> SM; 27 const CharT s[] = {'1', '2', '3', 0}; 35 typedef wchar_t CharT; 36 typedef std::sub_match<const CharT*> SM; 40 const CharT s[] = {'1', '2', '3', 0};
|
str.pass.cpp | 22 typedef char CharT; 23 typedef std::sub_match<const CharT*> SM; 27 const CharT s[] = {'1', '2', '3', 0}; 35 typedef wchar_t CharT; 36 typedef std::sub_match<const CharT*> SM; 40 const CharT s[] = {'1', '2', '3', 0};
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.get.area/ |
setg.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 setg(CharT* gbeg, CharT* gnext, CharT* gend)
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.iter/re.regiter/ |
types.pass.cpp | 13 // class charT = typename iterator_traits< BidirectionalIterator>::value_type, 14 // class traits = regex_traits<charT>> 18 // typedef basic_regex<charT, traits> regex_type; 29 template <class CharT> 33 typedef std::regex_iterator<const CharT*> I; 34 static_assert((std::is_same<typename I::regex_type, std::basic_regex<CharT> >::value), ""); 35 static_assert((std::is_same<typename I::value_type, std::match_results<const CharT*> >::value), ""); 37 static_assert((std::is_same<typename I::pointer, const std::match_results<const CharT*>*>::value), ""); 38 static_assert((std::is_same<typename I::reference, const std::match_results<const CharT*>&>::value), "");
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.iter/re.tokiter/ |
types.pass.cpp | 13 // class charT = typename iterator_traits< BidirectionalIterator>::value_type, 14 // class traits = regex_traits<charT>> 18 // typedef basic_regex<charT, traits> regex_type; 29 template <class CharT> 33 typedef std::regex_token_iterator<const CharT*> I; 34 static_assert((std::is_same<typename I::regex_type, std::basic_regex<CharT> >::value), ""); 35 static_assert((std::is_same<typename I::value_type, std::sub_match<const CharT*> >::value), ""); 37 static_assert((std::is_same<typename I::pointer, const std::sub_match<const CharT*>*>::value), ""); 38 static_assert((std::is_same<typename I::reference, const std::sub_match<const CharT*>&>::value), "");
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/re/re.submatch/re.submatch.members/ |
compare_string_type.pass.cpp | 23 typedef char CharT; 24 typedef std::sub_match<const CharT*> SM; 29 const CharT s[] = {'1', '2', '3', 0}; 37 typedef wchar_t CharT; 38 typedef std::sub_match<const CharT*> SM; 43 const CharT s[] = {'1', '2', '3', 0};
|
compare_value_type_ptr.pass.cpp | 23 typedef char CharT; 24 typedef std::sub_match<const CharT*> SM; 28 const CharT s[] = {'1', '2', '3', 0}; 36 typedef wchar_t CharT; 37 typedef std::sub_match<const CharT*> SM; 41 const CharT s[] = {'1', '2', '3', 0};
|
operator_string.pass.cpp | 23 typedef char CharT; 24 typedef std::sub_match<const CharT*> SM; 28 const CharT s[] = {'1', '2', '3', 0}; 36 typedef wchar_t CharT; 37 typedef std::sub_match<const CharT*> SM; 41 const CharT s[] = {'1', '2', '3', 0};
|
str.pass.cpp | 23 typedef char CharT; 24 typedef std::sub_match<const CharT*> SM; 28 const CharT s[] = {'1', '2', '3', 0}; 36 typedef wchar_t CharT; 37 typedef std::sub_match<const CharT*> SM; 41 const CharT s[] = {'1', '2', '3', 0};
|
/external/libcxx/test/std/re/re.regex/re.regex.construct/ |
ptr_size.pass.cpp | 12 // template <class charT, class traits = regex_traits<charT>> class basic_regex; 14 // basic_regex(const charT* p, size_t len); 19 template <class CharT> 21 test(const CharT* p, std::size_t len, unsigned mc) 23 std::basic_regex<CharT> r(p, len);
|
/external/libcxx/test/std/re/re.results/re.results.all/ |
get_allocator.pass.cpp | 22 template <class CharT, class Allocator> 26 std::match_results<const CharT*, Allocator> m(a); 28 assert(m.str() == std::basic_string<CharT>());
|