HomeSort by relevance Sort by last modified time
    Searched refs:regex_match (Results 1 - 25 of 34) sorted by null

1 2

  /external/libcxx/test/re/re.regex/re.regex.construct/
awk_oct.pass.cpp 24 assert(std::regex_match("\4", std::regex{"\\4", awk}));
25 assert(std::regex_match("\41", std::regex{"\\41", awk}));
26 assert(std::regex_match("\141", std::regex{"\\141", awk}));
27 assert(std::regex_match("\1411", std::regex{"\\1411", awk}));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
awk_oct.pass.cpp 24 assert(std::regex_match("\4", std::regex{"\\4", awk}));
25 assert(std::regex_match("\41", std::regex{"\\41", awk}));
26 assert(std::regex_match("\141", std::regex{"\\141", awk}));
27 assert(std::regex_match("\1411", std::regex{"\\1411", awk}));
  /external/libcxx/test/re/re.alg/re.alg.match/
basic.fail.cpp 13 // bool regex_match(const basic_string<charT, ST, SA>&&,
35 std::regex_match(std::string("abcde"), m, re);
parse_curly_brackets.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
32 assert((std::regex_match(target, smatch, regex)));
42 assert((std::regex_match(target, smatch, regex)));
52 assert((std::regex_match(target, smatch, regex)));
62 assert((std::regex_match(target, smatch, regex)));
lookahead_capture.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
35 assert(std::regex_match(s, m, re));
47 assert(std::regex_match(s, m, re));
61 assert(std::regex_match(s, m, re));
76 assert(std::regex_match(s, m, re));
90 assert(std::regex_match(s, m, re));
grep.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
29 assert(std::regex_match(s, m, std::regex("tour\nto\ntournament",
45 assert(!std::regex_match(s, m, std::regex("tour\n\ntournament",
ecma.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
29 assert(std::regex_match(s, m, std::regex("a")));
45 assert(std::regex_match(s, m, std::regex("ab")));
60 assert(!std::regex_match(s, m, std::regex("ba")));
67 assert(!std::regex_match(s, m, std::regex("ab")));
73 assert(!std::regex_match(s, m, std::regex("ab"),
80 assert(!std::regex_match(s, m, std::regex("bc")));
86 assert(std::regex_match(s, m, std::regex("ab*c")));
101 assert(std::regex_match(s, m, std::regex("(ab)*c")));
119 assert(!std::regex_match(s, m, std::regex("cd((e)fg)hi")))
    [all...]
basic.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
28 assert(!std::regex_match("a", m, std::regex()));
35 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::basic)));
51 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::basic)));
66 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::basic)));
73 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::basic)));
79 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::basic),
86 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::basic)));
92 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::basic)));
107 assert(std::regex_match(s, m, std::regex("\\(ab\\)*c", std::regex_constants::basic)))
    [all...]
