Searched refs:tagName (Results 1 – 10 of 10) sorted by relevance
/cts/libs/vogar-expect/src/vogar/ |
D | AnnotatedOutcome.java | 43 private final String tagName; field in AnnotatedOutcome 48 SortedMap<Long, Outcome> previousOutcomes, String tagName, Outcome tagOutcome, in AnnotatedOutcome() argument 56 this.tagName = tagName; in AnnotatedOutcome() 96 return tagName; in getTagName()
|
/cts/tools/utils/ |
D | rerun.py | 22 def getChildrenWithTag(parent, tagName): argument 25 if (child.nodeType == Node.ELEMENT_NODE) and (child.tagName == tagName):
|
D | CollectAllTests.java | 328 private static Element getElement(Element element, String tagName) { in getElement() argument 329 NodeList elements = element.getElementsByTagName(tagName); in getElement()
|
/cts/tests/tests/content/src/android/content/cts/util/ |
D | XmlUtils.java | 1348 final String tagName = parser.getName(); in readThisValueXml() local 1354 if (tagName.equals("null")) { in readThisValueXml() 1356 } else if (tagName.equals("string")) { in readThisValueXml() 1377 } else if ((res = readThisPrimitiveValueXml(parser, tagName)) != null) { in readThisValueXml() 1379 } else if (tagName.equals("int-array")) { in readThisValueXml() 1384 } else if (tagName.equals("long-array")) { in readThisValueXml() 1389 } else if (tagName.equals("double-array")) { in readThisValueXml() 1394 } else if (tagName.equals("string-array")) { in readThisValueXml() 1399 } else if (tagName.equals("boolean-array")) { in readThisValueXml() 1404 } else if (tagName.equals("map")) { in readThisValueXml() [all …]
|
/cts/tests/tests/widget/src/android/widget/cts/util/ |
D | XmlUtils.java | 1321 final String tagName = parser.getName(); in readThisValueXml() local 1327 if (tagName.equals("null")) { in readThisValueXml() 1329 } else if (tagName.equals("string")) { in readThisValueXml() 1350 } else if ((res = readThisPrimitiveValueXml(parser, tagName)) != null) { in readThisValueXml() 1352 } else if (tagName.equals("int-array")) { in readThisValueXml() 1357 } else if (tagName.equals("long-array")) { in readThisValueXml() 1362 } else if (tagName.equals("double-array")) { in readThisValueXml() 1367 } else if (tagName.equals("string-array")) { in readThisValueXml() 1372 } else if (tagName.equals("boolean-array")) { in readThisValueXml() 1377 } else if (tagName.equals("map")) { in readThisValueXml() [all …]
|
/cts/tests/tests/view/src/android/view/cts/util/ |
D | XmlUtils.java | 1320 final String tagName = parser.getName(); in readThisValueXml() local 1326 if (tagName.equals("null")) { in readThisValueXml() 1328 } else if (tagName.equals("string")) { in readThisValueXml() 1349 } else if ((res = readThisPrimitiveValueXml(parser, tagName)) != null) { in readThisValueXml() 1351 } else if (tagName.equals("int-array")) { in readThisValueXml() 1356 } else if (tagName.equals("long-array")) { in readThisValueXml() 1361 } else if (tagName.equals("double-array")) { in readThisValueXml() 1366 } else if (tagName.equals("string-array")) { in readThisValueXml() 1371 } else if (tagName.equals("boolean-array")) { in readThisValueXml() 1376 } else if (tagName.equals("map")) { in readThisValueXml() [all …]
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
D | TestLog.java | 145 public static boolean isTag(String tagName) { in isTag() argument 146 return TAG.equals(tagName); in isTag()
|
/cts/suite/cts/utils/ |
D | get_csv_report.py | 24 def getChildrenWithTag(parent, tagName): argument 27 if (child.nodeType == Node.ELEMENT_NODE) and (child.tagName == tagName):
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
D | PaintDrawableTest.java | 192 private void gotoTag(XmlResourceParser parser, String tagName) throws XmlPullParserException, in gotoTag() argument 200 if (name.equals(tagName)) { in gotoTag()
|
/cts/tests/tests/icu/tools/android/icu/cts/tools/ |
D | GenerateTestCaseXML.java | 240 private static Element appendElement(Element parent, String tagName) { in appendElement() argument 241 Element testCaseElement = parent.getOwnerDocument().createElement(tagName); in appendElement()
|