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

1 2 34 5 6 7 8 9

  /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 1662 const xmlChar **atts; local
8647 const xmlChar **atts = ctxt->atts; local
9392 const xmlChar **atts = ctxt->atts; local
    [all...]
runtest.c 1176 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts)
1184 if (atts != NULL) {
1185 for (i = 0;(atts[i] != NULL);i++) {
1186 fprintf(SAXdebug, ", %s='", atts[i++]);
1187 if (atts[i] != NULL)
1188 fprintf(SAXdebug, "%s'", atts[i]);
    [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/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/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)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
TestVersionTracker.java 129 Attributes atts) {
133 String pluginIds = atts.getValue("pluginIds");
  /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 *(*)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
Util.java 88 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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-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...]
expat.h 249 /* atts is array of name/value pairs, terminated by 0;
254 const XML_Char **atts);
731 this correspondds to an index into the atts array passed to the
740 index into the atts array passed to the XML_StartElementHandler.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
expat.h 249 /* atts is array of name/value pairs, terminated by 0;
254 const XML_Char **atts);
731 this correspondds to an index into the atts array passed to the
740 index into the atts array passed to the XML_StartElementHandler.
    [all...]
xmlparse.c 647 #define atts (parser->m_atts) macro
761 atts = (ATTRIBUTE *)MALLOC(attsSize * sizeof(ATTRIBUTE));
762 if (atts == NULL) {
769 FREE(atts);
776 FREE(atts);
791 FREE(atts);
    [all...]
  /external/deqp/modules/glshared/
glsFboUtil.cpp 575 const AttachmentMap& atts = fboConfig.attachments; local
629 if (atts.empty())
632 for (AttachmentMap::const_iterator it = atts.begin(); it != atts.end(); it++)
  /external/expat/lib/
expat.h 249 /* atts is array of name/value pairs, terminated by 0;
254 const XML_Char **atts);
731 this correspondds to an index into the atts array passed to the
740 index into the atts array passed to the XML_StartElementHandler.
    [all...]

Completed in 746 milliseconds

1 2 34 5 6 7 8 9