Home
last modified time | relevance | path

Searched refs:isMatch (Results 1 – 11 of 11) sorted by relevance

/packages/modules/OnDevicePersonalization/src/com/android/ondevicepersonalization/services/util/
DAllowListUtils.java44 .anyMatch(entityInAllowList -> isMatch( in isAllowListed()
76 return isMatch(pair[0], first, firstCertDigest) in isPairMatch()
77 && isMatch(pair[1], second, secondCertDigest); in isPairMatch()
80 private static boolean isMatch( in isMatch() method in AllowListUtils
/packages/modules/Bluetooth/service/tests/src/com/android/server/bluetooth/
DBluetoothShellCommandTest.java92 assertThat(enableCmd.isMatch(cmdName)).isTrue(); in enableCommand()
105 assertThat(disableCmd.isMatch(cmdName)).isTrue(); in disableCommand()
121 expect.that(waitCmd.isMatch(m)).isTrue(); in waitForStateCommand()
127 expect.that(waitCmd.isMatch(m)).isFalse(); in waitForStateCommand()
136 assertThrows(m, IllegalArgumentException.class, () -> waitCmd.isMatch(m)); in waitForStateCommand()
/packages/inputmethods/LeanbackIME/src/com/android/inputmethod/leanback/
DLeanbackKeyboardContainer.java653 if (isMatch(locale, LeanbackLocales.QWERTY_GB)) { in initKeyboards()
656 } else if (isMatch(locale, LeanbackLocales.QWERTY_IN)) { in initKeyboards()
659 } else if (isMatch(locale, LeanbackLocales.QWERTY_ES_EU)) { in initKeyboards()
662 } else if (isMatch(locale, LeanbackLocales.QWERTY_ES_US)) { in initKeyboards()
665 } else if (isMatch(locale, LeanbackLocales.QWERTY_AZ)) { in initKeyboards()
668 } else if (isMatch(locale, LeanbackLocales.QWERTY_CA)) { in initKeyboards()
671 } else if (isMatch(locale, LeanbackLocales.QWERTY_DA)) { in initKeyboards()
674 } else if (isMatch(locale, LeanbackLocales.QWERTY_ET)) { in initKeyboards()
677 } else if (isMatch(locale, LeanbackLocales.QWERTY_FI)) { in initKeyboards()
680 } else if (isMatch(locale, LeanbackLocales.QWERTY_NB)) { in initKeyboards()
[all …]
/packages/modules/Permission/tests/utils/safetycenter/java/com/android/safetycenter/testing/
DNotificationCharacteristics.kt64 private fun isMatch( in isMatch() method
89 return statusBarNotifications.zip(characteristics).all { isMatch(it.first, it.second) } in areMatching()
/packages/modules/Bluetooth/service/src/com/android/server/bluetooth/
DBluetoothShellCommand.java56 boolean isMatch(String cmd) { in isMatch() method in BluetoothShellCommand.BluetoothCommand
192 boolean isMatch(String cmd) { in isMatch() method in BluetoothShellCommand.WaitForAdapterState
222 if (!bt_cmd.isMatch(cmd)) continue; in onCommand()
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DLocaleUtils.java160 public static boolean isMatch(final int level) { in isMatch() method in LocaleUtils
/packages/apps/Dialer/java/com/android/dialer/phonenumberproto/
DDialerPhoneNumberUtil.java124 public boolean isMatch( in isMatch() method in DialerPhoneNumberUtil
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DBinaryDictionaryGetter.java175 if (LocaleUtils.isMatch(matchLevel)) { in getCachedWordLists()
/packages/apps/Dialer/java/com/android/dialer/calllog/database/
DCoalescer.java376 return dialerPhoneNumberUtil.isMatch(groupPhoneNumber, rowPhoneNumber); in meetsDialerPhoneNumberCriteria()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DDictionaryProvider.java392 if (!LocaleUtils.isMatch(matchLevel)) { in getDictionaryWordListsForLocale()
/packages/modules/OnDevicePersonalization/samples/odpsamplenetwork/src/main/java/com/example/odpsamplenetwork/
DSampleHandler.java235 private boolean isMatch(Ad ad, String requestKeyword) { in isMatch() method in SampleHandler
286 if (isMatch(ad, requestKeyword)) { in matchAds()