Home
last modified time | relevance | path

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/
Dfix_isinstance.py31 testlist = results["args"]
32 args = testlist.children
47 atom = testlist.parent
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar20 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/
DGrammar.txt32 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/
Dtest_genericpath.py64 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/
Dgraminit.h74 #define testlist 327 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dgraminit.h74 #define testlist 327 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsymbol.py84 testlist = 327 variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dtransformer.py574 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/
Dexample.py173 (symbol.testlist,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dast.c584 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.10/Python/
Dast.c584 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/Modules/
Dparsermodule.c916 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/
Dparsermodule.c945 VALIDATER(testlist); VALIDATER(varargslist);
1191 return (validate_repeating_list(tree, testlist, in validate_testlist()
3230 case testlist: in validate_node()