HomeSort by relevance Sort by last modified time
    Searched refs:atts (Results 51 - 75 of 144) sorted by null

1 23 4 5 6

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
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);
SerializerBase.java 479 * @param atts List of attributes to add to this list
481 public void addAttributes(Attributes atts) throws SAXException
484 int nAtts = atts.getLength();
488 String uri = atts.getURI(i);
495 atts.getLocalName(i),
496 atts.getQName(i),
497 atts.getType(i),
498 atts.getValue(i),
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 324 * @param atts The SAX2 attributes.
330 String qName, Attributes atts)
334 qAtts.setAttributes(atts);
XMLFilterImpl.java 523 * @param atts The element's attributes.
528 Attributes atts)
532 contentHandler.startElement(uri, localName, qName, atts);
  /external/expat/lib/
xmltok.h 148 ATTRIBUTE *atts);
240 #define XmlGetAttributes(enc, ptr, attsMax, atts) \
241 (((enc)->getAtts)(enc, ptr, attsMax, atts))
xmltok_impl.c     [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
XMLReaderAdapterTest.java 235 AttributesImpl atts = new AttributesImpl(); local
236 atts.addAttribute("http://some.other.uri", "gabba", "gabba:hey",
240 adapter.startElement("http://some.uri", "bar", "foo:bar", atts);
XMLFilterImplTest.java 363 Attributes atts = new AttributesImpl(); local
366 parent.startElement("http://some.uri", "bar", "foo:bar", atts);
373 assertEquals(new Object[] { "http://some.uri", "bar", "foo:bar", atts },
  /cts/tests/tests/util/src/android/util/cts/
XmlEncodingTest.java 250 public void startElement(String uri, String localName, String name, Attributes atts)
255 mVec.add(atts.getLength() + STR_EMPTY);
256 for (int i = 0; i < atts.getLength(); i++) {
257 mVec.add(atts.getLocalName(i));
258 mVec.add(atts.getValue(i));
XmlTest.java 167 public void startElement(String uri, String localName, String name, Attributes atts)
172 mVec.add(atts.getLength() + STR_EMPTY);
173 for (int i = 0; i < atts.getLength(); i++) {
174 mVec.add(atts.getLocalName(i));
175 mVec.add(atts.getValue(i));
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 741 Attributes atts = theStack.atts(); local
742 for (int i = atts.getLength() - 1; i >= 0; i--) {
743 String attNamespace = atts.getURI(i);
744 String attPrefix = prefixOf(atts.getQName(i));
784 Attributes atts = e.atts(); local
785 int len = atts.getLength();
787 String attNamespace = atts.getURI(i);
788 String attPrefix = prefixOf(atts.getQName(i))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDocumentImpl.java 475 java.lang.String qName, Attributes atts)
495 int nAtts=(atts==null) ? 0 : atts.getLength();
499 qName=atts.getQName(i);
517 m_nsNames.stringToIndex(atts.getValue(i)),
518 atts.getType(i).equalsIgnoreCase("ID"));
524 qName=atts.getQName(i);
544 m_char.append(atts.getValue(i)); // Single-string value
548 appendAttribute(m_nsNames.stringToIndex(atts.getURI(i)),
551 atts.getType(i).equalsIgnoreCase("ID")
    [all...]
  /external/chromium_org/third_party/libxml/src/
testSAX.c 609 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts)
617 if (atts != NULL) {
618 for (i = 0;(atts[i] != NULL);i++) {
619 fprintf(stdout, ", %s='", atts[i++]);
620 if (atts[i] != NULL)
621 fprintf(stdout, "%s'", atts[i]);
SAX2.c     [all...]
parser.c 1456 const xmlChar **atts; local
8143 const xmlChar **atts = ctxt->atts; local
8833 const xmlChar **atts = ctxt->atts; local
    [all...]
HTMLparser.c 3591 const xmlChar **atts; local
    [all...]
  /external/libxml2/
SAX2.c     [all...]
parser.c 1588 const xmlChar **atts; local
8188 const xmlChar **atts = ctxt->atts; local
8870 const xmlChar **atts = ctxt->atts; local
    [all...]
HTMLparser.c 3596 const xmlChar **atts; local
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
brandcode_config_fetcher.cc 61 const xmlChar** atts);
111 const xmlChar** atts) {
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncParser.java 114 ArrayList<EmailContent.Attachment> atts = new ArrayList<EmailContent.Attachment>(); local
121 attachmentsParser(atts, msg);
217 if (atts.size() > 0) {
218 msg.mAttachments = atts;
425 private void attachmentsParser(ArrayList<EmailContent.Attachment> atts,
431 attachmentParser(atts, msg);
439 private void attachmentParser(ArrayList<EmailContent.Attachment> atts,
495 atts.add(att);
    [all...]
  /external/chromium_org/third_party/libxml/src/include/libxml/
SAX.h 110 const xmlChar **atts);
SAX2.h 105 const xmlChar **atts);

Completed in 518 milliseconds

1 23 4 5 6