Home
last modified time | relevance | path

Searched refs:valueName (Results 1 – 6 of 6) sorted by relevance

/cts/common/device-side/bedstead/nene/src/main/java/com/android/bedstead/nene/utils/
DPoll.java70 (valueName, value) -> "Expected "
71 + valueName + " to meet checker function. Was " + value;
75 private Poll(String valueName, ValueSupplier<E> supplier) { in Poll() argument
76 mValueName = valueName; in Poll()
96 public static <E> Poll<E> forValue(String valueName, ValueSupplier<E> supplier) { in forValue() argument
97 return new Poll<>(valueName, supplier); in forValue()
103 softErrorOnFail((valueName, value) -> in toBeNull()
104 "Expected " + valueName + " to be null. Was " + value); in toBeNull()
111 softErrorOnFail((valueName, value) -> in toNotBeNull()
112 "Expected " + valueName + " to not be null. Was " + value); in toNotBeNull()
[all …]
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
DPreconditions.java139 final String valueName) { in checkCollectionElementsNotNull() argument
141 throw new NullPointerException(valueName + " must not be null"); in checkCollectionElementsNotNull()
148 String.format("%s[%d] must not be null", valueName, ctr)); in checkCollectionElementsNotNull()
168 final String valueName) { in checkCollectionNotEmpty() argument
170 throw new NullPointerException(valueName + " must not be null"); in checkCollectionNotEmpty()
173 throw new IllegalArgumentException(valueName + " is empty"); in checkCollectionNotEmpty()
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DCurrentXmlHandler.java149 private static boolean is(Attributes attributes, String valueName) { in is() argument
150 return "true".equals(attributes.getValue(valueName)); in is()
/cts/tests/tests/widget/src/android/widget/cts/util/
DXmlUtils.java1320 final String valueName = parser.getAttributeValue(null, "name"); in readThisValueXml() local
1335 name[0] = valueName; in readThisValueXml()
1354 name[0] = valueName; in readThisValueXml()
1359 name[0] = valueName; in readThisValueXml()
1364 name[0] = valueName; in readThisValueXml()
1369 name[0] = valueName; in readThisValueXml()
1374 name[0] = valueName; in readThisValueXml()
1382 name[0] = valueName; in readThisValueXml()
1388 name[0] = valueName; in readThisValueXml()
1394 name[0] = valueName; in readThisValueXml()
[all …]
/cts/tests/tests/view/src/android/view/cts/util/
DXmlUtils.java1319 final String valueName = parser.getAttributeValue(null, "name"); in readThisValueXml() local
1334 name[0] = valueName; in readThisValueXml()
1353 name[0] = valueName; in readThisValueXml()
1358 name[0] = valueName; in readThisValueXml()
1363 name[0] = valueName; in readThisValueXml()
1368 name[0] = valueName; in readThisValueXml()
1373 name[0] = valueName; in readThisValueXml()
1381 name[0] = valueName; in readThisValueXml()
1387 name[0] = valueName; in readThisValueXml()
1393 name[0] = valueName; in readThisValueXml()
[all …]
/cts/common/device-side/bedstead/dpmwrapper/src/main/java/com/android/bedstead/dpmwrapper/
DDataFormatter.java374 String type, String valueName, Object value) { in logMarshalling() argument
377 + ", valueName=" + valueName + ", value=" + value); in logMarshalling()