HomeSort by relevance Sort by last modified time
    Searched full:__call__ (Results 1 - 25 of 441) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/operation/
base.py 27 All operations should implement __call__(self, ctx) function, which will be
31 def __call__(self, ctx): member in class:Operation
32 raise NotImplementedError("__call__() not implemented in %s" %
db.py 43 def __call__(self, context): member in class:Put
66 def __call__(self, context): member in class:Delete
counters.py 43 def __call__(self, context): member in class:Increment
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/der/
encoder.py 25 def __call__(self, client, defMode=1, maxChunkSize=0): member in class:Encoder
26 return encoder.Encoder.__call__(self, client, defMode, maxChunkSize)
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_recursive.py 21 def __call__(self, environ, start_response): member in class:Middleware
48 def __call__(self, environ, start_response): member in class:test_ForwardRequest_url.TestForwardRequestMiddleware
56 def __call__(self, environ, start_response): member in class:test_ForwardRequest_environ.TestForwardRequestMiddleware
68 def __call__(self, environ, start_response): member in class:test_ForwardRequest_factory.TestForwardRequestMiddleware
101 def __call__(self, environ, start_response): member in class:test_ForwardRequestException.TestForwardRequestExceptionMiddleware
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_register.py 48 def __call__(self, prompt=''): member in class:RawInputs
59 def __call__(self, *args): member in class:FakeOpener
113 register_module.raw_input = inputs.__call__
165 register_module.raw_input = inputs.__call__
183 register_module.raw_input = inputs.__call__
227 register_module.raw_input = inputs.__call__
238 register_module.raw_input = inputs.__call__
256 register_module.raw_input = inputs.__call__
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_register.py 48 def __call__(self, prompt=''): member in class:RawInputs
59 def __call__(self, *args): member in class:FakeOpener
113 register_module.raw_input = inputs.__call__
165 register_module.raw_input = inputs.__call__
183 register_module.raw_input = inputs.__call__
227 register_module.raw_input = inputs.__call__
238 register_module.raw_input = inputs.__call__
256 register_module.raw_input = inputs.__call__
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
__init__.py 126 if not hasattr(entry[0], '__call__') or \
127 not hasattr(entry[1], '__call__') or \
128 (entry[2] is not None and not hasattr(entry[2], '__call__')) or \
129 (entry[3] is not None and not hasattr(entry[3], '__call__')) or \
130 (len(entry) > 4 and entry[4] is not None and not hasattr(entry[4], '__call__')) or \
131 (len(entry) > 5 and entry[5] is not None and not hasattr(entry[5], '__call__')):
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
__init__.py 126 if not hasattr(entry[0], '__call__') or \
127 not hasattr(entry[1], '__call__') or \
128 (entry[2] is not None and not hasattr(entry[2], '__call__')) or \
129 (entry[3] is not None and not hasattr(entry[3], '__call__')) or \
130 (len(entry) > 4 and entry[4] is not None and not hasattr(entry[4], '__call__')) or \
131 (len(entry) > 5 and entry[5] is not None and not hasattr(entry[5], '__call__')):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
__init__.py 126 if not hasattr(entry[0], '__call__') or \
127 not hasattr(entry[1], '__call__') or \
128 (entry[2] is not None and not hasattr(entry[2], '__call__')) or \
129 (entry[3] is not None and not hasattr(entry[3], '__call__')) or \
130 (len(entry) > 4 and entry[4] is not None and not hasattr(entry[4], '__call__')) or \
131 (len(entry) > 5 and entry[5] is not None and not hasattr(entry[5], '__call__')):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
__init__.py 126 if not hasattr(entry[0], '__call__') or \
127 not hasattr(entry[1], '__call__') or \
128 (entry[2] is not None and not hasattr(entry[2], '__call__')) or \
129 (entry[3] is not None and not hasattr(entry[3], '__call__')) or \
130 (len(entry) > 4 and entry[4] is not None and not hasattr(entry[4], '__call__')) or \
131 (len(entry) > 5 and entry[5] is not None and not hasattr(entry[5], '__call__')):
  /external/opencv3/3rdparty/jinja2/
_compat.py 97 # for one level to something closer to type (that's why __call__ and
103 __call__ = type.__call__ variable in class:with_metaclass.metaclass
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_operator.py 3 operator.isCallable(obj) -> hasattr(obj, '__call__')
50 @invocation("hasattr(%s, '__call__')")
53 args = [obj.clone(), String(u", "), String(u"'__call__'")]
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
unwinder.py 24 An unwinder has a single method __call__ and the attributes
41 def __call__(self, pending_frame): member in class:Unwinder
50 raise NotImplementedError("Unwinder __call__.")
printing.py 56 def __call__(self, val): member in class:PrettyPrinter
58 raise NotImplementedError("PrettyPrinter __call__")
88 which has attributes: name, enabled, __call__.
102 If printer is an object, __call__ is a method of two arguments:
114 if not hasattr(printer, "__call__"):
115 raise TypeError("printer missing attribute: __call__")
203 def __call__(self, val): member in class:RegexpCollectionPrettyPrinter
257 def __call__(self, val): member in class:FlagEnumerationPrinter
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_operator.py 3 operator.isCallable(obj) -> hasattr(obj, '__call__')
50 @invocation("hasattr(%s, '__call__')")
53 args = [obj.clone(), String(u", "), String(u"'__call__'")]
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
unwinder.py 24 An unwinder has a single method __call__ and the attributes
41 def __call__(self, pending_frame): member in class:Unwinder
50 raise NotImplementedError("Unwinder __call__.")
printing.py 56 def __call__(self, val): member in class:PrettyPrinter
58 raise NotImplementedError("PrettyPrinter __call__")
88 which has attributes: name, enabled, __call__.
102 If printer is an object, __call__ is a method of two arguments:
114 if not hasattr(printer, "__call__"):
115 raise TypeError("printer missing attribute: __call__")
203 def __call__(self, val): member in class:RegexpCollectionPrettyPrinter
257 def __call__(self, val): member in class:FlagEnumerationPrinter
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_operator.py 3 operator.isCallable(obj) -> hasattr(obj, '__call__')
50 @invocation("hasattr(%s, '__call__')")
53 args = [obj.clone(), String(u", "), String(u"'__call__'")]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_operator.py 3 operator.isCallable(obj) -> hasattr(obj, '__call__')
50 @invocation("hasattr(%s, '__call__')")
53 args = [obj.clone(), String(u", "), String(u"'__call__'")]
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
debugapp.py 19 def __call__(self, environ, start_response): member in class:SimpleApplication
37 def __call__(self, environ, start_response): member in class:SlowConsumer
  /external/chromium-trace/catapult/third_party/WebOb/docs/pycon2011/
response_table.rst 68 __call__() __call__()
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/
encoder.py 82 def __call__(self, client, defMode=0, maxChunkSize=0): member in class:Encoder
83 return encoder.Encoder.__call__(self, client, defMode, maxChunkSize)
  /external/chromium-trace/catapult/third_party/Paste/paste/
pony.py 33 def __call__(self, environ, start_response): member in class:PonyMiddleware
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
classinstance.py 26 def __call__(self, *args, **kw): member in class:_methodwrapper

Completed in 516 milliseconds

1 2 3 4 5 6 7 8 91011>>