/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)
|
/prebuilts/ndk/r10/sources/cxx-stl/system/include/ |
new | 2 #ifndef __NEW__ 3 #define __NEW__ 32 #endif // __NEW__
|
/prebuilts/ndk/r11/sources/cxx-stl/system/include/ |
new | 2 #ifndef __NEW__ 3 #define __NEW__ 32 #endif // __NEW__
|
/prebuilts/ndk/r13/sources/cxx-stl/system/include/ |
new | 2 #ifndef __NEW__ 3 #define __NEW__ 32 #endif // __NEW__
|
/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.
|
/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/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/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/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/autotest/client/cros/image_comparison/ |
comparison_result.py | 13 ComparisonResult.__new__.__defaults__ = (0, '', None)
|
/bionic/libstdc++/include/ |
new | 2 #ifndef __NEW__ 3 #define __NEW__ 35 #endif // __NEW__
|
/development/tools/axl/ |
singletonmixin.py | 33 from Singleton may not have their own __new__ 36 es __new__. This happens at subclass instantiation 52 def __new__(metaclass, strName, tupBases, dict): member in class:MetaSingleton 53 if '__new__' in dict: 54 raise SingletonException, 'Can not override __new__ in a Singleton' 55 return super(MetaSingleton,metaclass).__new__(metaclass, strName, tupBases, dict) 75 instance = cls.__new__(cls) 178 def __new__(metaclass, strName, tupBases, dict): member in class:.PublicInterfaceTest.testDontAllowNew.instantiatedAnIllegalClass.A 179 return super(MetaSingleton,metaclass).__new__(metaclass, strName, tupBases, dict)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/ |
test_discovery.py | 203 program = object.__new__(unittest.TestProgram)
221 program = object.__new__(unittest.TestProgram)
230 program = object.__new__(unittest.TestProgram)
244 program = object.__new__(unittest.TestProgram)
250 program = object.__new__(unittest.TestProgram)
256 program = object.__new__(unittest.TestProgram)
262 program = object.__new__(unittest.TestProgram)
268 program = object.__new__(unittest.TestProgram)
274 program = object.__new__(unittest.TestProgram)
280 program = object.__new__(unittest.TestProgram) [all...] |
/external/toolchain-utils/cros_utils/ |
file_utils.py | 21 def __new__(cls, *args, **kwargs): member in class:FileUtils 24 cls._instance = super(FileUtils, cls).__new__(MockFileUtils, *args, 27 cls._instance = super(FileUtils, cls).__new__(cls, *args, **kwargs)
|
/external/fonttools/Lib/fontTools/misc/ |
py23.py | 58 def __new__(self, content): member in class:.Tag 59 return str.__new__(self, self.transcode(content))
|
/external/python/cpython2/Lib/unittest/test/ |
test_discovery.py | 204 program = object.__new__(unittest.TestProgram) 222 program = object.__new__(unittest.TestProgram) 232 program = object.__new__(unittest.TestProgram) 245 program = object.__new__(unittest.TestProgram) 259 program = object.__new__(unittest.TestProgram) 265 program = object.__new__(unittest.TestProgram) 271 program = object.__new__(unittest.TestProgram) 277 program = object.__new__(unittest.TestProgram) 283 program = object.__new__(unittest.TestProgram) 289 program = object.__new__(unittest.TestProgram [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/ |
test_discovery.py | 203 program = object.__new__(unittest.TestProgram) 221 program = object.__new__(unittest.TestProgram) 231 program = object.__new__(unittest.TestProgram) 244 program = object.__new__(unittest.TestProgram) 258 program = object.__new__(unittest.TestProgram) 264 program = object.__new__(unittest.TestProgram) 270 program = object.__new__(unittest.TestProgram) 276 program = object.__new__(unittest.TestProgram) 282 program = object.__new__(unittest.TestProgram) 288 program = object.__new__(unittest.TestProgram [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/ |
test_discovery.py | 203 program = object.__new__(unittest.TestProgram) 221 program = object.__new__(unittest.TestProgram) 231 program = object.__new__(unittest.TestProgram) 244 program = object.__new__(unittest.TestProgram) 258 program = object.__new__(unittest.TestProgram) 264 program = object.__new__(unittest.TestProgram) 270 program = object.__new__(unittest.TestProgram) 276 program = object.__new__(unittest.TestProgram) 282 program = object.__new__(unittest.TestProgram) 288 program = object.__new__(unittest.TestProgram [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_discovery.py | 203 program = object.__new__(unittest.TestProgram) 221 program = object.__new__(unittest.TestProgram) 231 program = object.__new__(unittest.TestProgram) 244 program = object.__new__(unittest.TestProgram) 258 program = object.__new__(unittest.TestProgram) 264 program = object.__new__(unittest.TestProgram) 270 program = object.__new__(unittest.TestProgram) 276 program = object.__new__(unittest.TestProgram) 282 program = object.__new__(unittest.TestProgram) 288 program = object.__new__(unittest.TestProgram [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_discovery.py | 203 program = object.__new__(unittest.TestProgram) 221 program = object.__new__(unittest.TestProgram) 231 program = object.__new__(unittest.TestProgram) 244 program = object.__new__(unittest.TestProgram) 258 program = object.__new__(unittest.TestProgram) 264 program = object.__new__(unittest.TestProgram) 270 program = object.__new__(unittest.TestProgram) 276 program = object.__new__(unittest.TestProgram) 282 program = object.__new__(unittest.TestProgram) 288 program = object.__new__(unittest.TestProgram [all...] |
/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/toolchain-utils/crosperf/ |
image_checksummer.py | 48 def __new__(cls, *args, **kwargs): member in class:ImageChecksummer 51 cls._instance = super(ImageChecksummer, cls).__new__(cls, *args,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/ |
Eiffel.py | 7 def __new__(meta, name, bases, dict):
member in class:EiffelBaseMetaClass 9 return super(EiffelBaseMetaClass, meta).__new__(meta, name, bases,
|
/external/autotest/server/ |
server_job_unittest.py | 18 self.job = server_job.server_job.__new__(server_job.server_job) 42 self.job = server_job.server_job.__new__(
|