Home
last modified time | relevance | path

Searched refs:matchResult (Results 1 – 3 of 3) sorted by relevance

/packages/apps/UniversalMediaPlayer/java/com/android/pump/provider/
DQuery.java124 MatchResult matchResult = matcher.toMatchResult(); in parseEpisode() local
125 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() local
151 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()
/packages/modules/Connectivity/nearby/tests/robotests/src/com/android/libraries/testing/deviceshadower/internal/common/
DBroadcastManager.java390 int matchResult = in match() local
392 return matchResult != IntentFilter.NO_MATCH_TYPE in match()
393 && matchResult != IntentFilter.NO_MATCH_DATA; in match()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/
DGattService.java1880 MatchResult matchResult = matchesFilters(client, result, originalAddress); in onScanResultInternal() local
1881 if (!hasPermission || !matchResult.getMatches()) { in onScanResultInternal()
1884 + hasPermission + " matches=" + matchResult.getMatches()); in onScanResultInternal()