extended.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
29 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::extended)));
45 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::extended)));
60 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::extended)));
67 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::extended)));
73 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::extended),
80 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::extended)));
86 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::extended)));
101 assert(std::regex_match(s, m, std::regex("(ab)*c", std::regex_constants::extended)));
119 assert(!std::regex_match(s, m, std::regex("cd((e)fg)hi"
    [all...]
egrep.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
29 assert(std::regex_match(s, m, std::regex("tour\nto\ntournament",
45 assert(!std::regex_match(s, m, std::regex("tour\n\ntournament",
52 assert(std::regex_match(s, m, std::regex("(tour|to|tournament)+\ntourna",
68 assert(std::regex_match(s, m, std::regex("(tour|to|tournament)+\ntourna",
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.match/
basic.fail.cpp 13 // bool regex_match(const basic_string<charT, ST, SA>&&,
35 std::regex_match(std::string("abcde"), m, re);
parse_curly_brackets.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
32 assert((std::regex_match(target, smatch, regex)));
42 assert((std::regex_match(target, smatch, regex)));
52 assert((std::regex_match(target, smatch, regex)));
62 assert((std::regex_match(target, smatch, regex)));
lookahead_capture.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
35 assert(std::regex_match(s, m, re));
47 assert(std::regex_match(s, m, re));
61 assert(std::regex_match(s, m, re));
76 assert(std::regex_match(s, m, re));
90 assert(std::regex_match(s, m, re));
grep.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
29 assert(std::regex_match(s, m, std::regex("tour\nto\ntournament",
45 assert(!std::regex_match(s, m, std::regex("tour\n\ntournament",
ecma.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
29 assert(std::regex_match(s, m, std::regex("a")));
45 assert(std::regex_match(s, m, std::regex("ab")));
60 assert(!std::regex_match(s, m, std::regex("ba")));
67 assert(!std::regex_match(s, m, std::regex("ab")));
73 assert(!std::regex_match(s, m, std::regex("ab"),
80 assert(!std::regex_match(s, m, std::regex("bc")));
86 assert(std::regex_match(s, m, std::regex("ab*c")));
101 assert(std::regex_match(s, m, std::regex("(ab)*c")));
119 assert(!std::regex_match(s, m, std::regex("cd((e)fg)hi")))
    [all...]
basic.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
28 assert(!std::regex_match("a", m, std::regex()));
35 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::basic)));
51 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::basic)));
66 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::basic)));
73 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::basic)));
79 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::basic),
86 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::basic)));
92 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::basic)));
107 assert(std::regex_match(s, m, std::regex("\\(ab\\)*c", std::regex_constants::basic)))
    [all...]
extended.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
29 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::extended)));
45 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::extended)));
60 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::extended)));
67 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::extended)));
73 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::extended),
80 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::extended)));
86 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::extended)));
101 assert(std::regex_match(s, m, std::regex("(ab)*c", std::regex_constants::extended)));
119 assert(!std::regex_match(s, m, std::regex("cd((e)fg)hi"
    [all...]
egrep.pass.cpp 14 // regex_match(BidirectionalIterator first, BidirectionalIterator last,
29 assert(std::regex_match(s, m, std::regex("tour\nto\ntournament",
45 assert(!std::regex_match(s, m, std::regex("tour\n\ntournament",
52 assert(std::regex_match(s, m, std::regex("(tour|to|tournament)+\ntourna",
68 assert(std::regex_match(s, m, std::regex("(tour|to|tournament)+\ntourna",
  /external/lldb/source/Interpreter/
CommandObjectRegexCommand.cpp 63 RegularExpression::Match regex_match(m_max_matches);
65 if (pos->regex.Execute (command, &regex_match))
73 if (regex_match.GetMatchAtIndex (command, match_idx, match_str))
  /external/lldb/source/Target/
ThreadPlanStepInRange.cpp 297 RegularExpression::Match regex_match(num_matches);
299 bool return_value = avoid_regexp_to_use->Execute(frame_function_name, &regex_match);
305 regex_match.GetMatchAtIndex(frame_function_name,0, match);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
regex.h 1912 regex_match(_Bi_iter __s, function
1943 regex_match(_Bi_iter __first, _Bi_iter __last, function
1968 regex_match(const _Ch_type* __s, function
1992 regex_match(const basic_string<_Ch_type, _Ch_traits, _Ch_alloc>& __s, function
2015 regex_match(const _Ch_type* __s, function
2037 regex_match(const basic_string<_Ch_type, _Ch_traits, _Str_allocator>& __s, function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex.h 1878 regex_match(_Bi_iter __s, function
1909 regex_match(_Bi_iter __first, _Bi_iter __last, function
1934 regex_match(const _Ch_type* __s, function
1958 regex_match(const basic_string<_Ch_type, _Ch_traits, _Ch_alloc>& __s, function
1981 regex_match(const _Ch_type* __s, function
2003 regex_match(const basic_string<_Ch_type, _Ch_traits, _Str_allocator>& __s, function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex.h 1878 regex_match(_Bi_iter __s, function
1909 regex_match(_Bi_iter __first, _Bi_iter __last, function
1934 regex_match(const _Ch_type* __s, function
1958 regex_match(const basic_string<_Ch_type, _Ch_traits, _Ch_alloc>& __s, function
1981 regex_match(const _Ch_type* __s, function
2003 regex_match(const basic_string<_Ch_type, _Ch_traits, _Str_allocator>& __s, function
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex.h 1912 regex_match(_Bi_iter __s, function
1943 regex_match(_Bi_iter __first, _Bi_iter __last, function
1968 regex_match(const _Ch_type* __s, function
1992 regex_match(const basic_string<_Ch_type, _Ch_traits, _Ch_alloc>& __s, function
2015 regex_match(const _Ch_type* __s, function
2037 regex_match(const basic_string<_Ch_type, _Ch_traits, _Str_allocator>& __s, function
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex.h 1916 regex_match(_Bi_iter __s, function
1947 regex_match(_Bi_iter __first, _Bi_iter __last, function
1972 regex_match(const _Ch_type* __s, function
1996 regex_match(const basic_string<_Ch_type, _Ch_traits, _Ch_alloc>& __s, function
2019 regex_match(const _Ch_type* __s, function
2041 regex_match(const basic_string<_Ch_type, _Ch_traits, _Str_allocator>& __s, function
    [all...]

Completed in 978 milliseconds

1 2