Searched refs:regex (Results 26 - 50 of 474) sorted by relevance

1234567891011>>

/external/mockito/src/org/mockito/internal/matchers/
H A DMatches.java17 private final String regex; field in class:Matches
19 public Matches(String regex) { argument
20 this.regex = regex;
24 return (actual instanceof String) && ((String) actual).matches(regex);
28 description.appendText("matches(\"" + regex.replaceAll("\\\\", "\\\\\\\\")
/external/libcxx/test/std/re/re.alg/re.alg.match/
H A Dbasic.fail.cpp10 // <regex>
25 #include <regex>
32 std::regex re{"*"};
/external/libcxx/test/std/re/re.alg/re.alg.search/
H A Dbasic.fail.cpp10 // <regex>
25 #include <regex>
32 std::regex re{"*"};
/external/libcxx/test/std/re/re.iter/re.regiter/re.regiter.cnstr/
H A Dcnstr.fail.cpp10 // <regex>
24 #include <regex>
33 std::regex("\\d{3}-\\d{4}"));
/external/libcxx/test/std/re/re.iter/re.tokiter/re.tokiter.cnstr/
H A Darray.fail.cpp10 // <regex>
25 #include <regex>
32 std::regex phone_numbers("\\d{3}-(\\d{4})");
36 std::regex("\\d{3}-\\d{4}"), indices);
H A Dinit.fail.cpp10 // <regex>
24 #include <regex>
30 std::regex phone_numbers("\\d{3}-(\\d{4})");
33 std::regex("\\d{3}-\\d{4}"), {-1, 0, 1});
H A Dint.fail.cpp10 // <regex>
23 #include <regex>
29 std::regex phone_numbers("\\d{3}-\\d{4}");
32 std::regex("\\d{3}-\\d{4}"), -1);
H A Dvector.fail.cpp10 // <regex>
25 #include <regex>
31 std::regex phone_numbers("\\d{3}-(\\d{4})");
37 std::regex("\\d{3}-\\d{4}"), v);
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/common/
H A Dmatcher.py41 regex: The regular expression representing this matcher.
46 def __init__(self, regex, token_type, result_mode=None, line_start=False):
50 regex: The regular expression to match.
57 self.regex = regex
/external/libcxx/test/std/re/re.results/re.results.state/
H A Dready.pass.cpp10 // <regex>
16 #include <regex>
25 std::regex_search(s, m, std::regex("cd((e)fg)hi"));
35 std::regex_search(s, m, std::regex("z"));
/external/libcxx/test/std/re/re.results/re.results.size/
H A Dmax_size.pass.cpp10 // <regex>
16 #include <regex>
/external/libcxx/test/std/re/re.syn/
H A Dcmatch.pass.cpp10 // <regex>
14 #include <regex>
H A Dcregex_iterator.pass.cpp10 // <regex>
14 #include <regex>
H A Dcregex_token_iterator.pass.cpp10 // <regex>
14 #include <regex>
H A Dcsub_match.pass.cpp10 // <regex>
14 #include <regex>
H A Dsmatch.pass.cpp10 // <regex>
14 #include <regex>
H A Dsregex_iterator.pass.cpp10 // <regex>
14 #include <regex>
H A Dsregex_token_iterator.pass.cpp10 // <regex>
14 #include <regex>
H A Dssub_match.pass.cpp10 // <regex>
14 #include <regex>
H A Dwcmatch.pass.cpp10 // <regex>
14 #include <regex>
H A Dwcregex_iterator.pass.cpp10 // <regex>
14 #include <regex>
H A Dwcregex_token_iterator.pass.cpp10 // <regex>
14 #include <regex>
H A Dwcsub_match.pass.cpp10 // <regex>
14 #include <regex>
H A Dwregex.pass.cpp10 // <regex>
14 #include <regex>
H A Dwsmatch.pass.cpp10 // <regex>
14 #include <regex>

Completed in 3198 milliseconds

1234567891011>>