Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/peripheralprofile/
DPeripheralProfile.java177 …public void startElement(String namespaceURI, String localName, String qName, Attributes atts) thr… in startElement() argument
179 mProfileName = atts.getValue(kAttr_ProfileName); in startElement()
180 mProfileDescription = atts.getValue(kAttr_ProfileDescription); in startElement()
181 mProductName = atts.getValue(kAttr_Product); in startElement()
184 parseProfileAttributes(mOutputAttributes, localName, atts); in startElement()
187 parseProfileAttributes(mInputAttributes, localName, atts); in startElement()
190 parseProfileButtons(mButtonAttributes, localName, atts); in startElement()
DProfileManager.java121 …rtElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXExceptio… in startElement() argument
126 mParsingProfile.startElement(namespaceURI, localName, qName, atts); in startElement()
128 mParsingProfile.startElement(namespaceURI, localName, qName, atts); in startElement()
/cts/tests/tests/util/src/android/util/cts/
DXmlEncodingTest.java263 public void startElement(String uri, String localName, String name, Attributes atts) in startElement() argument
268 mVec.add(atts.getLength() + STR_EMPTY); in startElement()
269 for (int i = 0; i < atts.getLength(); i++) { in startElement()
270 mVec.add(atts.getLocalName(i)); in startElement()
271 mVec.add(atts.getValue(i)); in startElement()
DXmlTest.java185 public void startElement(String uri, String localName, String name, Attributes atts) in startElement() argument
190 mVec.add(atts.getLength() + STR_EMPTY); in startElement()
191 for (int i = 0; i < atts.getLength(); i++) { in startElement()
192 mVec.add(atts.getLocalName(i)); in startElement()
193 mVec.add(atts.getValue(i)); in startElement()