Home
last modified time | relevance | path

Searched refs:Tuple (Results 1 – 17 of 17) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DSection.py154 Tuple = os.walk(FfsInf.EfiOutputPath)
155 for Dirpath, Dirnames, Filenames in Tuple:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dast.c408 if (asdl_seq_LEN(e->v.Tuple.elts)) { in set_context()
409 e->v.Tuple.ctx = ctx; in set_context()
410 s = e->v.Tuple.elts; in set_context()
653 result = Tuple(args, Store, LINENO(n), n->n_col_offset, c->c_arena); in compiler_complex_args()
1114 lc = comprehension(Tuple(t, Store, first->lineno, first->col_offset, in ast_for_listcomp()
1255 comp = comprehension(Tuple(t, Store, first->lineno, first->col_offset, in ast_for_comprehension()
1416 return Tuple(NULL, Load, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_atom()
1717 e = Tuple(elts, Load, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_trailer()
2136 return Tuple(tmp, Load, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_testlist()
2684 (asdl_seq_LEN(expr1->v.Tuple.elts) == 2 || in ast_for_exec_stmt()
[all …]
Dsymtable.c1289 VISIT_SEQ(st, expr, e->v.Tuple.elts); in symtable_visit_expr()
1324 assert(arg->v.Tuple.ctx == Store); in symtable_visit_params()
1354 !symtable_visit_params(st, arg->v.Tuple.elts, 0)) in symtable_visit_params_nested()
Dcompile.c2089 asdl_seq_LEN(s->v.Assert.test->v.Tuple.elts) > 0) { in compiler_assert()
2520 int n = asdl_seq_LEN(e->v.Tuple.elts); in compiler_tuple()
2521 if (e->v.Tuple.ctx == Store) { in compiler_tuple()
2524 VISIT_SEQ(c, expr, e->v.Tuple.elts); in compiler_tuple()
2525 if (e->v.Tuple.ctx == Load) { in compiler_tuple()
DPython-ast.c1964 Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset, PyArena in Tuple() function
1977 p->v.Tuple.elts = elts; in Tuple()
1978 p->v.Tuple.ctx = ctx; in Tuple()
2903 value = ast2obj_list(o->v.Tuple.elts, ast2obj_expr); in ast2obj_expr()
2908 value = ast2obj_expr_context(o->v.Tuple.ctx); in ast2obj_expr()
5749 *out = Tuple(elts, ctx, lineno, col_offset, arena); in obj2ast_expr()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
Dast.txt66 Tuple: nodes!
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dast.py57 elif isinstance(node, Tuple):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dast.py57 elif isinstance(node, Tuple):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dast.c408 if (asdl_seq_LEN(e->v.Tuple.elts)) { in set_context()
409 e->v.Tuple.ctx = ctx; in set_context()
410 s = e->v.Tuple.elts; in set_context()
653 result = Tuple(args, Store, LINENO(n), n->n_col_offset, c->c_arena); in compiler_complex_args()
1114 lc = comprehension(Tuple(t, Store, first->lineno, first->col_offset, in ast_for_listcomp()
1255 comp = comprehension(Tuple(t, Store, first->lineno, first->col_offset, in ast_for_comprehension()
1416 return Tuple(NULL, Load, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_atom()
1717 e = Tuple(elts, Load, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_trailer()
2131 return Tuple(tmp, Load, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_testlist()
2977 target = Tuple(_target, Store, first->lineno, first->col_offset, c->c_arena); in ast_for_for_stmt()
Dsymtable.c1287 VISIT_SEQ(st, expr, e->v.Tuple.elts); in symtable_visit_expr()
1322 assert(arg->v.Tuple.ctx == Store); in symtable_visit_params()
1352 !symtable_visit_params(st, arg->v.Tuple.elts, 0)) in symtable_visit_params_nested()
Dcompile.c2067 asdl_seq_LEN(s->v.Assert.test->v.Tuple.elts) > 0) { in compiler_assert()
2500 int n = asdl_seq_LEN(e->v.Tuple.elts); in compiler_tuple()
2501 if (e->v.Tuple.ctx == Store) { in compiler_tuple()
2504 VISIT_SEQ(c, expr, e->v.Tuple.elts); in compiler_tuple()
2505 if (e->v.Tuple.ctx == Load) { in compiler_tuple()
DPython-ast.c1947 Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset, PyArena in Tuple() function
1960 p->v.Tuple.elts = elts; in Tuple()
1961 p->v.Tuple.ctx = ctx; in Tuple()
2886 value = ast2obj_list(o->v.Tuple.elts, ast2obj_expr); in ast2obj_expr()
2891 value = ast2obj_expr_context(o->v.Tuple.ctx); in ast2obj_expr()
5732 *out = Tuple(elts, ctx, lineno, col_offset, arena); in obj2ast_expr()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
DPython.asdl81 | Tuple(expr* elts, expr_context ctx)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
DPython-ast.h308 } Tuple; member
508 #define Tuple(a0, a1, a2, a3, a4) _Py_Tuple(a0, a1, a2, a3, a4) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
DPython-ast.h308 } Tuple; member
508 #define Tuple(a0, a1, a2, a3, a4) _Py_Tuple(a0, a1, a2, a3, a4) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dtransformer.py578 return self.com_binary(Tuple, nodelist)
743 return Tuple((), lineno=nodelist[0][2])
Dast.py1309 class Tuple(Node): class