HomeSort by relevance Sort by last modified time
    Searched refs:decorators (Results 1 - 25 of 29) sorted by null

1 2

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/utils/
__init__.py 2 from networkx.utils.decorators import *
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
graminit.h 7 #define decorators 260 macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symbol.py 17 decorators = 260 variable
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
graminit.h 7 #define decorators 260 macro
  /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/compiler/
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...]
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...]
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/compiler/
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...]
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...]
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/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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/utils/tests/
test_decorators.py 7 from networkx.utils.decorators import open_file,require,not_implemented_for
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/
clique.py 21 from networkx.utils.decorators import *
  /external/jetty/src/java/org/eclipse/jetty/servlet/
ServletContextHandler.java 488 * @param decorators The lis of {@link Decorator}s
490 public void setDecorators(List<Decorator> decorators)
493 _decorators.addAll(decorators);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 

Completed in 497 milliseconds

1 2