/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipPixelTest.java | 196 testParse(null, BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseNull_throwsException() 201 testParse("", BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseEmpty_throwsException() 206 testParse("\n\t ", BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseWhitespace_throwsException() 211 testParse("this*has-characters*init", BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseBadCharacters_throwsException() 216 testParse("123*****456", BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseTooManyAsterisks_throwsException() 221 testParse("!@#*342", BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseWithSymbols_throwsException() 226 testParse("\\\\*\\\\-\\\\*\\\\", BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseEscapeCharacters_throwsException() 231 testParse("123456*123", BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseWidthTooLargeFixed_throwsException() 236 testParse("123*123456", BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseHeightTooLargeFixed_throwsException() 241 testParse("123456*1-12*1234", BipPixel.TYPE_UNKNOWN, -1, -1, -1, -1, null); in testParseMinWidthTooLargeResize_throwsException() [all …]
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | WifiDataStallTest.java | 331 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyDataStallTxFailureInternal() 391 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyNoDataStallTxFailureWhenTxTputIsHigh() 398 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyNoDataStallTxFailureWhenTxTputIsHigh() 416 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyNoDataStallWhenTxFailureIsNotConsecutive() 426 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyNoDataStallWhenTxFailureIsNotConsecutive() 446 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyDataStallRxFailure() 475 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyNoDataStallTrafficLow() 482 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyNoDataStallTrafficLow() 500 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyDataStallBothTxRxFailure() 531 assertEquals(WifiIsUnusableEvent.TYPE_UNKNOWN, mWifiDataStall in verifyDataStallBothTxRxFailure() [all …]
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/bip/ |
D | BipPixel.java | 58 public static final int TYPE_UNKNOWN = 0; field in BipPixel 108 int type = TYPE_UNKNOWN; in BipPixel() 153 if (type == TYPE_UNKNOWN) { in BipPixel() 200 if (pixel == null || pixel.length() > 23) return TYPE_UNKNOWN; in determinePixelType() 207 return delimCount > 0 && delimCount <= 3 ? delimCount : TYPE_UNKNOWN; in determinePixelType()
|
D | BipImageFormat.java | 200 || mPixel.getType() == BipPixel.TYPE_UNKNOWN) { in toString()
|
/packages/modules/Connectivity/tests/unit/java/android/net/ |
D | MacAddressTest.java | 60 AddrTypeTestCase.of(MacAddress.TYPE_UNKNOWN), in testMacAddrTypes() 61 AddrTypeTestCase.of(MacAddress.TYPE_UNKNOWN, 0), in testMacAddrTypes() 62 AddrTypeTestCase.of(MacAddress.TYPE_UNKNOWN, 1, 2, 3, 4, 5), in testMacAddrTypes() 63 AddrTypeTestCase.of(MacAddress.TYPE_UNKNOWN, 1, 2, 3, 4, 5, 6, 7), in testMacAddrTypes() 77 if (got != MacAddress.TYPE_UNKNOWN) { in testMacAddrTypes()
|
/packages/modules/Nfc/framework/java/android/nfc/tech/ |
D | MifareUltralight.java | 65 public static final int TYPE_UNKNOWN = -1; field in MifareUltralight 109 mType = TYPE_UNKNOWN; in MifareUltralight()
|
D | NfcBarcode.java | 33 public static final int TYPE_UNKNOWN = -1; field in NfcBarcode
|
D | MifareClassic.java | 95 public static final int TYPE_UNKNOWN = -1; field in MifareClassic
|
/packages/apps/Settings/src/com/android/settings/network/helper/ |
D | SubscriptionAnnotation.java | 37 private int mType = TYPE_UNKNOWN; 42 public static final int TYPE_UNKNOWN = 0x0; field in SubscriptionAnnotation
|
/packages/modules/Connectivity/framework/src/android/net/ |
D | MacAddress.java | 68 TYPE_UNKNOWN, 76 public static final int TYPE_UNKNOWN = 0; field in MacAddress 215 return TYPE_UNKNOWN; in macAddressType()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiDataStall.java | 401 return WifiIsUnusableEvent.TYPE_UNKNOWN; in checkDataStallAndThroughputSufficiency() 435 return WifiIsUnusableEvent.TYPE_UNKNOWN; in checkDataStallAndThroughputSufficiency() 520 return WifiIsUnusableEvent.TYPE_UNKNOWN; in detectConsecutiveTwoDataStalls() 559 return WifiIsUnusableEvent.TYPE_UNKNOWN; in detectConsecutiveTwoDataStalls() 575 int result = WifiIsUnusableEvent.TYPE_UNKNOWN; in calculateUsabilityEventType()
|
/packages/modules/Nfc/framework/tests/src/android/nfc/tech/ |
D | NfcBarcodeTest.java | 21 import static android.nfc.tech.NfcBarcode.TYPE_UNKNOWN; 102 when(mMockBundle.getInt(EXTRA_BARCODE_TYPE)).thenReturn(TYPE_UNKNOWN); in testGetBarCodeTypeUnknown()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/biometrics/face/ |
D | FaceSettingsFooterPreferenceControllerTest.java | 136 FaceSensorProperties.TYPE_UNKNOWN, in testString_faceNotClass3() 163 FaceSensorProperties.TYPE_UNKNOWN, in testString_faceClass3()
|
D | FaceEnrollIntroductionTest.java | 366 FaceSensorProperties.TYPE_UNKNOWN, in testFaceEnrollIntroduction_hasDescription_weakFace() 397 FaceSensorProperties.TYPE_UNKNOWN, in testFaceEnrollIntroduction_hasDescriptionNoLessSecure_strongFace()
|
/packages/apps/DocumentsUI/src/com/android/documentsui/ |
D | MetricConsts.java | 365 public static final int TYPE_UNKNOWN = 0; field in MetricConsts 376 TYPE_UNKNOWN,
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/hfp/ |
D | AtPhonebook.java | 101 static final int TYPE_UNKNOWN = -1; field in AtPhonebook 202 case TYPE_UNKNOWN: in handleCscsCommand() 273 case TYPE_UNKNOWN: in handleCpbsCommand() 388 case TYPE_UNKNOWN: in handleCpbrCommand()
|
D | HeadsetStateMachine.java | 1946 int commandType = AtPhonebook.TYPE_UNKNOWN; in getAtCommandType() 1958 commandType = AtPhonebook.TYPE_UNKNOWN; in getAtCommandType()
|
/packages/apps/Settings/src/com/android/settings/notification/modes/ |
D | SetupInterstitialActivity.java | 27 import static android.app.AutomaticZenRule.TYPE_UNKNOWN; 179 case TYPE_UNKNOWN -> R.drawable.modes_interstitial_unknown;
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/hfp/ |
D | AtPhonebookTest.java | 135 mAtPhonebook.handleCscsCommand(INVALID_COMMAND, AtPhonebook.TYPE_UNKNOWN, mDevice); in handleCscsCommand() 173 mAtPhonebook.handleCpbsCommand(INVALID_COMMAND, AtPhonebook.TYPE_UNKNOWN, mDevice); in handleCpbsCommand() 204 mAtPhonebook.handleCpbrCommand(INVALID_COMMAND, AtPhonebook.TYPE_UNKNOWN, mDevice); in handleCpbrCommand()
|
/packages/modules/AppSearch/service/java/com/android/server/appsearch/contactsindexer/appsearchtypes/ |
D | Person.java | 55 TYPE_UNKNOWN, 62 public static final int TYPE_UNKNOWN = 0; field in Person
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/ |
D | UtilsTest.java | 478 FaceSensorProperties.TYPE_UNKNOWN, in isFaceNotConvenienceBiometric_faceStrengthStrong_shouldReturnTrue() 497 FaceSensorProperties.TYPE_UNKNOWN, in isFaceNotConvenienceBiometric_faceStrengthWeak_shouldReturnTrue() 516 FaceSensorProperties.TYPE_UNKNOWN, in isFaceNotConvenienceBiometric_faceStrengthConvenience_shouldReturnFalse()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcpcontroller/ |
D | AvrcpPlayer.java | 36 public static final int TYPE_UNKNOWN = -1; field in AvrcpPlayer
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/registration/ |
D | FetcherUtil.java | 727 return RegistrationEnumsValues.TYPE_UNKNOWN; in getRegistrationType() 802 int TYPE_UNKNOWN = 0; field
|
/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/ |
D | PersonBuilderHelperTest.java | 172 .addAdditionalName(Person.TYPE_UNKNOWN, additionalNames.get(0)) in testFingerprintGeneration_forEachPropertyType_stringArray()
|
/packages/modules/Nfc/framework/api/ |
D | current.txt | 374 field public static final int TYPE_UNKNOWN = -1; // 0xffffffff 393 field public static final int TYPE_UNKNOWN = -1; // 0xffffffff 462 field public static final int TYPE_UNKNOWN = -1; // 0xffffffff
|