Home | History | Annotate | Download | only in nfc

Lines Matching refs:matches

364         ArrayList<ResolveInfo> matches = new ArrayList<ResolveInfo>();
367 // Check each registered activity to see if it matches
373 if (!matches.contains(info.resolveInfo)) {
374 matches.add(info.resolveInfo);
379 if (matches.size() == 1) {
381 ResolveInfo info = matches.get(0);
388 } else if (matches.size() > 1) {
389 // Multiple matches, show a custom activity chooser dialog
393 matches);
416 /** Returns true if the tech list filter matches the techs on the tag */