/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/ |
D | types.pass.cpp | 33 typedef std::sub_match<char*> SM; in main() 46 typedef std::sub_match<wchar_t*> SM; in main() 59 static_assert((std::is_same<std::csub_match, std::sub_match<const char*> >::value), ""); in main() 60 static_assert((std::is_same<std::wcsub_match, std::sub_match<const wchar_t*> >::value), ""); in main() 61 …static_assert((std::is_same<std::ssub_match, std::sub_match<std::string::const_iterator> >::value)… in main() 62 …static_assert((std::is_same<std::wssub_match, std::sub_match<std::wstring::const_iterator> >::valu… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/ |
D | types.pass.cpp | 36 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), ""); in test() 37 …static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value),… in test() 38 static_assert((std::is_same<typename MR::reference, std::sub_match<CharT*>& >::value), ""); in test() 42 …static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >… in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.iter/re.tokiter/ |
D | types.pass.cpp | 34 static_assert((std::is_same<typename I::value_type, std::sub_match<const CharT*> >::value), ""); in test() 36 …static_assert((std::is_same<typename I::pointer, const std::sub_match<const CharT*>*>::value), ""); in test() 37 …static_assert((std::is_same<typename I::reference, const std::sub_match<const CharT*>&>::value), "… in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/ |
D | default.pass.cpp | 23 typedef std::sub_match<const CharT*> SM; in main() 29 typedef std::sub_match<const CharT*> SM; in main()
|
D | length.pass.cpp | 23 typedef std::sub_match<const CharT*> SM; in main() 34 typedef std::sub_match<const CharT*> SM; in main()
|
D | compare_value_type_ptr.pass.cpp | 23 typedef std::sub_match<const CharT*> SM; in main() 36 typedef std::sub_match<const CharT*> SM; in main()
|
D | operator_string.pass.cpp | 23 typedef std::sub_match<const CharT*> SM; in main() 36 typedef std::sub_match<const CharT*> SM; in main()
|
D | str.pass.cpp | 23 typedef std::sub_match<const CharT*> SM; in main() 36 typedef std::sub_match<const CharT*> SM; in main()
|
D | compare_string_type.pass.cpp | 23 typedef std::sub_match<const CharT*> SM; in main() 37 typedef std::sub_match<const CharT*> SM; in main()
|
D | compare_sub_match.pass.cpp | 23 typedef std::sub_match<const CharT*> SM; in main() 39 typedef std::sub_match<const CharT*> SM; in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.const/ |
D | allocator.pass.cpp | 33 test<char>(test_allocator<std::sub_match<const char*> >(3)); in main() 34 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3)); in main()
|
D | default.pass.cpp | 26 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >()); in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.all/ |
D | get_allocator.pass.cpp | 33 test<char>(test_allocator<std::sub_match<const char*> >(3)); in main() 34 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3)); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/ |
D | compare.pass.cpp | 224 typedef std::sub_match<typename string::const_iterator> sub_match; in test() typedef 225 sub_match sm1; in test() 229 sub_match sm2; in test()
|
D | stream.pass.cpp | 27 typedef std::sub_match<typename string::const_iterator> SM; in test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.syn/ |
D | csub_match.pass.cpp | 19 static_assert((std::is_same<std::sub_match<const char*>, std::csub_match>::value), ""); in main()
|
D | wcsub_match.pass.cpp | 19 static_assert((std::is_same<std::sub_match<const wchar_t*>, std::wcsub_match>::value), ""); in main()
|
D | wssub_match.pass.cpp | 19 …static_assert((std::is_same<std::sub_match<std::wstring::const_iterator>, std::wssub_match>::value… in main()
|
D | ssub_match.pass.cpp | 19 …static_assert((std::is_same<std::sub_match<std::string::const_iterator>, std::ssub_match>::value),… in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | regex | 200 class sub_match 211 constexpr sub_match(); 217 int compare(const sub_match& s) const; 222 typedef sub_match<const char*> csub_match; 223 typedef sub_match<const wchar_t*> wcsub_match; 224 typedef sub_match<string::const_iterator> ssub_match; 225 typedef sub_match<wstring::const_iterator> wssub_match; 229 operator==(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs); 233 operator!=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs); 237 operator<(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs); [all …]
|