Searched defs:atts (Results 1 - 25 of 41) sorted by relevance

12

/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dxmppstanzaparser.cc57 XmlParseContext * pctx, const char * name, const char ** atts) {
59 XmlElement * pelStream = XmlBuilder::BuildElement(pctx, name, atts);
69 builder_.StartElement(pctx, name, atts);
56 IncomingStartElement( XmlParseContext * pctx, const char * name, const char ** atts) argument
H A Dxmppstanzaparser.h60 const char * name, const char ** atts)
61 { outer_->IncomingStartElement(pctx, name, atts); }
78 const char * name, const char ** atts);
59 StartElement(XmlParseContext * pctx, const char * name, const char ** atts) argument
/external/expat/examples/
H A Delements.c26 startElement(void *userData, const char *name, const char **atts) argument
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlbuilder.cc56 const char * name, const char ** atts) {
63 if (!*atts)
68 while (*atts) {
69 QName attName(pctx->ResolveQName(*atts, true));
84 pelNew->AddAttr(attName, std::string(*(atts + 1)));
85 atts += 2;
93 const char * name, const char ** atts) {
94 XmlElement * pelNew = BuildElement(pctx, name, atts);
55 BuildElement(XmlParseContext * pctx, const char * name, const char ** atts) argument
92 StartElement(XmlParseContext * pctx, const char * name, const char ** atts) argument
H A Dxmlparser.cc48 StartElementCallback(void * userData, const char *name, const char **atts) { argument
49 (static_cast<XmlParser *>(userData))->ExpatStartElement(name, atts);
100 XmlParser::ExpatStartElement(const char *name, const char **atts) { argument
105 for (att = atts; *att; att += 2) {
123 pxph_->StartElement(&context_, name, atts);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DAttributesImplSerializer.java188 * @param atts the attributes to copy into these attributes.
192 public final void setAttributes(Attributes atts) argument
195 super.setAttributes(atts);
200 int numAtts = atts.getLength();
H A DSerializerTrace.java121 * @param atts The SAX attribute list.
123 public void fireGenerateEvent(int eventType, String name, Attributes atts); argument
H A DExtendedContentHandler.java33 * startElement(namespaceURI,localName,qName,atts)
38 * addAttributes(atts)
69 * @param atts the attributes to add.
72 public void addAttributes(org.xml.sax.Attributes atts) argument
116 * startElement(uri,localName,qname,atts)
H A DToTextStream.java118 * @param atts The attributes attached to the element, if any.
127 String namespaceURI, String localName, String name, Attributes atts)
126 startElement( String namespaceURI, String localName, String name, Attributes atts) argument
H A DToXMLSAXHandler.java643 Attributes atts)
647 super.startElement(namespaceURI, localName, name, atts);
672 if (atts != null)
673 addAttributes(atts);
639 startElement( String namespaceURI, String localName, String name, Attributes atts) argument
H A DToHTMLStream.java780 * @param atts The attributes attached to the element, if any.
790 Attributes atts)
827 super.startElement(namespaceURI, localName, name, atts);
860 if (atts != null)
861 addAttributes(atts);
786 startElement( String namespaceURI, String localName, String name, Attributes atts) argument
/external/eyes-free/AccessCheck/src/com/android/accessibility/
H A DAccessibilityValidationContentHandler.java115 Attributes atts) {
136 for (int i = 0; i < atts.getLength(); i++) {
137 String currentAttribute = atts.getLocalName(i).toLowerCase();
144 extendedOutput.append("|src=" + atts.getValue(i));
114 startElement(String uri, String localName, String qName, Attributes atts) argument
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStylesheetPIHandler.java315 * @param atts The specified or defaulted attributes.
321 String namespaceURI, String localName, String qName, Attributes atts)
320 startElement( String namespaceURI, String localName, String qName, Attributes atts) argument
H A DDOMBuilder.java314 * @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
318 startElement( String ns, String localName, String name, Attributes atts) argument
[all...]
/external/dbus/bus/
H A Dconfig-loader-expat.c64 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];
62 expat_StartElementHandler(void *userData, const XML_Char *name, const XML_Char **atts) argument
/external/skia/src/ports/
H A DFontHostConfiguration_android.cpp79 void startElementHandler(void *data, const char *tag, const char **atts) { argument
87 for (int i = 0; atts[i] != NULL; i += 2) {
88 const char* attribute = atts[i];
89 const char* valueString = atts[i+1];
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DAttributesImpl.java80 * @param atts The existing Attributes object.
82 public AttributesImpl (Attributes atts)
84 setAttributes(atts);
354 * @param atts The attributes to copy.
356 public void setAttributes (Attributes atts)
359 length = atts.getLength();
363 data[i*5] = atts.getURI(i);
364 data[i*5+1] = atts.getLocalName(i);
365 data[i*5+2] = atts.getQName(i);
366 data[i*5+3] = atts
81 AttributesImpl(Attributes atts) argument
353 setAttributes(Attributes atts) argument
[all...]
H A DElement.java39 if (defaultAttributes) theAtts = new AttributesImpl(type.atts());
58 public AttributesImpl atts() { return theAtts; } method in class:Element
H A DElementType.java150 public AttributesImpl atts() {return theAtts;} method in class:ElementType
183 @param atts The AttributesImpl object
189 public void setAttribute(AttributesImpl atts, String name, String type, String value) { argument
196 int i = atts.getIndex(name);
201 atts.addAttribute(namespace, localName, name, type, value);
204 if (type == null) type = atts.getType(i);
206 atts.setAttribute(i, namespace, localName, name, type, value);
H A DPYXWriter.java177 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));
176 startElement(String uri, String localname, String qname, Attributes atts) argument
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java485 * @param atts The element's attributes.
491 String uri, String localName, String qName, Attributes atts)
500 m_contentHandler.startElement(uri, localName, qName, atts);
490 startElement( String uri, String localName, String qName, Attributes atts) argument
/external/expat/lib/
H A Dxmltok_impl.c1427 first attsMax attributes are stored in atts.
1432 int attsMax, ATTRIBUTE *atts)
1444 atts[nAtts].name = ptr; \
1445 atts[nAtts].normalized = 1; \
1462 atts[nAtts].valuePtr = ptr + MINBPC(enc);
1469 atts[nAtts].valueEnd = ptr;
1476 atts[nAtts].valuePtr = ptr + MINBPC(enc);
1483 atts[nAtts].valueEnd = ptr;
1489 atts[nAtts].normalized = 0;
1496 && atts[nAtt
1431 getAtts(const ENCODING *enc, const char *ptr, int attsMax, ATTRIBUTE *atts) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource_Filter.java324 java.lang.String qName, Attributes atts)
333 clientContentHandler.startElement(namespaceURI, localName, qName, atts);
323 startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, Attributes atts) argument
/external/expat/tests/
H A Druntests.c147 const XML_Char *name, const XML_Char **atts)
213 const XML_Char **atts)
216 if (storage->count < 0 && atts != NULL && atts[0] != NULL) {
218 CharData_AppendXMLChars(storage, atts[1], -1);
683 const XML_Char **atts)
686 for (i = 0; atts[i] != NULL; i += 2) {
687 const XML_Char *attrname = atts[i];
688 const XML_Char *value = atts[i + 1];
1089 const XML_Char **atts)
146 dummy_start_element(void *userData, const XML_Char *name, const XML_Char **atts) argument
212 accumulate_attribute(void *userData, const XML_Char *name, const XML_Char **atts) argument
681 check_attr_contains_normalized_whitespace(void *userData, const XML_Char *name, const XML_Char **atts) argument
1088 triplet_start_checker(void *userData, const XML_Char *name, const XML_Char **atts) argument
1136 overwrite_start_checker(void *userData, const XML_Char *name, const XML_Char **atts) argument
1218 start_element_fail(void *userData, const XML_Char *name, const XML_Char **atts) argument
[all...]
/external/expat/xmlwf/
H A Dxmlwf.c121 startElement(void *userData, const XML_Char *name, const XML_Char **atts) argument
129 p = atts;
132 nAtts = (int)((p - atts) >> 1);
134 qsort((void *)atts, nAtts, sizeof(XML_Char *) * 2, attcmp);
135 while (*atts) {
137 fputts(*atts++, fp);
138 attributeValue(fp, *atts);
139 atts++;
167 startElementNS(void *userData, const XML_Char *name, const XML_Char **atts) argument
189 p = atts;
257 defaultStartElement(void *userData, const XML_Char *name, const XML_Char **atts) argument
282 nopStartElement(void *userData, const XML_Char *name, const XML_Char **atts) argument
333 metaStartElement(void *userData, const XML_Char *name, const XML_Char **atts) argument
[all...]

Completed in 296 milliseconds

12