/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/ |
D | ast.txt | 64 Slice: expr, flags*, lower&, upper&
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | symtable.c | 1458 if (s->v.Slice.lower) in symtable_visit_slice() 1459 VISIT(st, expr, s->v.Slice.lower) in symtable_visit_slice() 1460 if (s->v.Slice.upper) in symtable_visit_slice() 1461 VISIT(st, expr, s->v.Slice.upper) in symtable_visit_slice() 1462 if (s->v.Slice.step) in symtable_visit_slice() 1463 VISIT(st, expr, s->v.Slice.step) in symtable_visit_slice()
|
D | compile.c | 3265 if (s->v.Slice.lower) { in compiler_slice() 3266 VISIT(c, expr, s->v.Slice.lower); in compiler_slice() 3272 if (s->v.Slice.upper) { in compiler_slice() 3273 VISIT(c, expr, s->v.Slice.upper); in compiler_slice() 3279 if (s->v.Slice.step) { in compiler_slice() 3281 VISIT(c, expr, s->v.Slice.step); in compiler_slice() 3292 assert(s->v.Slice.step == NULL); in compiler_simple_slice() 3293 if (s->v.Slice.lower) { in compiler_simple_slice() 3297 VISIT(c, expr, s->v.Slice.lower); in compiler_simple_slice() 3299 if (s->v.Slice.upper) { in compiler_simple_slice() [all …]
|
D | Python-ast.c | 1979 Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena) in Slice() function 1986 p->v.Slice.lower = lower; in Slice() 1987 p->v.Slice.upper = upper; in Slice() 1988 p->v.Slice.step = step; in Slice() 2960 value = ast2obj_expr(o->v.Slice.lower); in ast2obj_slice() 2965 value = ast2obj_expr(o->v.Slice.upper); in ast2obj_slice() 2970 value = ast2obj_expr(o->v.Slice.step); in ast2obj_slice() 5871 *out = Slice(lower, upper, step, arena); in obj2ast_slice()
|
D | ast.c | 1595 return Slice(lower, upper, step, c->c_arena); in ast_for_slice()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | symtable.c | 1460 if (s->v.Slice.lower) in symtable_visit_slice() 1461 VISIT(st, expr, s->v.Slice.lower) in symtable_visit_slice() 1462 if (s->v.Slice.upper) in symtable_visit_slice() 1463 VISIT(st, expr, s->v.Slice.upper) in symtable_visit_slice() 1464 if (s->v.Slice.step) in symtable_visit_slice() 1465 VISIT(st, expr, s->v.Slice.step) in symtable_visit_slice()
|
D | compile.c | 3285 if (s->v.Slice.lower) { in compiler_slice() 3286 VISIT(c, expr, s->v.Slice.lower); in compiler_slice() 3292 if (s->v.Slice.upper) { in compiler_slice() 3293 VISIT(c, expr, s->v.Slice.upper); in compiler_slice() 3299 if (s->v.Slice.step) { in compiler_slice() 3301 VISIT(c, expr, s->v.Slice.step); in compiler_slice() 3312 assert(s->v.Slice.step == NULL); in compiler_simple_slice() 3313 if (s->v.Slice.lower) { in compiler_simple_slice() 3317 VISIT(c, expr, s->v.Slice.lower); in compiler_simple_slice() 3319 if (s->v.Slice.upper) { in compiler_simple_slice() [all …]
|
D | Python-ast.c | 1996 Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena) in Slice() function 2003 p->v.Slice.lower = lower; in Slice() 2004 p->v.Slice.upper = upper; in Slice() 2005 p->v.Slice.step = step; in Slice() 2977 value = ast2obj_expr(o->v.Slice.lower); in ast2obj_slice() 2982 value = ast2obj_expr(o->v.Slice.upper); in ast2obj_slice() 2987 value = ast2obj_expr(o->v.Slice.step); in ast2obj_slice() 5888 *out = Slice(lower, upper, step, arena); in obj2ast_slice()
|
D | ast.c | 1595 return Slice(lower, upper, step, c->c_arena); in ast_for_slice()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | Python.asdl | 88 slice = Ellipsis | Slice(expr? lower, expr? upper, expr? step)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | Python-ast.h | 323 } Slice; member 513 #define Slice(a0, a1, a2, a3) _Py_Slice(a0, a1, a2, a3) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | Python-ast.h | 323 } Slice; member 513 #define Slice(a0, a1, a2, a3) _Py_Slice(a0, a1, a2, a3) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | transformer.py | 997 if l.__class__ in (Name, Slice, Subscript, Getattr): 1391 return Slice(primary, assigning, lower, upper,
|
D | ast.py | 1171 class Slice(Node): class
|
D | pycodegen.py | 1546 ast.Slice: AugSlice,
|