Searched refs:propertyValue (Results 1 – 5 of 5) sorted by relevance
/cts/tests/tests/car/src/android/car/cts/ |
D | CarPropertyValueTest.java | 61 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetPropertyId() 62 int propId = propertyValue.getPropertyId(); in testGetPropertyId() 70 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetPropertyAreaId() 71 int areaId = propertyValue.getAreaId(); in testGetPropertyAreaId() 72 CarPropertyConfig cfg = mPropIdToConfig.get(propertyValue.getPropertyId()); in testGetPropertyAreaId() 87 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetPropertyTimestamp() 88 propertyValue.getTimestamp(); in testGetPropertyTimestamp() 98 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetPropertyStatus() 99 int status = propertyValue.getStatus(); in testGetPropertyStatus() 106 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetValue() [all …]
|
/cts/hostsidetests/hdmicec/src/android/hdmicec/cts/ |
D | RequiredPropertyRule.java | 61 final String propertyName, final String propertyValue) { 69 assumeTrue("Required property " + propertyName + " = " + propertyValue 72 deviceProperty.equals(propertyValue)); 81 final String propertyName, final String propertyValue) { 93 "Required property " + propertyName + " = " + propertyValue 96 deviceProperties.contains(propertyValue)); 105 final BaseHostJUnit4Test test, final String propertyName, final String propertyValue) { 121 + propertyValue 126 deviceProperties.contains(propertyValue));
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
D | PackageManagerQueryPropertyTest.java | 391 String packageName, String className, int propertyType, Object propertyValue) { in assertProperty() argument 406 final Boolean boolValue = (Boolean) propertyValue; in assertProperty() 425 final Float floatValue = (Float) propertyValue; in assertProperty() 440 final Integer integerValue = (Integer) propertyValue; in assertProperty() 455 final Integer resourceValue = (Integer) propertyValue; in assertProperty() 470 final String stringValue = (String) propertyValue; in assertProperty() 483 String packageName, String className, int propertyType, Object propertyValue) { in assertProperty() argument 489 propertyValue); in assertProperty()
|
D | PackageManagerGetPropertyTest.java | 389 String packageName, String className, int propertyType, Object propertyValue) in assertProperty() argument 405 final Boolean boolValue = (Boolean) propertyValue; in assertProperty() 424 final Float floatValue = (Float) propertyValue; in assertProperty() 439 final Integer integerValue = (Integer) propertyValue; in assertProperty() 454 final Integer resourceValue = (Integer) propertyValue; in assertProperty() 469 final String stringValue = (String) propertyValue; in assertProperty()
|
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/ |
D | BaseDevicePolicyTest.java | 617 String propertyValue = getDevice().getProperty(key); in getBooleanSystemProperty() local 618 if (propertyValue == null || propertyValue.isEmpty()) { in getBooleanSystemProperty() 621 if (Arrays.asList(positiveValues).contains(propertyValue)) { in getBooleanSystemProperty() 624 if (Arrays.asList(negativeValues).contains(propertyValue)) { in getBooleanSystemProperty() 627 fail("Unexpected value of boolean system property '" + key + "': " + propertyValue); in getBooleanSystemProperty()
|