HomeSort by relevance Sort by last modified time
    Searched full:atts (Results 76 - 100 of 266) sorted by null

1 2 34 5 6 7 8 91011

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
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 },
  /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/apache-xml/src/main/java/org/apache/xml/serializer/
ToXMLSAXHandler.java 643 Attributes atts)
647 super.startElement(namespaceURI, localName, name, atts);
672 if (atts != null)
673 addAttributes(atts);
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...]
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...]
  /external/libxml2/include/libxml/
SAX.h 110 const xmlChar **atts);
SAX2.h 107 const xmlChar **atts);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java 742 Attributes atts = theStack.atts(); local
743 for (int i = atts.getLength() - 1; i >= 0; i--) {
744 String attNamespace = atts.getURI(i);
745 String attPrefix = prefixOf(atts.getQName(i));
785 Attributes atts = e.atts(); local
786 int len = atts.getLength();
788 String attNamespace = atts.getURI(i);
789 String attPrefix = prefixOf(atts.getQName(i))
    [all...]
  /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];
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 1667 const xmlChar **atts; local
8441 const xmlChar **atts = ctxt->atts; local
9185 const xmlChar **atts = ctxt->atts; local
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLFilterImpl.java 523 * @param atts The element's attributes.
528 Attributes atts)
532 contentHandler.startElement(uri, localName, qName, atts);
XMLReaderAdapter.java 324 * @param atts The SAX2 attributes.
330 String qName, Attributes atts)
334 qAtts.setAttributes(atts);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StylesheetPIHandler.java 315 * @param atts The specified or defaulted attributes.
321 String namespaceURI, String localName, String qName, Attributes atts)
  /libcore/luni/src/main/java/org/xml/sax/
DocumentHandler.java 125 * @param atts The attributes attached to the element, if any.
131 public abstract void startElement (String name, AttributeList atts)
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 72 // Attributes atts;
  /external/curl/docs/examples/
xmlstream.c 55 const XML_Char **atts)
  /external/libxml2/os400/libxmlrpg/
SAX.rpgle 132 d atts * const xmlChar *(*)
SAX2.rpgle 151 d atts * const xmlChar *(*)
  /external/swiftshader/third_party/subzero/tests_lit/
lit.cfg 71 pnacl_sz_atts = shellcmd(' '.join([pnacl_sz_tool, '--build-atts']),
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
Util.java 89 return String.format("PlaybackInfo[vol=%s,max=%s,type=%s,vc=%s],atts=%s",
  /frameworks/base/tools/aapt/
XMLNode.h 163 startElement(void *userData, const char *name, const char **atts);
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 464 ArrayList<Attachment> atts = new ArrayList<Attachment>(); local
466 atts.add(ProviderTestUtils.setupAttachment(
470 message3.mAttachments = atts;
491 ProviderTestUtils.assertAttachmentEqual("save-message3", atts.get(i), actual);
515 ArrayList<Attachment> atts = new ArrayList<Attachment>(); local
517 atts.add(ProviderTestUtils.setupAttachment(
521 message4.mAttachments = atts;
543 ProviderTestUtils.assertAttachmentEqual("save-message4", atts.get(i), actual);
556 ProviderTestUtils.assertAttachmentEqual("save-message4", atts.get(i), attachments[i]);
1442 ArrayList<Attachment> atts = new ArrayList<Attachment>(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/expat/
xmlparse.c 636 #define atts (parser->m_atts) macro
733 atts = (ATTRIBUTE *)MALLOC(attsSize * sizeof(ATTRIBUTE));
734 if (atts == NULL) {
740 FREE(atts);
752 FREE(atts);
    [all...]

Completed in 282 milliseconds

1 2 34 5 6 7 8 91011