Home
last modified time | relevance | path

Searched refs:newtag (Results 1 – 3 of 3) sorted by relevance

/third_party/libxml2/
DHTMLparser.c1487 htmlCheckAutoClose(const xmlChar * newtag, const xmlChar * oldtag) in htmlCheckAutoClose() argument
1493 key.newTag = (const char *) newtag; in htmlCheckAutoClose()
1509 htmlAutoCloseOnClose(htmlParserCtxtPtr ctxt, const xmlChar * newtag) in htmlAutoCloseOnClose() argument
1514 priority = htmlGetEndPriority(newtag); in htmlAutoCloseOnClose()
1518 if (xmlStrEqual(newtag, ctxt->nameTab[i])) in htmlAutoCloseOnClose()
1532 while (!xmlStrEqual(newtag, ctxt->name)) { in htmlAutoCloseOnClose()
1537 newtag, ctxt->name); in htmlAutoCloseOnClose()
1578 htmlAutoClose(htmlParserCtxtPtr ctxt, const xmlChar * newtag) in htmlAutoClose() argument
1580 while ((newtag != NULL) && (ctxt->name != NULL) && in htmlAutoClose()
1581 (htmlCheckAutoClose(newtag, ctxt->name))) { in htmlAutoClose()
[all …]
/third_party/gettext/gnulib-local/lib/libxml/
DHTMLparser.c1325 htmlCheckAutoClose(const xmlChar * newtag, const xmlChar * oldtag) in htmlCheckAutoClose() argument
1338 if (xmlStrEqual(BAD_CAST * closed, newtag)) in htmlCheckAutoClose()
1362 htmlAutoCloseOnClose(htmlParserCtxtPtr ctxt, const xmlChar * newtag) in htmlAutoCloseOnClose() argument
1367 priority = htmlGetEndPriority(newtag); in htmlAutoCloseOnClose()
1371 if (xmlStrEqual(newtag, ctxt->nameTab[i])) in htmlAutoCloseOnClose()
1385 while (!xmlStrEqual(newtag, ctxt->name)) { in htmlAutoCloseOnClose()
1390 newtag, ctxt->name); in htmlAutoCloseOnClose()
1431 htmlAutoClose(htmlParserCtxtPtr ctxt, const xmlChar * newtag) in htmlAutoClose() argument
1433 while ((newtag != NULL) && (ctxt->name != NULL) && in htmlAutoClose()
1434 (htmlCheckAutoClose(newtag, ctxt->name))) { in htmlAutoClose()
[all …]
/third_party/python/Lib/tkinter/
D__init__.py2723 def addtag_above(self, newtag, tagOrId): argument
2725 self.addtag(newtag, 'above', tagOrId)
2727 def addtag_all(self, newtag): argument
2729 self.addtag(newtag, 'all')
2731 def addtag_below(self, newtag, tagOrId): argument
2733 self.addtag(newtag, 'below', tagOrId)
2735 def addtag_closest(self, newtag, x, y, halo=None, start=None): argument
2740 self.addtag(newtag, 'closest', x, y, halo, start)
2742 def addtag_enclosed(self, newtag, x1, y1, x2, y2): argument
2745 self.addtag(newtag, 'enclosed', x1, y1, x2, y2)
[all …]