Searched refs:matcher (Results 1 - 4 of 4) sorted by relevance

/art/test/094-pattern/src/
H A DMain.java81 System.out.println("str1 matches: " + WEB_URL.matcher(testStr1).matches());
82 System.out.println("str2 matches: " + WEB_URL.matcher(testStr2).matches());
83 System.out.println("str3 matches: " + WEB_URL.matcher(testStr3).matches());
/art/test/911-get-stack-trace/src/art/
H A DPrintThread.java47 Pattern.compile(IGNORE_THREAD_NAME_REGEX).matcher("");
54 Pattern.compile(CUT_STACK_THREAD_NAME_REGEX).matcher("");
/art/compiler/dex/
H A Dinline_method_analyser.cc43 typedef bool MatchFn(Matcher* matcher);
50 static bool Mark(Matcher* matcher);
53 static bool Required(Matcher* matcher);
56 static bool Repeated(Matcher* matcher); // On match, returns to the mark.
84 bool Matcher::Mark(Matcher* matcher) { argument
85 matcher->pos_ += 1u; // Advance to the next match function before marking.
86 matcher->mark_ = matcher->pos_;
91 bool Matcher::Required(Matcher* matcher) { argument
92 if (!(matcher
101 Repeated(Matcher* matcher) argument
[all...]
/art/tools/dexfuzz/src/dexfuzz/executors/
H A DDevice.java245 Matcher m = Pattern.compile("(\'[^\']+\'| *[^ ]+ *)").matcher(command);

Completed in 835 milliseconds