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

1 2 34 5 6 7 8 91011>>

  /external/libmojo/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/lisa/libs/utils/
energy_model.py 75 def __new__(cls, capacity=None, power=None): member in class:ActiveState
76 return super(ActiveState, cls).__new__(cls, capacity, power)
    [all...]
  /external/llvm/utils/lit/lit/
Test.py 10 # We override __new__ and __getnewargs__ to ensure that pickling still
13 def __new__(cls, name, isFailure): member in class:ResultCode
16 cls._instances[name] = res = super(ResultCode, cls).__new__(cls)
  /external/protobuf/python/google/protobuf/
descriptor_pool.py 88 def __new__(cls, descriptor_db=None): member in class:DescriptorPool
  /external/protobuf/python/google/protobuf/internal/
_parameterized.py 239 # __x_extra_id__ is used to pass naming information to the __new__
354 def __new__(mcs, class_name, bases, dct): member in class:TestGeneratorMetaclass
363 return type.__new__(mcs, class_name, bases, dct)
419 Only works with metaclasses that do not override type.__new__.
  /external/python/cpython2/Lib/test/
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/python/cpython2/Lib/
weakref.py 277 def __new__(type, ob, callback, key): member in class:KeyedRef
278 self = ref.__new__(type, ob, callback)
  /external/scapy/scapy/layers/tls/crypto/
cipher_aead.py 40 def __new__(cls, ciph_name, bases, dct): member in class:_AEADCipherMetaclass
43 the_class = super(_AEADCipherMetaclass, cls).__new__(cls, ciph_name,
cipher_block.py 32 def __new__(cls, ciph_name, bases, dct): member in class:_BlockCipherMetaclass
35 the_class = super(_BlockCipherMetaclass, cls).__new__(cls, ciph_name,
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
math_utils.py 747 def __new__(cls, num_features, dtype): member in class:InputStatisticsFromMiniBatch._AdaptiveInputAuxiliaryStatistics
751 cls).__new__(
    [all...]
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/
state_space_model.py 61 def __new__( member in class:StateSpaceModelConfiguration
163 return super(StateSpaceModelConfiguration, cls).__new__(
    [all...]
  /external/tensorflow/tensorflow/python/ops/
lookup_ops.py 673 def __new__(cls, key): member in class:StrongHashSpec
681 return super(cls, StrongHashSpec).__new__(cls, "stronghash", key)
    [all...]
  /packages/services/Car/tools/
update-obd2-sensors.py 183 def __new__(cls, name, parents, dct): member in class:SensorMeta
198 newClass = super().__new__(cls, name, (SensorBase,), dct)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
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)
test_mmap.py 541 def __new__(klass, *args, **kwargs): member in class:MmapTests.test_subclass.anon_mmap
542 return mmap.mmap.__new__(klass, -1, *args, **kwargs)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
weakref.py 223 def __new__(type, ob, callback, key): member in class:KeyedRef
224 self = ref.__new__(type, ob, callback)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
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)
test_mmap.py 541 def __new__(klass, *args, **kwargs): member in class:MmapTests.test_subclass.anon_mmap
542 return mmap.mmap.__new__(klass, -1, *args, **kwargs)
  /prebuilts/gdb/linux-x86/lib/python2.7/
weakref.py 223 def __new__(type, ob, callback, key): member in class:KeyedRef
224 self = ref.__new__(type, ob, callback)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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)
test_mmap.py 541 def __new__(klass, *args, **kwargs): member in class:MmapTests.test_subclass.anon_mmap
542 return mmap.mmap.__new__(klass, -1, *args, **kwargs)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
weakref.py 223 def __new__(type, ob, callback, key): member in class:KeyedRef
224 self = ref.__new__(type, ob, callback)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
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)
test_mmap.py 541 def __new__(klass, *args, **kwargs): member in class:MmapTests.test_subclass.anon_mmap
542 return mmap.mmap.__new__(klass, -1, *args, **kwargs)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
weakref.py 223 def __new__(type, ob, callback, key): member in class:KeyedRef
224 self = ref.__new__(type, ob, callback)

Completed in 520 milliseconds

1 2 34 5 6 7 8 91011>>