Home
last modified time | relevance | path

Searched refs:attrib_in (Results 1 – 25 of 32) sorted by relevance

12

/dports/lang/spidermonkey60/firefox-60.9.0/testing/web-platform/tests/tools/manifest/
H A DXMLParser.py58 def _start(self, tag, attrib_in): argument
62 if attrib_in:
63 for i in range(0, len(attrib_in), 2):
64 attrib[_fixname(attrib_in[i])] = attrib_in[i+1]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/manifest/
H A DXMLParser.py74 def _start(self, tag, attrib_in): argument
80 if attrib_in:
81 for i in range(0, len(attrib_in), 2):
82 attrib[_fixname(attrib_in[i])] = attrib_in[i+1]
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/manifest/
H A DXMLParser.py74 def _start(self, tag, attrib_in): argument
80 if attrib_in:
81 for i in range(0, len(attrib_in), 2):
82 attrib[_fixname(attrib_in[i])] = attrib_in[i+1]
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/manifest/
H A DXMLParser.py74 def _start(self, tag, attrib_in): argument
80 if attrib_in:
81 for i in range(0, len(attrib_in), 2):
82 attrib[_fixname(attrib_in[i])] = attrib_in[i+1]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/tools/blinkpy/third_party/wpt/wpt/tools/manifest/
H A DXMLParser.py79 def _start(self, tag, attrib_in): argument
84 if attrib_in:
85 for i in range(0, len(attrib_in), 2):
86 attrib[_fixname(attrib_in[i])] = attrib_in[i+1]
/dports/lang/spidermonkey78/firefox-78.9.0/testing/web-platform/tests/tools/manifest/
H A DXMLParser.py79 def _start(self, tag, attrib_in): argument
84 if attrib_in:
85 for i in range(0, len(attrib_in), 2):
86 attrib[_fixname(attrib_in[i])] = attrib_in[i+1]
/dports/lang/python-legacy/Python-2.7.18/Lib/xml/etree/
H A DElementTree.py1230 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])
/dports/lang/python27/Python-2.7.18/Lib/xml/etree/
H A DElementTree.py1230 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])
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.jython_8.2.0.202102211157/Lib/xml/etree/
H A DElementTree.py1227 def handler(tag, attrib_in, event=event, append=append, argument
1229 append((event, start(tag, attrib_in)))
1232 def handler(tag, attrib_in, event=event, append=append, argument
1234 append((event, start(tag, attrib_in)))
1528 def _start(self, tag, attrib_in): argument
1533 for key, value in attrib_in.items():
1537 def _start_list(self, tag, attrib_in): argument
1542 if attrib_in:
1543 for i in range(0, len(attrib_in), 2):
1544 attrib[fixname(attrib_in[i])] = fixtext(attrib_in[i+1])
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/
H A DElementTree.py1216 def handler(tag, attrib_in, event=event, append=append, argument
1218 append((event, start(tag, attrib_in)))
1221 def handler(tag, attrib_in, event=event, append=append, argument
1223 append((event, start(tag, attrib_in)))
1508 def _start(self, tag, attrib_in): argument
1513 for key, value in attrib_in.items():
1517 def _start_list(self, tag, attrib_in): argument
1522 if attrib_in:
1523 for i in range(0, len(attrib_in), 2):
1524 attrib[fixname(attrib_in[i])] = fixtext(attrib_in[i+1])
/dports/lang/parrot/parrot-8.1.0/t/pmc/
H A Dclass.t208 .local pmc class, class_instance, attrib_in, attrib_out
217 attrib_in = new ['Integer']
218 attrib_in = 42
219 setattribute class_instance, "foo", attrib_in
/dports/lang/python-legacy/Python-2.7.18/Modules/
H A D_elementtree.c2270 const XML_Char **attrib_in) argument
2283 if (attrib_in[0]) {
2289 while (attrib_in[0] && attrib_in[1]) {
2290 PyObject* key = makeuniversal(self, attrib_in[0]);
2291 PyObject* value = makestring(attrib_in[1], strlen(attrib_in[1]));
2307 attrib_in += 2;
/dports/lang/python27/Python-2.7.18/Modules/
H A D_elementtree.c2270 const XML_Char **attrib_in) argument
2283 if (attrib_in[0]) {
2289 while (attrib_in[0] && attrib_in[1]) {
2290 PyObject* key = makeuniversal(self, attrib_in[0]);
2291 PyObject* value = makestring(attrib_in[1], strlen(attrib_in[1]));
2307 attrib_in += 2;
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_elementtree.c2226 const XML_Char **attrib_in) argument
2239 if (attrib_in[0]) {
2243 while (attrib_in[0] && attrib_in[1]) {
2244 PyObject* key = makeuniversal(self, attrib_in[0]);
2245 PyObject* value = makestring(attrib_in[1], strlen(attrib_in[1]));
2259 attrib_in += 2;
/dports/lang/python37/Python-3.7.12/Modules/
H A D_elementtree.c2987 const XML_Char **attrib_in) in expat_start_handler() argument
3003 if (attrib_in[0]) { in expat_start_handler()
3009 while (attrib_in[0] && attrib_in[1]) { in expat_start_handler()
3010 PyObject* key = makeuniversal(self, attrib_in[0]); in expat_start_handler()
3011 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler()
3027 attrib_in += 2; in expat_start_handler()
/dports/databases/py-gdbm/Python-3.8.12/Modules/
H A D_elementtree.c3314 const XML_Char **attrib_in) in expat_start_handler() argument
3330 if (attrib_in[0]) { in expat_start_handler()
3336 while (attrib_in[0] && attrib_in[1]) { in expat_start_handler()
3337 PyObject* key = makeuniversal(self, attrib_in[0]); in expat_start_handler()
3338 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler()
3354 attrib_in += 2; in expat_start_handler()
/dports/lang/python310/Python-3.10.1/Modules/
H A D_elementtree.c3254 const XML_Char **attrib_in) in expat_start_handler() argument
3270 if (attrib_in[0]) { in expat_start_handler()
3276 while (attrib_in[0] && attrib_in[1]) { in expat_start_handler()
3277 PyObject* key = makeuniversal(self, attrib_in[0]); in expat_start_handler()
3278 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler()
3294 attrib_in += 2; in expat_start_handler()
/dports/lang/python311/Python-3.11.0a3/Modules/
H A D_elementtree.c3254 const XML_Char **attrib_in) in expat_start_handler() argument
3270 if (attrib_in[0]) { in expat_start_handler()
3276 while (attrib_in[0] && attrib_in[1]) { in expat_start_handler()
3277 PyObject* key = makeuniversal(self, attrib_in[0]); in expat_start_handler()
3278 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler()
3294 attrib_in += 2; in expat_start_handler()
/dports/lang/python-tools/Python-3.8.12/Modules/
H A D_elementtree.c3314 const XML_Char **attrib_in) in expat_start_handler() argument
3330 if (attrib_in[0]) { in expat_start_handler()
3336 while (attrib_in[0] && attrib_in[1]) { in expat_start_handler()
3337 PyObject* key = makeuniversal(self, attrib_in[0]); in expat_start_handler()
3338 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler()
3354 attrib_in += 2; in expat_start_handler()
/dports/lang/python39/Python-3.9.9/Modules/
H A D_elementtree.c3257 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()
/dports/lang/python38/Python-3.8.12/Modules/
H A D_elementtree.c3314 const XML_Char **attrib_in) in expat_start_handler() argument
3330 if (attrib_in[0]) { in expat_start_handler()
3336 while (attrib_in[0] && attrib_in[1]) { in expat_start_handler()
3337 PyObject* key = makeuniversal(self, attrib_in[0]); in expat_start_handler()
3338 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler()
3354 attrib_in += 2; in expat_start_handler()
/dports/databases/py-sqlite3/Python-3.8.12/Modules/
H A D_elementtree.c3314 const XML_Char **attrib_in) in expat_start_handler() argument
3330 if (attrib_in[0]) { in expat_start_handler()
3336 while (attrib_in[0] && attrib_in[1]) { in expat_start_handler()
3337 PyObject* key = makeuniversal(self, attrib_in[0]); in expat_start_handler()
3338 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler()
3354 attrib_in += 2; in expat_start_handler()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Modules/
H A D_elementtree.c3314 const XML_Char **attrib_in) in expat_start_handler() argument
3330 if (attrib_in[0]) { in expat_start_handler()
3336 while (attrib_in[0] && attrib_in[1]) { in expat_start_handler()
3337 PyObject* key = makeuniversal(self, attrib_in[0]); in expat_start_handler()
3338 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler()
3354 attrib_in += 2; in expat_start_handler()
/dports/lang/python37/Python-3.7.12/Lib/xml/etree/
H A DElementTree.py1507 def handler(tag, attrib_in, event=event_name, append=append, argument
1509 append((event, start(tag, attrib_in)))
/dports/databases/py-gdbm/Python-3.8.12/Lib/xml/etree/
H A DElementTree.py1557 def handler(tag, attrib_in, event=event_name, append=append, argument
1559 append((event, start(tag, attrib_in)))

12