Searched refs:matcher (Results 1 – 6 of 6) sorted by relevance
72 Matcher matcher = LINK_TAG_PATTERN.matcher(publicAlternativesString); in resolvePublicAlternatives() local75 while (matcher.find()) { in resolvePublicAlternatives()77 String alternativeString = matcher.group(1); in resolvePublicAlternatives()105 if (!CODE_TAG_PATTERN.matcher(publicAlternativesString).find()) { in resolvePublicAlternatives()
81 System.out.println("str1 matches: " + WEB_URL.matcher(testStr1).matches()); in main()82 System.out.println("str2 matches: " + WEB_URL.matcher(testStr2).matches()); in main()83 System.out.println("str3 matches: " + WEB_URL.matcher(testStr3).matches()); in main()
51 static bool Mark(Matcher* matcher);54 static bool Required(Matcher* matcher);57 static bool Repeated(Matcher* matcher); // On match, returns to the mark.83 bool Matcher::Mark(Matcher* matcher) { in Mark() argument84 matcher->pos_ += 1u; // Advance to the next match function before marking. in Mark()85 matcher->mark_ = matcher->pos_; in Mark()90 bool Matcher::Required(Matcher* matcher) { in Required() argument91 if (!(matcher->*Fn)()) { in Required()94 matcher->pos_ += 1u; in Required()95 ++matcher->instruction_; in Required()[all …]
47 Pattern.compile(IGNORE_THREAD_NAME_REGEX).matcher("");54 Pattern.compile(CUT_STACK_THREAD_NAME_REGEX).matcher("");
140 auto matcher = [target_descriptor, target_class](ObjPtr<mirror::Class> klass) in DumpB77342775DebugData()171 matcher(iface); in DumpB77342775DebugData()183 matcher(klass); in DumpB77342775DebugData()
245 Matcher m = Pattern.compile("(\'[^\']+\'| *[^ ]+ *)").matcher(command); in splitCommand()