Home
last modified time | relevance | path

Searched refs:ImportFrom (Results 1 – 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dfuture.c22 names = s->v.ImportFrom.names; in future_check_features()
95 if (s->v.ImportFrom.module == future) { in future_parse()
Dcompile.c1977 int i, n = asdl_seq_LEN(s->v.ImportFrom.names); in compiler_from_import()
1992 if (s->v.ImportFrom.level == 0 && c->c_flags && in compiler_from_import()
1996 level = PyInt_FromLong(s->v.ImportFrom.level); in compiler_from_import()
2005 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i); in compiler_from_import()
2010 if (s->lineno > c->c_future->ff_lineno && s->v.ImportFrom.module && in compiler_from_import()
2011 !strcmp(PyString_AS_STRING(s->v.ImportFrom.module), "__future__")) { in compiler_from_import()
2022 if (s->v.ImportFrom.module) { in compiler_from_import()
2023 ADDOP_NAME(c, IMPORT_NAME, s->v.ImportFrom.module, names); in compiler_from_import()
2029 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i); in compiler_from_import()
DPython-ast.c1351 ImportFrom(identifier module, asdl_seq * names, int level, int lineno, int in ImportFrom() function
1359 p->v.ImportFrom.module = module; in ImportFrom()
1360 p->v.ImportFrom.names = names; in ImportFrom()
1361 p->v.ImportFrom.level = level; in ImportFrom()
2465 value = ast2obj_identifier(o->v.ImportFrom.module); in ast2obj_stmt()
2470 value = ast2obj_list(o->v.ImportFrom.names, ast2obj_alias); in ast2obj_stmt()
2475 value = ast2obj_int(o->v.ImportFrom.level); in ast2obj_stmt()
4523 *out = ImportFrom(module, names, level, lineno, col_offset, in obj2ast_stmt()
Dsymtable.c1116 VISIT_SEQ(st, alias, s->v.ImportFrom.names); in symtable_visit_stmt()
Dast.c2630 return ImportFrom(modname, aliases, ndots, lineno, col_offset, in ast_for_import_stmt()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dfuture.c22 names = s->v.ImportFrom.names; in future_check_features()
88 identifier modname = s->v.ImportFrom.module; in future_parse()
Dcompile.c1999 int i, n = asdl_seq_LEN(s->v.ImportFrom.names); in compiler_from_import()
2014 if (s->v.ImportFrom.level == 0 && c->c_flags && in compiler_from_import()
2018 level = PyInt_FromLong(s->v.ImportFrom.level); in compiler_from_import()
2027 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i); in compiler_from_import()
2032 if (s->lineno > c->c_future->ff_lineno && s->v.ImportFrom.module && in compiler_from_import()
2033 !strcmp(PyString_AS_STRING(s->v.ImportFrom.module), "__future__")) { in compiler_from_import()
2044 if (s->v.ImportFrom.module) { in compiler_from_import()
2045 ADDOP_NAME(c, IMPORT_NAME, s->v.ImportFrom.module, names); in compiler_from_import()
2051 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i); in compiler_from_import()
DPython-ast.c1368 ImportFrom(identifier module, asdl_seq * names, int level, int lineno, int in ImportFrom() function
1376 p->v.ImportFrom.module = module; in ImportFrom()
1377 p->v.ImportFrom.names = names; in ImportFrom()
1378 p->v.ImportFrom.level = level; in ImportFrom()
2482 value = ast2obj_identifier(o->v.ImportFrom.module); in ast2obj_stmt()
2487 value = ast2obj_list(o->v.ImportFrom.names, ast2obj_alias); in ast2obj_stmt()
2492 value = ast2obj_int(o->v.ImportFrom.level); in ast2obj_stmt()
4540 *out = ImportFrom(module, names, level, lineno, col_offset, in obj2ast_stmt()
Dsymtable.c1118 VISIT_SEQ(st, alias, s->v.ImportFrom.names); in symtable_visit_stmt()
Dast.c2635 return ImportFrom(modname, aliases, ndots, lineno, col_offset, in ast_for_import_stmt()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
DPython.asdl37 | ImportFrom(identifier? module, alias* names, int? level)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
DPython-ast.h166 } ImportFrom; member
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
DPython-ast.h166 } ImportFrom; member
432 #define ImportFrom(a0, a1, a2, a3, a4, a5) _Py_ImportFrom(a0, a1, a2, a3, a4, a5) macro