HomeSort by relevance Sort by last modified time
    Searched refs:atts (Results 26 - 50 of 207) sorted by null

12 3 4 5 6 7 8 9

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
ElementParser.java 92 String qName, Attributes atts) {
94 add(atts.getValue("id"), plugins);
96 add(atts.getValue("id")+"-feature", features);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BatteryMeterView.java 48 TypedArray atts = context.obtainStyledAttributes(attrs, R.styleable.BatteryMeterView, local
50 final int frameColor = atts.getColor(R.styleable.BatteryMeterView_frameColor,
53 atts.recycle();
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
XMLWriter.java 570 * @param atts The element's attribute list (must not be null).
577 String qName, Attributes atts)
585 writeAttributes(atts);
596 super.startElement(uri, localName, qName, atts);
745 * @param atts The element's attribute list.
753 String qName, Attributes atts)
759 writeAttributes(atts);
765 super.startElement(uri, localName, qName, atts);
925 * @param atts The element's attributes.
935 String qName, Attributes atts,
    [all...]
Element.java 39 if (defaultAttributes) theAtts = new AttributesImpl(type.atts());
58 public AttributesImpl atts() { return theAtts; } method in class:Element
PYXWriter.java 177 Attributes atts) throws SAXException {
181 int length = atts.getLength();
183 qname = atts.getQName(i);
184 if (qname.length() == 0) qname = atts.getLocalName(i);
186 // theWriter.print(atts.getType(i)); // DEBUG
189 theWriter.println(atts.getValue(i));
  /external/expat/examples/
elements.c 26 startElement(void *userData, const char *name, const char **atts)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockHandler.java 97 public void startElement(String name, AttributeList atts) throws SAXException {
98 logger.add("startElement", name, atts);
101 public void startElement(String uri, String localName, String name, Attributes atts)
103 logger.add("startElement", uri, localName, name, atts);
  /libcore/luni/src/main/java/org/xml/sax/
ContentHandler.java 247 * @param atts the attributes attached to the element. If
258 String qName, Attributes atts)
  /hardware/intel/common/utils/media_resource_manager/arbitrator/
MediaResourceArbitrator.h 138 static void startElement(void *userData, const char *name, const char **atts);
140 void getConfigData(const char *name, const char **atts);
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 131 ArrayList<Attachment> atts = new ArrayList<Attachment>(); local
133 atts.add(att1);
135 atts.add(att2);
136 msg1.mAttachments = atts;
140 atts.clear();
142 atts.add(att3);
144 atts.add(att4);
145 msg2.mAttachments = atts;
  /external/libxml2/
testHTML.c 369 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts)
374 if (atts != NULL) {
375 for (i = 0;(atts[i] != NULL);i++) {
376 fprintf(stdout, ", %s", atts[i++]);
377 if (atts[i] != NULL) {
379 const unsigned char *att = atts[i];
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 320 NamedNodeMap atts = elem_node.getAttributes(); local
321 int nAttrs = atts.getLength();
329 final Node attr = atts.item(i);
362 new AttList(atts, m_dh));
469 NamedNodeMap atts = elem_node.getAttributes(); local
470 int nAttrs = atts.getLength();
476 final Node attr = atts.item(i);
ToUnknownStream.java 460 Attributes atts) throws SAXException
473 m_handler.startElement(namespaceURI, localName, elementName, atts);
504 if (atts != null)
505 super.addAttributes(atts);
510 if (atts != null)
519 m_handler.startElement(namespaceURI, localName, elementName, atts);
    [all...]
ExtendedContentHandler.java 33 * startElement(namespaceURI,localName,qName,atts)
38 * addAttributes(atts)
69 * @param atts the attributes to add.
72 public void addAttributes(org.xml.sax.Attributes atts)
116 * startElement(uri,localName,qname,atts)
ToXMLSAXHandler.java 643 Attributes atts)
647 super.startElement(namespaceURI, localName, name, atts);
672 if (atts != null)
673 addAttributes(atts);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 314 * @param atts The attributes attached to the element, if any.
319 String ns, String localName, String name, Attributes atts)
336 int nAtts = atts.getLength();
343 //System.out.println("type " + atts.getType(i) + " name " + atts.getLocalName(i) );
345 if (atts.getType(i).equalsIgnoreCase("ID"))
346 setIDAttribute(atts.getValue(i), elem);
348 String attrNS = atts.getURI(i);
353 // System.out.println("attrNS: "+attrNS+", localName: "+atts.getQName(i)
354 // +", qname: "+atts.getQName(i)+", value: "+atts.getValue(i))
    [all...]
