Searched refs:funcdef (Results 1 – 13 of 13) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/ |
D | log.py | 179 funcdef = symbol.funcdef 190 if sym == funcdef:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | graminit.h | 9 #define funcdef 262 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | graminit.h | 9 #define funcdef 262 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/ |
D | Grammar | 24 decorated: decorators (classdef | funcdef) 25 funcdef: 'def' NAME parameters ':' suite 65 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | symbol.py | 19 funcdef = 262 variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
D | Grammar.txt | 36 decorated: decorators (classdef | funcdef) 37 funcdef: 'def' NAME parameters ['->' test] ':' suite 85 compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef | decora…
|
D | fixer_util.py | 236 if parent.type in (syms.funcdef, syms.classdef): 339 _def_syms = set([syms.classdef, syms.funcdef]) 382 _block_syms = set([syms.funcdef, syms.classdef, syms.trailer])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/ |
D | example.py | 52 if cstmt[0] == symbol.funcdef:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | transformer.py | 162 if n == symbol.funcdef: 163 return self.funcdef(node[1:]) 237 if nodelist[1][0] == symbol.funcdef: 239 return self.funcdef(n) 247 def funcdef(self, nodelist): member in Transformer 1457 symbol.funcdef,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | parsermodule.c | 1581 || (ntype == funcdef) in validate_compound_stmt() 2669 int ok = (validate_ntype(tree, funcdef) in validate_funcdef() 2690 if (TYPE(RCHILD(tree, -1)) == funcdef) in validate_decorated() 3085 case funcdef: in validate_node()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | parsermodule.c | 1610 || (ntype == funcdef) in validate_compound_stmt() 2698 int ok = (validate_ntype(tree, funcdef) in validate_funcdef() 2719 if (TYPE(RCHILD(tree, -1)) == funcdef) in validate_decorated() 3114 case funcdef: in validate_node()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | ast.c | 901 REQ(n, funcdef); in ast_for_funcdef() 932 assert(TYPE(CHILD(n, 1)) == funcdef || in ast_for_decorated() 935 if (TYPE(CHILD(n, 1)) == funcdef) { in ast_for_decorated() 3308 case funcdef: in ast_for_stmt()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | ast.c | 901 REQ(n, funcdef); in ast_for_funcdef() 932 assert(TYPE(CHILD(n, 1)) == funcdef || in ast_for_decorated() 935 if (TYPE(CHILD(n, 1)) == funcdef) { in ast_for_decorated() 3291 case funcdef: in ast_for_stmt()
|