/external/junit/src/junit/extensions/ |
TestDecorator.java | 9 * test decorators. Test decorator subclasses can be introduced to add behaviour
|
/external/llvm/utils/emacs/ |
tablegen-mode.el | 10 (defvar td-decorators-face 'td-decorators-face 11 "Face method decorators.") 12 (make-face 'td-decorators-face) 35 '("^[ \t]*\\(@.+\\)" 1 'td-decorators-face)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_decorators.py | 87 decorators = MiscDecorators() 88 @decorators.author('Cleese') 95 # of expressions for decorators. 164 # You can't put multiple decorators on a single line: 194 # Test that decorators are applied in the proper order to the function 206 "Application order of decorators is incorrect") 217 # When there are multiple decorators, these steps should be 219 # iterate through the decorators in the reverse of the order they
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_decorators.py | 87 decorators = MiscDecorators() 88 @decorators.author('Cleese') 95 # of expressions for decorators. 164 # You can't put multiple decorators on a single line: 194 # Test that decorators are applied in the proper order to the function 206 "Application order of decorators is incorrect") 217 # When there are multiple decorators, these steps should be 219 # iterate through the decorators in the reverse of the order they
|
/external/antlr/antlr-3.4/runtime/Python/ |
ChangeLog | 30 parser rules to add decorators to the rule method.
|
/external/chromium_org/third_party/jinja2/ |
__init__.py | 52 # decorators and public utilities
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
graminit.h | 7 #define decorators 260 macro
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
graminit.h | 7 #define decorators 260 macro
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 311 def __init__(self, name, bases, doc, code, decorators = None, lineno=None): 316 self.decorators = decorators 325 children.append(self.decorators) 332 if self.decorators is not None: 333 nodelist.append(self.decorators) 337 return "Class(%s, %s, %s, %s, %s)" % (repr(self.name), repr(self.bases), repr(self.doc), repr(self.code), repr(self.decorators)) 387 class Decorators(Node): 401 return "Decorators(%s)" % (repr(self.nodes),) 547 def __init__(self, decorators, name, argnames, defaults, flags, doc, code, lineno=None) [all...] |
transformer.py | 227 def decorators(self, nodelist): member in class:Transformer 228 # decorators: decorator ([NEWLINE] decorator)* NEWLINE 233 return Decorators(items) 236 assert nodelist[0][0] == symbol.decorators 241 decorators = self.decorators(nodelist[0][1:]) 243 cls.decorators = decorators 249 # funcdef: [decorators] 'def' NAME parameters ':' suite 253 assert nodelist[0][0] == symbol.decorators [all...] |
symbols.py | 226 if node.decorators: 227 self.visit(node.decorators, parent)
|
pycodegen.py | 376 if not isLambda and node.decorators: 377 for decorator in node.decorators.nodes: 379 ndecorators = len(node.decorators.nodes) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
symbol.py | 17 decorators = 260 variable
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 311 def __init__(self, name, bases, doc, code, decorators = None, lineno=None): 316 self.decorators = decorators 325 children.append(self.decorators) 332 if self.decorators is not None: 333 nodelist.append(self.decorators) 337 return "Class(%s, %s, %s, %s, %s)" % (repr(self.name), repr(self.bases), repr(self.doc), repr(self.code), repr(self.decorators)) 387 class Decorators(Node): 401 return "Decorators(%s)" % (repr(self.nodes),) 547 def __init__(self, decorators, name, argnames, defaults, flags, doc, code, lineno=None) [all...] |
transformer.py | 227 def decorators(self, nodelist): member in class:Transformer 228 # decorators: decorator ([NEWLINE] decorator)* NEWLINE 233 return Decorators(items) 236 assert nodelist[0][0] == symbol.decorators 241 decorators = self.decorators(nodelist[0][1:]) 243 cls.decorators = decorators 249 # funcdef: [decorators] 'def' NAME parameters ':' suite 253 assert nodelist[0][0] == symbol.decorators [all...] |
symbols.py | 226 if node.decorators: 227 self.visit(node.decorators, parent)
|
pycodegen.py | 376 if not isLambda and node.decorators: 377 for decorator in node.decorators.nodes: 379 ndecorators = len(node.decorators.nodes) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
symbol.py | 17 decorators = 260 variable
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
Grammar.txt | 35 decorators: decorator+ 36 decorated: decorators (classdef | funcdef)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
Grammar.txt | 35 decorators: decorator+ 36 decorated: decorators (classdef | funcdef)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
FolderDecorator.java | 34 * A {@link ILabelDecorator} associated with an org.eclipse.ui.decorators extension.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py3_test_grammar.py | 150 ### [decorators] 'def' NAME parameters ['->' test] ':' suite 152 ### decorators: decorator+ 316 # Check for SF Bug #1697248 - mixing decorators and a return annotation 741 # decorators: decorator+ 742 # decorated: decorators (classdef | funcdef)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py3_test_grammar.py | 150 ### [decorators] 'def' NAME parameters ['->' test] ':' suite 152 ### decorators: decorator+ 316 # Check for SF Bug #1697248 - mixing decorators and a return annotation 741 # decorators: decorator+ 742 # decorated: decorators (classdef | funcdef)
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
compiled_file_system.py | 25 Note that this decorator must be listed first in any list of decorators to
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
python.js | 263 // Handle decorators
|