Home
last modified time | relevance | path

Searched refs:decorators (Results 1 – 15 of 15) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dgraminit.h7 #define decorators 260 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dgraminit.h7 #define decorators 260 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
Dast.txt15 Function: decorators&, name*, argnames*, defaults!, flags*, doc*, code
17 Class: name*, bases!, doc*, code, decorators& = None
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dast.py311 def __init__(self, name, bases, doc, code, decorators = None, lineno=None): argument
316 self.decorators = decorators
325 children.append(self.decorators)
332 if self.decorators is not None:
333 nodelist.append(self.decorators)
337 … %s)" % (repr(self.name), repr(self.bases), repr(self.doc), repr(self.code), repr(self.decorators))
547 def __init__(self, decorators, name, argnames, defaults, flags, doc, code, lineno=None): argument
548 self.decorators = decorators
565 children.append(self.decorators)
576 if self.decorators is not None:
[all …]
Dtransformer.py227 def decorators(self, nodelist): member in Transformer
236 assert nodelist[0][0] == symbol.decorators
241 decorators = self.decorators(nodelist[0][1:])
243 cls.decorators = decorators
253 assert nodelist[0][0] == symbol.decorators
254 decorators = self.decorators(nodelist[0][1:])
257 decorators = None
277 return Function(decorators, name, names, defaults, flags, doc, code,
Dsymbols.py226 if node.decorators:
227 self.visit(node.decorators, parent)
Dpycodegen.py376 if not isLambda and node.decorators:
377 for decorator in node.decorators.nodes:
379 ndecorators = len(node.decorators.nodes)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsymbol.py17 decorators = 260 variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_decorators.py87 decorators = MiscDecorators()
88 @decorators.author('Cleese')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar23 decorators: decorator+
24 decorated: decorators (classdef | funcdef)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DGrammar.txt35 decorators: decorator+
36 decorated: decorators (classdef | funcdef)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c2617 ok = validate_ntype(tree, decorators) && nch >= 1; in validate_decorators()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dparsermodule.c2646 ok = validate_ntype(tree, decorators) && nch >= 1; in validate_decorators()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dast.c878 REQ(n, decorators); in ast_for_decorators()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dast.c878 REQ(n, decorators); in ast_for_decorators()