TreeWalker.java 333 NamedNodeMap atts = ((Element) node).getAttributes(); local
334 int nAttrs = atts.getLength();
339 Node attr = atts.item(i);
367 new AttList(atts, m_dh));
469 NamedNodeMap atts = ((Element) node).getAttributes();
470 int nAttrs = atts.getLength();
474 Node attr = atts.item(i);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 140 atts = new AttributesImpl();
533 atts.clear();
560 atts.addAttribute (nsSupport.XMLNS, prefix,
563 atts.addAttribute ("", "",
573 atts.addAttribute(attName[0], attName[1], attName[2],
580 atts.addAttribute("", attQName, attQName, type, value);
594 contentHandler.startElement(name[0], name[1], name[2], atts);
825 private AttributesImpl atts = null;
983 int max = atts.getLength();
821 private AttributesImpl atts = null; field in class:ParserAdapter
XMLReaderAdapter.java 324 * @param atts The SAX2 attributes.
330 String qName, Attributes atts)
334 qAtts.setAttributes(atts);
  /external/dbus/bus/
config-loader-expat.c 64 const XML_Char **atts)
80 /* "atts" is key, value, key, value, NULL */
81 for (i = 0; atts[i] != NULL; ++i)
98 while (atts[i] != NULL)
101 names [i / 2] = (char*) atts[i];
102 values[i / 2] = (char*) atts[i+1];
  /external/webrtc/webrtc/libjingle/xmllite/
xmlparser.cc 26 StartElementCallback(void * userData, const char *name, const char **atts) {
27 (static_cast<XmlParser *>(userData))->ExpatStartElement(name, atts);
78 XmlParser::ExpatStartElement(const char *name, const char **atts) {
83 for (att = atts; *att; att += 2) {
101 pxph_->StartElement(&context_, name, atts);
xmlparser_unittest.cc 27 const char * name, const char ** atts) {
29 while (*atts) {
30 ss_ << ", " << pctx->ResolveQName(*atts, true).Merged()
31 << "='" << *(atts+1) << "'";
32 atts += 2;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
ParserAdapterTest.java 261 AttributeListImpl atts = new AttributeListImpl(); local
262 atts.addAttribute("john:doe", "int", "42");
266 adapter.startElement("foo:bar", atts);
279 AttributeListImpl atts = new AttributeListImpl(); local
280 atts.addAttribute("john:doe", "int", "42");
284 adapter.startElement("foo:bar", atts);
  /external/expat/tests/
runtests.c 148 const XML_Char *name, const XML_Char **atts)
214 const XML_Char **atts)
217 if (storage->count < 0 && atts != NULL && atts[0] != NULL) {
219 CharData_AppendXMLChars(storage, atts[1], -1);
684 const XML_Char **atts)
687 for (i = 0; atts[i] != NULL; i += 2) {
688 const XML_Char *attrname = atts[i];
689 const XML_Char *value = atts[i + 1];
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserFactoryTest.java 378 Attributes atts) {
383 for (int i = 0; i < atts.getLength(); i++) {
384 attr.put(atts.getQName(i), atts.getValue(i));

Completed in 1023 milliseconds

12 3 4 5 6 7 8 9