Searched refs:attname (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Lib/xml/dom/ |
D | minidom.py | 556 def __setitem__(self, attname, value): argument 559 node = self._attrs[attname] 561 node = Attr(attname) 721 def getAttribute(self, attname): argument 733 return self._attrs[attname].value 745 def setAttribute(self, attname, value): argument 746 attr = self.getAttributeNode(attname) 748 attr = Attr(attname)
|
/third_party/libxml2/ |
D | parser.c | 8539 const xmlChar *attname; in xmlParseStartTag() local 8570 attname = xmlParseAttribute(ctxt, &attvalue); in xmlParseStartTag() 8571 if ((attname != NULL) && (attvalue != NULL)) { in xmlParseStartTag() 8578 if (xmlStrEqual(atts[i], attname)) { in xmlParseStartTag() 8579 xmlErrAttributeDup(ctxt, NULL, attname); in xmlParseStartTag() 8615 atts[nbatts++] = attname; in xmlParseStartTag() 8634 (attname == NULL) && (attvalue == NULL)) { in xmlParseStartTag() 9263 const xmlChar *attname; in xmlParseStartTag2() local 9318 attname = xmlParseAttribute2(ctxt, prefix, localname, in xmlParseStartTag2() 9320 if ((attname == NULL) || (attvalue == NULL)) in xmlParseStartTag2() [all …]
|
D | HTMLparser.c | 3935 const xmlChar *attname; in htmlParseStartTag() local 4044 attname = htmlParseAttribute(ctxt, &attvalue); in htmlParseStartTag() 4045 if (attname != NULL) { in htmlParseStartTag() 4051 if (xmlStrEqual(atts[i], attname)) { in htmlParseStartTag() 4053 "Attribute %s redefined\n", attname, NULL); in htmlParseStartTag() 4091 atts[nbatts++] = attname; in htmlParseStartTag()
|
/third_party/skia/third_party/externals/expat/expat/lib/ |
D | expat.h | 196 void *userData, const XML_Char *elname, const XML_Char *attname,
|
/third_party/python/Modules/expat/ |
D | expat.h | 196 void *userData, const XML_Char *elname, const XML_Char *attname,
|
/third_party/python/Modules/ |
D | pyexpat.c | 594 const XML_Char *attname, 599 string_intern(self, elname), string_intern(self, attname),
|
/third_party/python/Doc/library/ |
D | pyexpat.rst | 336 .. method:: xmlparser.AttlistDeclHandler(elname, attname, type, default, required) 341 declaration applies and *attname* is the name of the attribute declared. The
|
/third_party/skia/third_party/externals/expat/expat/tests/ |
D | runtests.c | 276 const XML_Char *attname, const XML_Char *att_type, in dummy_attlist_decl_handler() argument 280 UNUSED_P(attname); in dummy_attlist_decl_handler()
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 123673 attname = xmlParseAttribute(ctxt, &attvalue); 123674 if ((attname != NULL) && (attvalue != NULL)) { 123681 (attname == NULL) && (attvalue == NULL)) { 123694 attname = xmlParseAttribute2(ctxt, prefix, localname, 123701 (attname == NULL) && (attvalue == NULL)) {
|