Searched defs:Import (Results 1 - 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
H A Dast.py729 class Import(Node): class in inherits:Node
741 return "Import(%s)" % (repr(self.names),)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A DPython-ast.h160 } Import; member in union:_stmt::__anon2885
429 #define Import(a0, a1, a2, a3) _Py_Import(a0, a1, a2, a3) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A DPython-ast.h160 } Import; member in union:_stmt::__anon3192
429 #define Import(a0, a1, a2, a3) _Py_Import(a0, a1, a2, a3) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A DPython-ast.c722 Import_type = make_type("Import", stmt_type, Import_fields, 1);
1354 Import(asdl_seq * names, int lineno, int col_offset, PyArena *arena) function
1361 p->v.Import.names = names;
2473 value = ast2obj_list(o->v.Import.names, ast2obj_alias);
4462 PyErr_Format(PyExc_TypeError, "Import field \"names\" must be a list, not a %.200s", tmp->ob_type->tp_name);
4477 PyErr_SetString(PyExc_TypeError, "required field \"names\" missing from Import");
4480 *out = Import(names, lineno, col_offset, arena);
6625 if (PyDict_SetItemString(d, "Import", (PyObject*)Import_type) < 0)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A DPython-ast.c705 Import_type = make_type("Import", stmt_type, Import_fields, 1);
1337 Import(asdl_seq * names, int lineno, int col_offset, PyArena *arena) function
1344 p->v.Import.names = names;
2456 value = ast2obj_list(o->v.Import.names, ast2obj_alias);
4445 PyErr_Format(PyExc_TypeError, "Import field \"names\" must be a list, not a %.200s", tmp->ob_type->tp_name);
4460 PyErr_SetString(PyExc_TypeError, "required field \"names\" missing from Import");
4463 *out = Import(names, lineno, col_offset, arena);
6608 if (PyDict_SetItemString(d, "Import", (PyObject*)Import_type) < 0)

Completed in 52 milliseconds