Searched refs:atts (Results 1 - 25 of 103) sorted by relevance

12345

/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlbuilder.cc53 const char * name, const char ** atts) {
60 if (!*atts)
65 while (*atts) {
66 QName attName(pctx->ResolveQName(*atts, true));
81 pelNew->AddAttr(attName, std::string(*(atts + 1)));
82 atts += 2;
90 const char * name, const char ** atts) {
91 XmlElement * pelNew = BuildElement(pctx, name, atts);
52 BuildElement(XmlParseContext * pctx, const char * name, const char ** atts) argument
89 StartElement(XmlParseContext * pctx, const char * name, const char ** atts) argument
H A Dxmlbuilder.h53 const char * name, const char ** atts);
55 const char * name, const char ** atts);
H A Dxmlparser.h62 const char * name, const char ** atts) = 0;
81 void ExpatStartElement(const char * name, const char ** atts);
H A Dxmlparser.cc43 StartElementCallback(void * userData, const char *name, const char **atts) { argument
44 (static_cast<XmlParser *>(userData))->ExpatStartElement(name, atts);
95 XmlParser::ExpatStartElement(const char *name, const char **atts) { argument
100 for (att = atts; *att; att += 2) {
118 pxph_->StartElement(&context_, name, atts);
/external/chromium_org/third_party/webrtc/libjingle/xmllite/
H A Dxmlbuilder.cc36 const char * name, const char ** atts) {
43 if (!*atts)
48 while (*atts) {
49 QName attName(pctx->ResolveQName(*atts, true));
64 pelNew->AddAttr(attName, std::string(*(atts + 1)));
65 atts += 2;
73 const char * name, const char ** atts) {
74 XmlElement * pelNew = BuildElement(pctx, name, atts);
35 BuildElement(XmlParseContext * pctx, const char * name, const char ** atts) argument
72 StartElement(XmlParseContext * pctx, const char * name, const char ** atts) argument
H A Dxmlbuilder.h36 const char * name, const char ** atts);
38 const char * name, const char ** atts);
H A Dxmlparser.h45 const char * name, const char ** atts) = 0;
64 void ExpatStartElement(const char * name, const char ** atts);
/external/chromium_org/components/search_engines/
H A Dtemplate_url_parser.cc135 const xmlChar** atts);
152 void ParseURL(const xmlChar** atts);
153 void ParseImage(const xmlChar** atts);
154 void ParseParam(const xmlChar** atts);
216 const xmlChar** atts) {
231 context->ParseURL(atts);
234 context->ParseImage(atts);
237 context->ParseParam(atts);
347 void TemplateURLParsingContext::ParseURL(const xmlChar** atts) { argument
348 if (!atts)
214 StartElementImpl(void* ctx, const xmlChar* name, const xmlChar** atts) argument
382 ParseImage(const xmlChar** atts) argument
406 ParseParam(const xmlChar** atts) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppstanzaparser.cc58 XmlParseContext * pctx, const char * name, const char ** atts) {
60 XmlElement * pelStream = XmlBuilder::BuildElement(pctx, name, atts);
70 builder_.StartElement(pctx, name, atts);
57 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/tagsoup/src/org/ccil/cowan/tagsoup/
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 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 DXMLWriter.java570 * @param atts The element's attribute list (must not be null).
577 String qName, Attributes atts)
585 writeAttributes(atts);
596 super.startElement(uri, localName, qName, atts);
745 * @param atts The element's attribute list.
753 String qName, Attributes atts)
759 writeAttributes(atts);
765 super.startElement(uri, localName, qName, atts);
925 * @param atts The element's attributes.
935 String qName, Attributes atts,
573 startElement(String uri, String localName, String qName, Attributes atts) argument
748 emptyElement(String uri, String localName, String qName, Attributes atts) argument
929 dataElement(String uri, String localName, String qName, Attributes atts, String content) argument
1157 writeAttributes(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
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializerTrace.java121 * @param atts The SAX attribute list.
123 public void fireGenerateEvent(int eventType, String name, Attributes atts); argument
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 DTreeWalker.java320 NamedNodeMap atts = elem_node.getAttributes();
321 int nAttrs = atts.getLength();
329 final Node attr = atts.item(i);
362 new AttList(atts, m_dh));
469 NamedNodeMap atts = elem_node.getAttributes();
470 int nAttrs = atts.getLength();
476 final Node attr = atts.item(i);
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DVersionTrackerTask.java104 Attributes atts) {
106 String element = atts.getValue("id");
127 Attributes atts) {
130 String element = atts.getValue("id");
131 String version = atts.getValue("version");
100 startElement( String uri, String local, String qName, Attributes atts) argument
123 startElement( String uri, String local, String qName, Attributes atts) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/tools/
H A DTestVersionTracker.java75 Attributes atts) {
77 String element = atts.getValue("id");
78 String version = atts.getValue("version");
71 startElement( String uri, String local, String qName, Attributes atts) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DElementParser.java92 String qName, Attributes atts) {
94 add(atts.getValue("id"), plugins);
96 add(atts.getValue("id")+"-feature", features);
91 startElement(String uri, String local, String qName, Attributes atts) argument
/external/expat/examples/
H A Delements.c26 startElement(void *userData, const char *name, const char **atts) argument
/external/chromium_org/third_party/libxml/src/
H A DtestHTML.c369 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
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];
/external/apache-xml/src/main/java/org/apache/xml/utils/
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...]
H A DTreeWalker.java333 NamedNodeMap atts = ((Element) node).getAttributes();
334 int nAttrs = atts.getLength();
339 Node attr = atts.item(i);
367 new AttList(atts, m_dh));
469 NamedNodeMap atts = ((Element) node).getAttributes();
470 int nAttrs = atts.getLength();
474 Node attr = atts.item(i);

Completed in 2194 milliseconds

12345