Searched refs:matchResult (Results 1 – 3 of 3) sorted by relevance
124 MatchResult matchResult = matcher.toMatchResult(); in parseEpisode() local125 if (matchResult.groupCount() == 4) { in parseEpisode()126 String name = cleanup(matchResult.group(1)); in parseEpisode()127 int year = matchResult.group(2) == null ? 0 : Integer.valueOf(matchResult.group(2)); in parseEpisode()128 int season = Integer.valueOf(matchResult.group(3)); in parseEpisode()129 int episode = Integer.valueOf(matchResult.group(4)); in parseEpisode()150 MatchResult matchResult = matcher.toMatchResult(); in parseMovie() local151 if (matchResult.groupCount() == 2) { in parseMovie()152 String name = cleanup(matchResult.group(1)); in parseMovie()153 int year = Integer.valueOf(matchResult.group(2)); in parseMovie()
390 int matchResult = in match() local392 return matchResult != IntentFilter.NO_MATCH_TYPE in match()393 && matchResult != IntentFilter.NO_MATCH_DATA; in match()
1880 MatchResult matchResult = matchesFilters(client, result, originalAddress); in onScanResultInternal() local1881 if (!hasPermission || !matchResult.getMatches()) { in onScanResultInternal()1884 + hasPermission + " matches=" + matchResult.getMatches()); in onScanResultInternal()