Home
last modified time | relevance | path

Searched refs:localName (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationXmlParser.java99 public void startElement(String uri, String localName, String name, Attributes attributes) in startElement() argument
101 if (OBJECT_TAG.equals(localName)) { in startElement()
113 } else if (DEVICE_TAG.equals(localName)) { in startElement()
136 addObject(localName, attributes); in startElement()
137 } else if (Configuration.isBuiltInObjType(localName)) { in startElement()
144 localName)); in startElement()
148 Configuration.doesBuiltInObjSupportMultiDevice(localName)) { in startElement()
151 mOutsideTag.add(localName); in startElement()
155 if (!Configuration.doesBuiltInObjSupportMultiDevice(localName)) { in startElement()
159 localName))); in startElement()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/util/net/
DXmlRpcHelper.java172 public void startElement(String uri, String localName, String name, Attributes attributes) in startElement() argument
174 if (!mInParams && !PARAMS_TAG.equals(localName)) { in startElement()
177 } else if (PARAMS_TAG.equals(localName)) { in startElement()
180 } else if (VALUE_TAG.equals(localName) || PARAM_TAG.equals(localName)) { in startElement()
186 mType = localName; in startElement()
191 public void endElement(String uri, String localName, String qName) { in endElement() argument
192 if (PARAMS_TAG.equals(localName)) { in endElement()
194 } else if (VALUE_TAG.equals(localName) || PARAM_TAG.equals(localName)) { in endElement()
197 } else if (mType != null && mType.equals(localName)) { in endElement()
/tools/tradefederation/core/src/com/android/tradefed/testtype/testdefs/
DXmlDefsParser.java45 public void startElement(String uri, String localName, String name, Attributes attributes) in startElement() argument
47 if (TEST_TAG.equals(localName)) { in startElement()
/tools/tradefederation/core/src/com/android/tradefed/util/
DMetricsXmlParser.java81 public void startElement(String uri, String localName, String name, Attributes attributes) in startElement() argument