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.java123 …rtElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXExceptio… in startElement() argument
128 mParsingProfile.startElement(namespaceURI, localName, qName, atts); in startElement()
130 mParsingProfile.startElement(namespaceURI, localName, qName, atts); in startElement()
/cts/tests/tests/util/src/android/util/cts/
DXmlEncodingTest.java257 public void startElement(String uri, String localName, String name, Attributes atts) in startElement() argument
262 mVec.add(atts.getLength() + STR_EMPTY); in startElement()
263 for (int i = 0; i < atts.getLength(); i++) { in startElement()
264 mVec.add(atts.getLocalName(i)); in startElement()
265 mVec.add(atts.getValue(i)); in startElement()
DXmlTest.java175 public void startElement(String uri, String localName, String name, Attributes atts) in startElement() argument
180 mVec.add(atts.getLength() + STR_EMPTY); in startElement()
181 for (int i = 0; i < atts.getLength(); i++) { in startElement()
182 mVec.add(atts.getLocalName(i)); in startElement()
183 mVec.add(atts.getValue(i)); in startElement()