HomeSort by relevance Sort by last modified time
    Searched refs:sub_match (Results 1 - 24 of 24) sorted by null

  /external/libcxx/test/std/re/re.results/re.results.const/
copy_assign.pass.cpp 40 test<char> (std::allocator<std::sub_match<const char *> >());
41 test<wchar_t>(std::allocator<std::sub_match<const wchar_t *> >());
44 test<char> (test_allocator<std::sub_match<const char*> >(3));
45 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
48 test<char> (other_allocator<std::sub_match<const char*> >(3));
49 test<wchar_t>(other_allocator<std::sub_match<const wchar_t*> >(3));
move_assign.pass.cpp 41 test<char> (std::allocator<std::sub_match<const char *> >());
42 test<wchar_t>(std::allocator<std::sub_match<const wchar_t *> >());
45 test<char> (test_allocator<std::sub_match<const char*> >(3));
46 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
49 test<char> (other_allocator<std::sub_match<const char*> >(3));
50 test<wchar_t>(other_allocator<std::sub_match<const wchar_t*> >(3));
copy.pass.cpp 36 test<char> (std::allocator<std::sub_match<const char *> >());
37 test<wchar_t>(std::allocator<std::sub_match<const wchar_t *> >());
39 test<char> (test_allocator<std::sub_match<const char*> >(3));
40 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
move.pass.cpp 41 test<char> (std::allocator<std::sub_match<const char *> >());
42 test<wchar_t>(std::allocator<std::sub_match<const wchar_t *> >());
44 test<char> (test_allocator<std::sub_match<const char*> >(3));
46 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
allocator.pass.cpp 34 test<char>(test_allocator<std::sub_match<const char*> >(3));
35 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
default.pass.cpp 27 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >());
  /external/libcxx/test/std/re/re.syn/
csub_match.pass.cpp 12 // typedef sub_match<const char*> csub_match;
20 static_assert((std::is_same<std::sub_match<const char*>, std::csub_match>::value), "");
ssub_match.pass.cpp 12 // typedef sub_match<string::const_iterator> ssub_match;
20 static_assert((std::is_same<std::sub_match<std::string::const_iterator>, std::ssub_match>::value), "");
wcsub_match.pass.cpp 12 // typedef sub_match<const wchar_t*> wcsub_match;
20 static_assert((std::is_same<std::sub_match<const wchar_t*>, std::wcsub_match>::value), "");
wssub_match.pass.cpp 12 // typedef sub_match<wstring::const_iterator> wssub_match;
20 static_assert((std::is_same<std::sub_match<std::wstring::const_iterator>, std::wssub_match>::value), "");
  /external/libcxx/test/std/re/re.submatch/re.submatch.members/
default.pass.cpp 12 // template <class BidirectionalIterator> class sub_match;
14 // constexpr sub_match();
24 typedef std::sub_match<const CharT*> SM;
30 typedef std::sub_match<const CharT*> SM;
length.pass.cpp 12 // template <class BidirectionalIterator> class sub_match;
24 typedef std::sub_match<const CharT*> SM;
35 typedef std::sub_match<const CharT*> SM;
compare_string_type.pass.cpp 12 // template <class BidirectionalIterator> class sub_match;
24 typedef std::sub_match<const CharT*> SM;
37 typedef std::sub_match<const CharT*> SM;
compare_value_type_ptr.pass.cpp 12 // template <class BidirectionalIterator> class sub_match;
24 typedef std::sub_match<const CharT*> SM;
36 typedef std::sub_match<const CharT*> SM;
operator_string.pass.cpp 12 // template <class BidirectionalIterator> class sub_match;
24 typedef std::sub_match<const CharT*> SM;
37 typedef std::sub_match<const CharT*> SM;
str.pass.cpp 12 // template <class BidirectionalIterator> class sub_match;
24 typedef std::sub_match<const CharT*> SM;
37 typedef std::sub_match<const CharT*> SM;
compare_sub_match.pass.cpp 12 // template <class BidirectionalIterator> class sub_match;
14 // int compare(const sub_match& s) const;
24 typedef std::sub_match<const CharT*> SM;
40 typedef std::sub_match<const CharT*> SM;
  /external/libcxx/test/std/re/re.results/re.results.all/
get_allocator.pass.cpp 34 test<char>(test_allocator<std::sub_match<const char*> >(3));
35 test<wchar_t>(test_allocator<std::sub_match<const wchar_t*> >(3));
  /external/libcxx/test/std/re/re.iter/re.tokiter/
types.pass.cpp 19 // typedef sub_match<BidirectionalIterator> value_type;
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/
types.pass.cpp 13 // class sub_match
34 typedef std::sub_match<char*> SM;
47 typedef std::sub_match<wchar_t*> SM;
60 static_assert((std::is_same<std::csub_match, std::sub_match<const char*> >::value), "");
61 static_assert((std::is_same<std::wcsub_match, std::sub_match<const wchar_t*> >::value), "");
62 static_assert((std::is_same<std::ssub_match, std::sub_match<std::string::const_iterator> >::value), "");
63 static_assert((std::is_same<std::wssub_match, std::sub_match<std::wstring::const_iterator> >::value), "");
  /external/libcxx/test/std/re/re.results/
types.pass.cpp 13 // class Allocator = allocator<sub_match<BidirectionalIterator>>>
17 // typedef sub_match<BidirectionalIterator> value_type;
37 static_assert((std::is_same<typename MR::value_type, std::sub_match<CharT*> >::value), "");
38 static_assert((std::is_same<typename MR::const_reference, const std::sub_match<CharT*>& >::value), "");
39 static_assert((std::is_same<typename MR::reference, std::sub_match<CharT*>& >::value), "");
43 static_assert((std::is_same<typename MR::allocator_type, std::allocator<std::sub_match<CharT*> > >::value), "");
  /external/libcxx/test/std/re/re.submatch/re.submatch.op/
stream.pass.cpp 12 // template <class BidirectionalIterator> class sub_match;
16 // operator<<(basic_ostream<charT, ST>& os, const sub_match<BiIter>& m);
28 typedef std::sub_match<typename string::const_iterator> SM;
compare.pass.cpp 12 // template <class BidirectionalIterator> class sub_match;
16 // operator==(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
20 // operator!=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
24 // operator<(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
28 // operator<=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs);
32 // operator>=(const sub_match<BiIter>& lhs, const sub_match<BiIter>& rhs)
225 typedef std::sub_match<typename string::const_iterator> sub_match; typedef
    [all...]
  /external/libcxx/test/std/experimental/memory/memory.resource.aliases/
header_regex_synop.pass.cpp 21 // polymorphic_allocator<sub_match<BidirectionalIterator>>>;
38 using StdMR = std::match_results<Iter, pmr::polymorphic_allocator<std::sub_match<Iter>>>;

Completed in 822 milliseconds