Searched refs:testlist (Results 1 – 13 of 13) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
D | fix_isinstance.py | 31 testlist = results["args"] 32 args = testlist.children 47 atom = testlist.parent
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/ |
D | Grammar | 20 eval_input: testlist NEWLINE* ENDMARKER 37 expr_stmt: testlist (augassign (yield_expr|testlist) | 38 ('=' (yield_expr|testlist))*) 49 return_stmt: 'return' [testlist] 68 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] 116 testlist: test (',' test)* [','] 120 classdef: 'class' NAME ['(' [testlist] ')'] ':' suite 142 yield_expr: 'yield' [testlist]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
D | Grammar.txt | 32 eval_input: testlist NEWLINE* ENDMARKER 56 expr_stmt: testlist_star_expr (augassign (yield_expr|testlist) | 69 return_stmt: 'return' [testlist] 88 for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] 138 testlist: test (',' test)* [','] 158 yield_expr: 'yield' [testlist]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_genericpath.py | 64 testlist = ['', 'abc', 'Xbcd', 'Xb', 'XY', 'abcd', 66 for s1 in testlist: 67 for s2 in testlist:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | graminit.h | 74 #define testlist 327 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | graminit.h | 74 #define testlist 327 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | symbol.py | 84 testlist = 327 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | transformer.py | 574 def testlist(self, nodelist): member in Transformer 580 testlist_safe = testlist # XXX 581 testlist1 = testlist 582 exprlist = testlist 590 return self.testlist(nodelist) 1006 if t in (symbol.exprlist, symbol.testlist, symbol.testlist_safe, symbol.testlist_comp): 1427 symbol.testlist, 1482 symbol.testlist,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/ |
D | example.py | 173 (symbol.testlist,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | ast.c | 584 assert(TYPE(n) == testlist || in seq_for_testlist() 2126 assert(TYPE(n) == testlist || in ast_for_testlist() 2157 REQ(n, testlist); in ast_for_class_bases() 2217 if (TYPE(ch) == testlist) in ast_for_expr_stmt() 2260 if (TYPE(value) == testlist) in ast_for_expr_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | ast.c | 584 assert(TYPE(n) == testlist || in seq_for_testlist() 2121 assert(TYPE(n) == testlist || in ast_for_testlist() 2152 REQ(n, testlist); in ast_for_class_bases() 2212 if (TYPE(ch) == testlist) in ast_for_expr_stmt() 2255 if (TYPE(value) == testlist) in ast_for_expr_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | parsermodule.c | 916 VALIDATER(testlist); VALIDATER(varargslist); 1162 return (validate_repeating_list(tree, testlist, in validate_testlist() 3201 case testlist: in validate_node()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | parsermodule.c | 945 VALIDATER(testlist); VALIDATER(varargslist); 1191 return (validate_repeating_list(tree, testlist, in validate_testlist() 3230 case testlist: in validate_node()
|