Home
last modified time | relevance | path

Searched refs:matchResult (Results 1 – 1 of 1) 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()