Home
last modified time | relevance | path

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

/external/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 …]
/external/python/cpython2/Lib/lib-tk/
DTkinter.py2245 def addtag_above(self, newtag, tagOrId): argument
2247 self.addtag(newtag, 'above', tagOrId)
2248 def addtag_all(self, newtag): argument
2250 self.addtag(newtag, 'all')
2251 def addtag_below(self, newtag, tagOrId): argument
2253 self.addtag(newtag, 'below', tagOrId)
2254 def addtag_closest(self, newtag, x, y, halo=None, start=None): argument
2259 self.addtag(newtag, 'closest', x, y, halo, start)
2260 def addtag_enclosed(self, newtag, x1, y1, x2, y2): argument
2263 self.addtag(newtag, 'enclosed', x1, y1, x2, y2)
[all …]
/external/python/cpython3/Lib/tkinter/
D__init__.py2690 def addtag_above(self, newtag, tagOrId): argument
2692 self.addtag(newtag, 'above', tagOrId)
2694 def addtag_all(self, newtag): argument
2696 self.addtag(newtag, 'all')
2698 def addtag_below(self, newtag, tagOrId): argument
2700 self.addtag(newtag, 'below', tagOrId)
2702 def addtag_closest(self, newtag, x, y, halo=None, start=None): argument
2707 self.addtag(newtag, 'closest', x, y, halo, start)
2709 def addtag_enclosed(self, newtag, x1, y1, x2, y2): argument
2712 self.addtag(newtag, 'enclosed', x1, y1, x2, y2)
[all …]
/external/python/cpython2/Modules/
Dcstubs1086 void newtag long s long s long s
Dglmodule.c3405 newtag( arg1 , arg2 , arg3 ); in gl_newtag()