Home
last modified time | relevance | path

Searched refs:propertyValue (Results 1 – 2 of 2) 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/devicepolicy/src/com/android/cts/devicepolicy/
DBaseDevicePolicyTest.java491 String propertyValue = getDevice().getProperty(key); in getBooleanSystemProperty() local
492 if (propertyValue == null || propertyValue.isEmpty()) { in getBooleanSystemProperty()
495 if (Arrays.asList(positiveValues).contains(propertyValue)) { in getBooleanSystemProperty()
498 if (Arrays.asList(negativeValues).contains(propertyValue)) { in getBooleanSystemProperty()
501 fail("Unexpected value of boolean system property '" + key + "': " + propertyValue); in getBooleanSystemProperty()