Home
last modified time | relevance | path

Searched refs:getAttribute (Results 1 – 14 of 14) sorted by relevance

/cts/suite/cts/utils/
Dget_csv_report.py61 cases.update(parseSuite(child, parentName + child.getAttribute("name")))
64 className = parentName + child.getAttribute("name")
66 methodName = test.getAttribute("name")
71 result = str(test.getAttribute("result"))
78 summary[sts[0].getAttribute("message")] = getText(sts[0])
83 details[d.getAttribute("message")] = values
101 buildId = buildInfo.getAttribute("buildID")
102 deviceId = buildInfo.getAttribute("deviceID")
103 deviceName = buildInfo.getAttribute("build_device")
104 boardName = buildInfo.getAttribute("build_board")
[all …]
/cts/tools/utils/
Drerun.py37 for failure in parseSuite(child, parentName + child.getAttribute("name")):
41 className = parentName + child.getAttribute("name")
43 if test.getAttribute("result") != "pass":
44 failureName = className + "#" + test.getAttribute("name")
Dandroid_api_description_splitter.py123 … filename = os.path.join(self.out, elem.getAttribute("name").replace(".", "_").lower() + ".xml")
DCollectAllTests.java125 documentElement.getAttribute("package"); in main()
129 final String packageName = documentElement.getAttribute("package"); in main()
342 return e.getAttribute(attributeName); in getElementAttribute()
DDescriptionGenerator.java332 String newName = getAttribute(suiteElem, ATTRIBUTE_NAME) + "." in mergeEmptySuites()
333 + getAttribute(child, ATTRIBUTE_NAME); in mergeEmptySuites()
476 private String getAttribute(Node elem, String name) { in getAttribute() method in DescriptionGenerator.XMLGenerator
/cts/tests/tests/media/src/android/media/cts/
DExifInterfaceTest.java221 String tagValue = exifInterface.getAttribute(tagKey); in printExifTagsAndValues()
237 String stringValue = exifInterface.getAttribute(tag); in assertStringTag()
348 String backupValue = exifInterface.getAttribute(ExifInterface.TAG_MAKE); in testSaveAttributes_withFileName()
352 assertEquals("abc", exifInterface.getAttribute(ExifInterface.TAG_MAKE)); in testSaveAttributes_withFileName()
375 String backupValue = exifInterface.getAttribute(ExifInterface.TAG_MAKE); in testSaveAttributes_withFileDescriptor()
380 assertEquals("abc", exifInterface.getAttribute(ExifInterface.TAG_MAKE)); in testSaveAttributes_withFileDescriptor()
503 assertEquals(dateTimeValue, exif.getAttribute(ExifInterface.TAG_DATETIME)); in testSetDateTime()
504 assertEquals(dateTimeOriginalValue, exif.getAttribute(ExifInterface.TAG_DATETIME_ORIGINAL)); in testSetDateTime()
512 assertEquals(dateTimeOriginalValue, exif.getAttribute(ExifInterface.TAG_DATETIME)); in testSetDateTime()
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DCurrentApiHelper.java92 String name = element.getAttribute(ATTRIBUTE_NAME); in getPublicApis()
140 if (childName.equals(el.getAttribute(ATTRIBUTE_NAME))) { in getChildElementByName()
154 String typeName = ((Element) nodes.item(i)).getAttribute(ATTRIBUTE_TYPE); in getParamTypes()
/cts/tests/tests/drm/src/android/drm/cts/
DDrmEventTest.java169 assertNull(event.getAttribute(key)); in checkGetAttributeWithEventType()
171 assertEquals(event.getAttribute(key), attributes.get(key)); in checkGetAttributeWithEventType()
DDRMTest.java315 = (DrmInfoStatus) event.getAttribute(DrmEvent.DRM_INFO_STATUS_OBJECT); in onEvent()
/cts/tests/camera/src/android/hardware/cts/
DCameraTest.java930 String datetime = exif.getAttribute(ExifInterface.TAG_DATETIME); in testJpegExifByCamera()
1001 String exposureTime = exif.getAttribute(ExifInterface.TAG_EXPOSURE_TIME); in checkExtraExifTagsSucceeds()
1012 String aperture = exif.getAttribute(ExifInterface.TAG_APERTURE); in checkExtraExifTagsSucceeds()
1022 String flash = exif.getAttribute(ExifInterface.TAG_FLASH); in checkExtraExifTagsSucceeds()
1027 String whiteBalance = exif.getAttribute(ExifInterface.TAG_WHITE_BALANCE); in checkExtraExifTagsSucceeds()
1032 String make = exif.getAttribute(ExifInterface.TAG_MAKE); in checkExtraExifTagsSucceeds()
1042 String model = exif.getAttribute(ExifInterface.TAG_MODEL); in checkExtraExifTagsSucceeds()
1057 String digitizedTime = exif.getAttribute(TAG_DATETIME_DIGITIZED); in checkExtraExifTagsSucceeds()
1060 String datetime = exif.getAttribute(ExifInterface.TAG_DATETIME); in checkExtraExifTagsSucceeds()
1151 assertNotNull(exif.getAttribute(ExifInterface.TAG_GPS_LATITUDE)); in testGpsExifValues()
[all …]
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java2245 String dateTime = exif.getAttribute(ExifInterface.TAG_DATETIME); in verifyJpegExifExtraTags()
2275 String exposureTime = exif.getAttribute(ExifInterface.TAG_EXPOSURE_TIME); in verifyJpegExifExtraTags()
2291 String exifAperture = exif.getAttribute(ExifInterface.TAG_APERTURE); in verifyJpegExifExtraTags()
2308 String make = exif.getAttribute(ExifInterface.TAG_MAKE); in verifyJpegExifExtraTags()
2312 String model = exif.getAttribute(ExifInterface.TAG_MODEL); in verifyJpegExifExtraTags()
2336 String make = exif.getAttribute(ExifInterface.TAG_MAKE); in verifyJpegExifExtraTags()
2340 String model = exif.getAttribute(ExifInterface.TAG_MODEL); in verifyJpegExifExtraTags()
2349 String flash = exif.getAttribute(ExifInterface.TAG_FLASH); in verifyJpegExifExtraTags()
2356 String whiteBalance = exif.getAttribute(ExifInterface.TAG_WHITE_BALANCE); in verifyJpegExifExtraTags()
2360 String digitizedTime = exif.getAttribute(ExifInterface.TAG_DATETIME_DIGITIZED); in verifyJpegExifExtraTags()
[all …]
/cts/tools/utils/cts/
Dtools.py250 return element.getAttribute(attr_name)
/cts/tests/camera/src/android/hardware/camera2/cts/
DDngCreatorTest.java300 exifInterface.getAttribute(ExifInterface.TAG_GPS_DATESTAMP)); in testSingleImageThumbnail()
302 exifInterface.getAttribute(ExifInterface.TAG_GPS_TIMESTAMP)); in testSingleImageThumbnail()
315 exifInterface.getAttribute(ExifInterface.TAG_DATETIME); in testSingleImageThumbnail()
/cts/tests/tests/provider/src/android/provider/cts/
DMediaStoreUiTest.java240 final String res = exif.getAttribute(tag); in assertAttribute()