Searched refs:attrib_in (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/xml/etree/ |
D | ElementTree.py | 1230 def handler(tag, attrib_in, event=event, append=append, argument 1232 append((event, start(tag, attrib_in))) 1235 def handler(tag, attrib_in, event=event, append=append, argument 1237 append((event, start(tag, attrib_in))) 1543 def _start(self, tag, attrib_in): argument 1548 for key, value in attrib_in.items(): 1552 def _start_list(self, tag, attrib_in): argument 1557 if attrib_in: 1558 for i in range(0, len(attrib_in), 2): 1559 attrib[fixname(attrib_in[i])] = fixtext(attrib_in[i+1])
|
/external/python/cpython2/Modules/ |
D | _elementtree.c | 2262 const XML_Char **attrib_in) argument 2275 if (attrib_in[0]) { 2281 while (attrib_in[0] && attrib_in[1]) { 2282 PyObject* key = makeuniversal(self, attrib_in[0]); 2283 PyObject* value = makestring(attrib_in[1], strlen(attrib_in[1])); 2299 attrib_in += 2;
|
/external/python/cpython3/Modules/ |
D | _elementtree.c | 3257 const XML_Char **attrib_in) in expat_start_handler() argument 3273 if (attrib_in[0]) { in expat_start_handler() 3279 while (attrib_in[0] && attrib_in[1]) { in expat_start_handler() 3280 PyObject* key = makeuniversal(self, attrib_in[0]); in expat_start_handler() 3281 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler() 3297 attrib_in += 2; in expat_start_handler()
|
/external/python/cpython3/Lib/xml/etree/ |
D | ElementTree.py | 1584 def handler(tag, attrib_in, event=event_name, append=append, argument 1586 append((event, start(tag, attrib_in)))
|