Home
last modified time | relevance | path

Searched refs:propertyValue (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/car/src/android/car/cts/
DCarPropertyValueTest.java56 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetPropertyId()
57 int propId = propertyValue.getPropertyId(); in testGetPropertyId()
65 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetPropertyAreaId()
66 int areaId = propertyValue.getAreaId(); in testGetPropertyAreaId()
67 CarPropertyConfig cfg = mPropIdToConfig.get(propertyValue.getPropertyId()); in testGetPropertyAreaId()
82 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetPropertyTimestamp()
83 propertyValue.getTimestamp(); in testGetPropertyTimestamp()
93 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetPropertyStatus()
94 int status = propertyValue.getStatus(); in testGetPropertyStatus()
101 for (CarPropertyValue propertyValue : mCarPropertyValues) { in testGetValue()
[all …]
/cts/hostsidetests/hdmicec/src/android/hdmicec/cts/
DRequiredPropertyRule.java60 final String propertyName, final String propertyValue) {
68 assumeTrue("Required property " + propertyName + " = " + propertyValue
71 deviceProperty.equals(propertyValue));
80 final String propertyName, final String propertyValue) {
92 "Required property " + propertyName + " = " + propertyValue
95 deviceProperties.contains(propertyValue));
/cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DBaseDevicePolicyTest.java558 String propertyValue = getDevice().getProperty(key); in getBooleanSystemProperty() local
559 if (propertyValue == null || propertyValue.isEmpty()) { in getBooleanSystemProperty()
562 if (Arrays.asList(positiveValues).contains(propertyValue)) { in getBooleanSystemProperty()
565 if (Arrays.asList(negativeValues).contains(propertyValue)) { in getBooleanSystemProperty()
568 fail("Unexpected value of boolean system property '" + key + "': " + propertyValue); in getBooleanSystemProperty()