Home
last modified time | relevance | path

Searched refs:decorated (Results 1 – 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dgraminit.h8 #define decorated 261 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dgraminit.h8 #define decorated 261 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsymbol.py18 decorated = 261 variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar24 decorated: decorators (classdef | funcdef)
65 …pound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DGrammar.txt36 decorated: decorators (classdef | funcdef)
85 …pound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decorated
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_tempfile.py293 decorated = '"%s"' % sys.executable
296 decorated = sys.executable
298 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
Dtest_grammar.py803 x.decorated = True
808 self.assertEqual(G.decorated, True)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
Dpy2_test_grammar.py799 x.decorated = True
804 self.assertEqual(G.decorated, True)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c1583 || (ntype == decorated)) in validate_compound_stmt()
2687 int ok = (validate_ntype(tree, decorated) in validate_decorated()
3094 case decorated: in validate_node()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dparsermodule.c1612 || (ntype == decorated)) in validate_compound_stmt()
2716 int ok = (validate_ntype(tree, decorated) in validate_decorated()
3123 case decorated: in validate_node()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dast.c926 REQ(n, decorated); in ast_for_decorated()
3312 case decorated: in ast_for_stmt()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dast.c926 REQ(n, decorated); in ast_for_decorated()
3295 case decorated: in ast_for_stmt()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dtransformer.py235 def decorated(self, nodelist): member in Transformer