Home
last modified time | relevance | path

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

/cts/tests/tests/content/src/android/content/cts/util/
DXmlUtils.java1348 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/view/src/android/view/cts/util/
DXmlUtils.java1320 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/tests/tests/widget/src/android/widget/cts/util/
DXmlUtils.java1321 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/tools/utils/
Drerun.py22 def getChildrenWithTag(parent, tagName): argument
25 if (child.nodeType == Node.ELEMENT_NODE) and (child.tagName == tagName):
/cts/suite/cts/utils/
Dget_csv_report.py24 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/
DPaintDrawableTest.java214 private void gotoTag(XmlResourceParser parser, String tagName) throws XmlPullParserException, in gotoTag() argument
222 if (name.equals(tagName)) { in gotoTag()