Home
last modified time | relevance | path

Searched refs:isDefined (Results 1 – 5 of 5) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/internal/property/
DVehiclePropertyIdDebugUtilsUnitTest.java63 assertThat(VehiclePropertyIdDebugUtils.isDefined(VehiclePropertyIds.ABS_ACTIVE)).isTrue(); in testIsDefined()
64 assertThat(VehiclePropertyIdDebugUtils.isDefined( in testIsDefined()
66 assertThat(VehiclePropertyIdDebugUtils.isDefined(-1)).isFalse(); in testIsDefined()
/packages/services/Car/car-lib/src/com/android/car/internal/property/
DVehiclePropertyIdDebugUtils.java62 if (isDefined(propertyId)) { in toDebugString()
76 public static boolean isDefined(int propertyId) { in isDefined() method in VehiclePropertyIdDebugUtils
DCarPropertyHelper.java21 import static com.android.car.internal.property.VehiclePropertyIdDebugUtils.isDefined;
90 return propertyId != VehiclePropertyIds.INVALID && isDefined(propertyId); in isSystemProperty()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
DKeyCodeDescriptionMapper.java122 final boolean isDefinedNonCtrl = Character.isDefined(code) in getDescriptionForKey()
285 if (Character.isDefined(codePoint) && !Character.isISOControl(codePoint)) { in getDescriptionForCodePoint()
/packages/services/Car/car-lib/src/android/car/
DVehiclePropertyIds.java23 import static com.android.car.internal.property.VehiclePropertyIdDebugUtils.isDefined;
7537 return isDefined(propertyId) ? toName(propertyId) : "0x" + Integer.toHexString(propertyId); in toString()