HomeSort by relevance Sort by last modified time
    Searched defs:__new__ (Results 1 - 25 of 300) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
meta_class.py 11 def __new__(cls, name, bases, attrs): member in class:TracedMetaClass
16 return super(TracedMetaClass, cls).__new__(cls, name, bases, attrs)
  /external/chromium-trace/catapult/common/py_utils/py_utils/
slots_metaclass.py 23 def __new__(mcs, name, bases, attrs): member in class:SlotsMetaclass
27 return super(SlotsMetaclass, mcs).__new__(mcs, name, bases, attrs)
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
export_strategy.py 59 def __new__(cls, name, export_fn, strip_default_attrs=None): member in class:ExportStrategy
60 return super(ExportStrategy, cls).__new__(
  /external/scapy/scapy/
asn1packet.py 16 def __new__(cls, name, bases, dct): member in class:ASN1Packet_metaclass
19 return super(ASN1Packet_metaclass, cls).__new__(cls, name, bases, dct)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfSectionParser.py 201 def __new__(cls, FilePath, *args, **kwargs): member in class:InfSectionParser
209 ParserObject = super(InfSectionParser, cls).__new__(cls)
  /external/chromium-trace/catapult/devil/devil/utils/
geometry.py 51 def __new__(cls, top_left, bottom_right): member in class:Rectangle
56 return super(Rectangle, cls).__new__(cls, top_left, bottom_right)
  /external/libmojo/third_party/catapult/devil/devil/utils/
geometry.py 51 def __new__(cls, top_left, bottom_right): member in class:Rectangle
56 return super(Rectangle, cls).__new__(cls, top_left, bottom_right)
  /external/python/cpython2/Lib/
_threading_local.py 151 def __new__(cls, *args, **kw): member in class:_localbase
152 self = object.__new__(cls)
  /external/python/cpython2/Lib/ctypes/test/
test_init.py 9 def __new__(cls): member in class:X
10 result = super(X, cls).__new__(cls)
25 # doesn't call the structure's __new__ and __init__
30 # But explicitly creating an X structure calls __new__ and __init__, of course.
  /external/python/cpython3/Lib/ctypes/test/
test_init.py 9 def __new__(cls): member in class:X
10 result = super().__new__(cls)
25 # doesn't call the structure's __new__ and __init__
30 # But explicitly creating an X structure calls __new__ and __init__, of course.
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
tensor_signature.py 54 def __new__(cls, tensor): member in class:TensorSignature
56 return super(TensorSignature, cls).__new__(
58 return super(TensorSignature, cls).__new__(
  /external/tensorflow/tensorflow/python/estimator/
warm_starting_util.py 68 def __new__(cls, member in class:VocabInfo
75 return super(VocabInfo, cls).__new__(
227 def __new__(cls, member in class:WarmStartSettings
235 return super(WarmStartSettings, cls).__new__(
  /external/toolchain-utils/crosperf/
image_checksummer.py 48 def __new__(cls, *args, **kwargs): member in class:ImageChecksummer
51 cls._instance = super(ImageChecksummer, cls).__new__(
  /external/trappy/trappy/
dynamic.py 52 def __new__(mcs, name, bases, dct): member in class:DynamicTypeFactory
54 return type.__new__(mcs, name, bases, dct)
  /frameworks/rs/tests/lldb/tests/testcases/
test_call_api_funs.py 40 def __new__(self, name, bases, class_dict): member in class:_APIFunsExprTestsMeta
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_threading_local.py 151 def __new__(cls, *args, **kw): member in class:_localbase
152 self = object.__new__(cls)
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_init.py 9 def __new__(cls): member in class:X
10 result = super(X, cls).__new__(cls)
25 # doesn't call the structure's __new__ and __init__
30 # But explicitly creating an X structure calls __new__ and __init__, of course.
  /prebuilts/gdb/linux-x86/lib/python2.7/
_threading_local.py 151 def __new__(cls, *args, **kw): member in class:_localbase
152 self = object.__new__(cls)
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_init.py 9 def __new__(cls): member in class:X
10 result = super(X, cls).__new__(cls)
25 # doesn't call the structure's __new__ and __init__
30 # But explicitly creating an X structure calls __new__ and __init__, of course.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_threading_local.py 151 def __new__(cls, *args, **kw): member in class:_localbase
152 self = object.__new__(cls)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_init.py 9 def __new__(cls): member in class:X
10 result = super(X, cls).__new__(cls)
25 # doesn't call the structure's __new__ and __init__
30 # But explicitly creating an X structure calls __new__ and __init__, of course.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_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/ctypes/test/
test_init.py 9 def __new__(cls): member in class:X
10 result = super(X, cls).__new__(cls)
25 # doesn't call the structure's __new__ and __init__
30 # But explicitly creating an X structure calls __new__ and __init__, of course.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
abc.py 86 def __new__(mcls, name, bases, namespace): member in class:ABCMeta
87 cls = super(ABCMeta, mcls).__new__(mcls, name, bases, namespace)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
abc.py 86 def __new__(mcls, name, bases, namespace): member in class:ABCMeta
87 cls = super(ABCMeta, mcls).__new__(mcls, name, bases, namespace)

Completed in 2403 milliseconds

1 2 3 4 5 6 7 8 91011>>