Searched refs:mod_ty (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Python/ |
D | future.c | 58 future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename) in future_parse() 120 PyFuture_FromAST(mod_ty mod, const char *filename) in PyFuture_FromAST()
|
D | pythonrun.c | 59 static PyObject *run_mod(mod_ty, const char *, PyObject *, PyObject *, 810 mod_ty mod; in PyRun_InteractiveOneFlags() 1332 mod_ty mod; in PyRun_StringFlags() 1349 mod_ty mod; in PyRun_FileExFlags() 1368 run_mod(mod_ty mod, const char *filename, PyObject *globals, PyObject *locals, in run_mod() 1418 mod_ty mod; in Py_CompileStringFlags() 1442 mod_ty mod; in Py_SymtableString() 1461 mod_ty 1465 mod_ty mod; in PyParser_ASTFromString() 1489 mod_ty [all …]
|
D | Python-ast.c | 969 static int obj2ast_mod(PyObject* obj, mod_ty* out, PyArena* arena); 987 mod_ty 990 mod_ty p; in Module() 991 p = (mod_ty)PyArena_Malloc(arena, sizeof(*p)); in Module() 999 mod_ty 1002 mod_ty p; in Interactive() 1003 p = (mod_ty)PyArena_Malloc(arena, sizeof(*p)); in Interactive() 1011 mod_ty 1014 mod_ty p; in Expression() 1020 p = (mod_ty)PyArena_Malloc(arena, sizeof(*p)); in Expression() [all …]
|
D | compile.c | 161 static PyCodeObject *compiler_mod(struct compiler *, mod_ty); 254 PyAST_Compile(mod_ty mod, const char *filename, PyCompilerFlags *flags, in PyAST_Compile() 304 mod_ty mod; in PyNode_Compile() 1173 compiler_mod(struct compiler *c, mod_ty mod) in compiler_mod()
|
D | symtable.c | 219 PySymtable_Build(mod_ty mod, const char *filename, PyFutureFeatures *future) in PySymtable_Build()
|
D | bltinmodule.c | 525 mod_ty mod; in builtin_compile()
|
D | import.c | 871 mod_ty mod; in parse_source_module()
|
D | ast.c | 215 mod_ty
|
/external/python/cpython2/Include/ |
D | ast.h | 7 PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags,
|
D | Python-ast.h | 5 typedef struct _mod *mod_ty; typedef 376 mod_ty _Py_Module(asdl_seq * body, PyArena *arena); 378 mod_ty _Py_Interactive(asdl_seq * body, PyArena *arena); 380 mod_ty _Py_Expression(expr_ty body, PyArena *arena); 382 mod_ty _Py_Suite(asdl_seq * body, PyArena *arena); 533 PyObject* PyAST_mod2obj(mod_ty t); 534 mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);
|
D | symtable.h | 55 PyAPI_FUNC(struct symtable *) PySymtable_Build(mod_ty, const char *,
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 447 mod_ty mod; in parser_compilest()
|