/external/chromium_org/tools/telemetry/docs/ |
telemetry.page.cloud_storage.html | 75 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#CloudStorageError-__new__">__new__</a>(S, ...) -> a new object with type S, a subtype of T</tt></dl> 134 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#CredentialsError-__new__">__new__</a>(S, ...) -> a new object with type S, a subtype of T</tt></dl> 193 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#NotFoundError-__new__">__new__</a>(S, ...) ->&n (…) [all...] |
telemetry.page.actions.page_action.html | 131 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#PageActionFailed-__new__">__new__</a>(S, ...) -> a new <a href="__builtin__.html#object">object</a> with type S, a subtype of T</tt></dl> 189 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#PageActionInvalidTimelineMarker-__new__">__new__</a>(S, ...) -> a new <a href="__builtin__.html#object">object</a> with type S, a subtype of T</tt></dl> 247 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#PageActionNotSupported-__new__">__new__</a>(S, ...)&nbs (…) [all...] |
telemetry.core.browser_finder.html | 67 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#BrowserFinderException-__new__">__new__</a>(S, ...) -> a new object with type S, a subtype of T</tt></dl> 125 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#BrowserTypeRequiredException-__new__">__new__</a>(S, ...) -> a new object with type S, a subtype of T</tt></dl>
|
telemetry.core.timeline.model.html | 77 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#MarkerMismatchError-__new__">__new__</a>(S, ...) -> a new <a href="__builtin__.html#object">object</a> with type S, a subtype of T</tt></dl> 135 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#MarkerOverlapError-__new__">__new__</a>(S, ...) -> a new <a href="__builtin__.html#object">object</a> with type S, a subtype of T</tt></dl>
|
telemetry.core.util.html | 67 <dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#TimeoutException-__new__">__new__</a>(S, ...) -> a new object with type S, a subtype of T</tt></dl>
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
reflection.py | 100 def __new__(cls, name, bases, dictionary): member in class:GeneratedProtocolMessageType 103 We override __new__ because this is apparently the only place 125 new_class = superclass.__new__(cls, name, bases, dictionary)
|
/external/llvm/utils/lit/lit/ |
Test.py | 8 # We override __new__ and __getnewargs__ to ensure that pickling still 11 def __new__(cls, name, isFailure): member in class:ResultCode 14 cls._instances[name] = res = super(ResultCode, cls).__new__(cls)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
copy_reg.py | 48 obj = object.__new__(cls) 50 obj = base.__new__(cls, state) 93 return cls.__new__(cls, *args)
|
abc.py | 86 def __new__(mcls, name, bases, namespace): member in class:ABCMeta 87 cls = super(ABCMeta, mcls).__new__(mcls, name, bases, namespace)
|
_threading_local.py | 151 def __new__(cls, *args, **kw): member in class:_localbase 152 self = object.__new__(cls)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
copy_reg.py | 48 obj = object.__new__(cls) 50 obj = base.__new__(cls, state) 93 return cls.__new__(cls, *args)
|
abc.py | 86 def __new__(mcls, name, bases, namespace): member in class:ABCMeta 87 cls = super(ABCMeta, mcls).__new__(mcls, name, bases, namespace)
|
_threading_local.py | 151 def __new__(cls, *args, **kw): member in class:_localbase 152 self = object.__new__(cls)
|
/external/chromium_org/third_party/markupsafe/ |
__init__.py | 68 def __new__(cls, base=u'', encoding=None, errors='strict'): member in class:Markup 72 return text_type.__new__(cls, base) 73 return text_type.__new__(cls, base, encoding, errors)
|
/external/chromium_org/tools/telemetry/telemetry/results/ |
page_test_results.py | 25 result = cls.__new__(cls)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_module.py | 12 foo = ModuleType.__new__(ModuleType)
|
test_abc.py | 202 def __new__(cls): member in class:TestABC.test_all_new_methods_are_called.B 204 return super(B, cls).__new__(cls)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_module.py | 12 foo = ModuleType.__new__(ModuleType)
|
test_abc.py | 202 def __new__(cls): member in class:TestABC.test_all_new_methods_are_called.B 204 return super(B, cls).__new__(cls)
|
/external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/ |
vars_dict_lib.py | 108 def __new__(cls): member in class:VarsDict 113 return tuple.__new__(cls, lists)
|
/external/markdown/markdown/ |
odict.py | 8 def __new__(cls, *args, **kwargs): member in class:OrderedDict 9 instance = super(OrderedDict, cls).__new__(cls, *args, **kwargs)
|
/external/skia/platform_tools/android/gyp_gen/ |
vars_dict_lib.py | 108 def __new__(cls): member in class:VarsDict 113 return tuple.__new__(cls, lists)
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
bitmap.py | 62 def __new__(cls, r, g, b, default_color=None): member in class:ColorHistogram 63 return super(ColorHistogram, cls).__new__(cls, r, g, b, default_color) 91 def __new__(cls, r, g, b, a=255): member in class:RgbaColor 92 return super(RgbaColor, cls).__new__(cls, r, g, b, a)
|
/external/chromium_org/third_party/markdown/ |
odict.py | 51 def __new__(cls, *args, **kwargs): member in class:OrderedDict 52 instance = super(OrderedDict, cls).__new__(cls, *args, **kwargs)
|
/external/clang/utils/ABITest/ |
Enumeration.py | 9 def __new__(type): member in class:Aleph0 11 type._singleton = int.__new__(type)
|