Searched refs:starargs (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | Python.asdl | 70 expr? starargs, expr? kwargs)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/ |
D | unparse.py | 489 if t.starargs: 493 self.dispatch(t.starargs)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | Python-ast.h | 267 expr_ty starargs; member 488 starargs, expr_ty kwargs, int lineno, int col_offset, PyArena
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | Python-ast.h | 267 expr_ty starargs; member 488 starargs, expr_ty kwargs, int lineno, int col_offset, PyArena
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | symtable.c | 1257 if (e->v.Call.starargs) in symtable_visit_expr() 1258 VISIT(st, expr, e->v.Call.starargs); in symtable_visit_expr()
|
D | Python-ast.c | 1755 Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty starargs, in Call() argument 1771 p->v.Call.starargs = starargs; in Call() 2779 value = ast2obj_expr(o->v.Call.starargs); in ast2obj_expr() 5343 expr_ty starargs; in obj2ast_expr() local 5412 res = obj2ast_expr(tmp, &starargs, arena); in obj2ast_expr() 5417 starargs = NULL; in obj2ast_expr() 5430 *out = Call(func, args, keywords, starargs, kwargs, lineno, in obj2ast_expr()
|
D | compile.c | 2568 if (e->v.Call.starargs) { in compiler_call() 2569 VISIT(c, expr, e->v.Call.starargs); in compiler_call()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | symtable.c | 1259 if (e->v.Call.starargs) in symtable_visit_expr() 1260 VISIT(st, expr, e->v.Call.starargs); in symtable_visit_expr()
|
D | Python-ast.c | 1772 Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty starargs, in Call() argument 1788 p->v.Call.starargs = starargs; in Call() 2796 value = ast2obj_expr(o->v.Call.starargs); in ast2obj_expr() 5360 expr_ty starargs; in obj2ast_expr() local 5429 res = obj2ast_expr(tmp, &starargs, arena); in obj2ast_expr() 5434 starargs = NULL; in obj2ast_expr() 5447 *out = Call(func, args, keywords, starargs, kwargs, lineno, in obj2ast_expr()
|
D | compile.c | 2588 if (e->v.Call.starargs) { in compiler_call() 2589 VISIT(c, expr, e->v.Call.starargs); in compiler_call()
|