Home
last modified time | relevance | path

Searched refs:sub_match (Results 1 – 22 of 22) sorted by relevance

/external/libcxx/test/std/re/re.submatch/
Dtypes.pass.cpp34 typedef std::sub_match<char*> SM; in main()
47 typedef std::sub_match<wchar_t*> SM; in main()
60 static_assert((std::is_same<std::csub_match, std::sub_match<const char*> >::value), ""); in main()
61 static_assert((std::is_same<std::wcsub_match, std::sub_match<const wchar_t*> >::value), ""); in main()
62 …static_assert((std::is_same<std::ssub_match, std::sub_match<std::string::const_iterator> >::value)… in main()
63 …static_assert((std::is_same<std::wssub_match, std::sub_match<std::wstring::const_iterator> >::valu… in main()
/external/libcxx/test/std/re/re.results/
Dtypes.pass.cpp37 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), ""); in test()
38 …static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value),… in test()
39 static_assert((std::is_same<typename MR::reference, std::sub_match<CharT*>& >::value), ""); in test()
43 …static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >… in test()
/external/libcxx/test/std/re/re.iter/re.tokiter/
Dtypes.pass.cpp35 static_assert((std::is_same<typename I::value_type, std::sub_match<const CharT*> >::value), ""); in test()
37 …static_assert((std::is_same<typename I::pointer, const std::sub_match<const CharT*>*>::value), ""); in test()
38 …static_assert((std::is_same<typename I::reference, const std::sub_match<const CharT*>&>::value), "… in test()
/external/libcxx/include/
Dregex202 class sub_match
213 constexpr sub_match();
219 int compare(const sub_match& s) const;
224 typedef sub_match<const char*> csub_match;
225 typedef sub_match<const wchar_t*> wcsub_match;
226 typedef sub_match<string::const_iterator> ssub_match;
227 typedef sub_match<wstring::const_iterator> wssub_match;
231 operator==(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
235 operator!=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
239 operator<(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
[all …]
/external/libcxx/test/std/re/re.submatch/re.submatch.members/
Ddefault.pass.cpp24 typedef std::sub_match<const CharT*> SM; in main()
30 typedef std::sub_match<const CharT*> SM; in main()
Dlength.pass.cpp24 typedef std::sub_match<const CharT*> SM; in main()
35 typedef std::sub_match<const CharT*> SM; in main()
Dcompare_value_type_ptr.pass.cpp24 typedef std::sub_match<const CharT*> SM; in main()
36 typedef std::sub_match<const CharT*> SM; in main()
Doperator_string.pass.cpp24 typedef std::sub_match<const CharT*> SM; in main()
37 typedef std::sub_match<const CharT*> SM; in main()
Dstr.pass.cpp24 typedef std::sub_match<const CharT*> SM; in main()
37 typedef std::sub_match<const CharT*> SM; in main()
Dcompare_string_type.pass.cpp24 typedef std::sub_match<const CharT*> SM; in main()
37 typedef std::sub_match<const CharT*> SM; in main()
Dcompare_sub_match.pass.cpp24 typedef std::sub_match<const CharT*> SM; in main()
40 typedef std::sub_match<const CharT*> SM; in main()
/external/libcxx/test/std/re/re.results/re.results.all/
Dget_allocator.pass.cpp34 test<char>(test_allocator<std::sub_match<const char*> >(3)); in main()
35 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3)); in main()
/external/libcxx/test/std/re/re.results/re.results.const/
Dallocator.pass.cpp34 test<char>(test_allocator<std::sub_match<const char*> >(3)); in main()
35 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3)); in main()
Ddefault.pass.cpp27 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >()); in test()
/external/libcxx/test/std/re/re.submatch/re.submatch.op/
Dcompare.pass.cpp225 typedef std::sub_match<typename string::const_iterator> sub_match; in test() typedef
226 sub_match sm1; in test()
230 sub_match sm2; in test()
Dstream.pass.cpp28 typedef std::sub_match<typename string::const_iterator> SM; in test()
/external/libcxx/include/experimental/
Dregex25 polymorphic_allocator<sub_match<BidirectionalIterator>>>;
53 polymorphic_allocator<_VSTD::sub_match<_BiDirIter>>>;
/external/libcxx/test/std/re/re.syn/
Dwcsub_match.pass.cpp20 static_assert((std::is_same<std::sub_match<const wchar_t*>, std::wcsub_match>::value), ""); in main()
Dcsub_match.pass.cpp20 static_assert((std::is_same<std::sub_match<const char*>, std::csub_match>::value), ""); in main()
Dssub_match.pass.cpp20 …static_assert((std::is_same<std::sub_match<std::string::const_iterator>, std::ssub_match>::value),… in main()
Dwssub_match.pass.cpp20 …static_assert((std::is_same<std::sub_match<std::wstring::const_iterator>, std::wssub_match>::value… in main()
/external/libcxx/test/std/experimental/memory/memory.resource.aliases/
Dheader_regex_synop.pass.cpp38 using StdMR = std::match_results<Iter, pmr::polymorphic_allocator<std::sub_match<Iter>>>; in test_match_result_typedef()