Home
last modified time | relevance | path

Searched defs:matches (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDeviceFilter.java36 boolean matches(BluetoothDevice device); in matches() method
79 public boolean matches(BluetoothDevice device) { in matches() method in BluetoothDeviceFilter.AllFilter
86 public boolean matches(BluetoothDevice device) { in matches() method in BluetoothDeviceFilter.BondedDeviceFilter
93 public boolean matches(BluetoothDevice device) { in matches() method in BluetoothDeviceFilter.UnbondedDeviceFilter
100 abstract boolean matches(ParcelUuid[] uuids, BluetoothClass btClass); in matches() method in BluetoothDeviceFilter.ClassUuidFilter
102 public boolean matches(BluetoothDevice device) { in matches() method in BluetoothDeviceFilter.ClassUuidFilter
110 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { in matches() method in BluetoothDeviceFilter.AudioFilter
131 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { in matches() method in BluetoothDeviceFilter.TransferFilter
145 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { in matches() method in BluetoothDeviceFilter.PanuFilter
159 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { in matches() method in BluetoothDeviceFilter.NapFilter
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DResolveCache.java136 final List<ResolveInfo> matches = mPackageManager.queryIntentActivities(intent, in getEntry() local
169 protected ResolveInfo getBestResolve(Intent intent, List<ResolveInfo> matches) { in getBestResolve()
/packages/apps/Launcher2/src/com/android/launcher2/
DAllAppsList.java90 final List<ResolveInfo> matches = findActivitiesForPackage(context, packageName); in addPackage() local
120 final List<ResolveInfo> matches = findActivitiesForPackage(context, packageName); in updatePackage() local
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DNameDistance.java110 int matches = 0; in getDistance() local
DContactMatcher.java437 List<MatchScore> matches = mScoreList.subList(0, mScoreCount); in pickBestMatches() local
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
DExternalSource.java98 final List<ResolveInfo> matches = pm.queryIntentServices(syncAdapter, in inflate() local
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DLevenshteinSuggestionFormatter.java45 final int[] matches = findMatches(queryTokens, suggestionTokens); in formatSuggestion() local
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DLocalMergeAlbum.java75 ArrayList<MediaSet> matches = new ArrayList<MediaSet>(); in updateData() local
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
DLevenshteinFormatterTest.java97 int[] matches = mFormatter.findMatches(sourceTokens, targetTokens); in verifyFindMatches() local
/packages/apps/Nfc/src/com/android/nfc/
DNfcDispatcher.java379 ArrayList<ResolveInfo> matches = new ArrayList<ResolveInfo>(); in tryTech() local
/packages/apps/Calendar/tests/src/com/android/calendar/
DUtilsTests.java365 private static void findPhoneNumber(String text, String[] matches) { in findPhoneNumber()