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

1 23 4 5 6 7 8 9

  /external/expat/lib/
xmltok.h 154 ATTRIBUTE *atts);
246 #define XmlGetAttributes(enc, ptr, attsMax, atts) \
247 (((enc)->getAtts)(enc, ptr, attsMax, atts))
xmltok_impl.c     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
XMLReaderAdapterTest.java 234 AttributesImpl atts = new AttributesImpl(); local
235 atts.addAttribute("http://some.other.uri", "gabba", "gabba:hey",
239 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 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...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8-dom.jar 
  /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/libxml2/
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 1655 const xmlChar **atts; local
8603 const xmlChar **atts = ctxt->atts; local
9348 const xmlChar **atts = ctxt->atts; local
    [all...]
runtest.c 1130 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts)
1138 if (atts != NULL) {
1139 for (i = 0;(atts[i] != NULL);i++) {
1140 fprintf(SAXdebug, ", %s='", atts[i++]);
1141 if (atts[i] != NULL)
1142 fprintf(SAXdebug, "%s'", atts[i]);
    [all...]
  /external/robolectric/v3/runtime/
tagsoup-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/ccil/cowan/tagsoup/tagsoup/1.2/
tagsoup-1.2.jar 
  /prebuilts/tools/common/m2/repository/org/ccil/cowan/tagsoup/tagsoup/1.2.1/
tagsoup-1.2.1.jar 
  /external/curl/docs/examples/
xmlstream.c 51 static void startElement(void *userData, const XML_Char *name, const XML_Char **atts)
  /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);
  /prebuilts/tools/common/m2/repository/xml-resolver/xml-resolver/1.2/
xml-resolver-1.2.jar 
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
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);
  /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...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 664 NamedNodeMap atts = node.getAttributes(); local
665 int nAttrs = atts.getLength();
668 Node attr = atts.item(i);
1824 NamedNodeMap atts = ((Element) node).getAttributes(); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 485 * @param atts The element's attributes.
491 String uri, String localName, String qName, Attributes atts)
500 m_contentHandler.startElement(uri, localName, qName, atts);

Completed in 301 milliseconds

1 23 4 5 6 7 8 9