/external/python/cpython2/Modules/ |
cPickle.c | 76 #define NEWOBJ '\x81' /* build object by applying cls.__new__ to argtuple */ [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_weakref.py | 759 def __new__(type, ob, callback, slot1, slot2):
member in class:SubclassableWeakrefTestCase.test_subclass_refs_with_slots.MyRef 760 return weakref.ref.__new__(type, ob, callback)
[all...] |
test_dict.py | 224 def __new__(cls):
member in class:DictTest.test_fromkeys.mydict
|
test_float.py | 139 def __new__(cls, value=0.):
member in class:GeneralFloatCases.test_floatconversion.Foo3 140 return float.__new__(cls, 2*value)
[all...] |
/external/autotest/scheduler/ |
scheduler_models.py | 176 def __new__(cls, id=None, **kwargs): member in class:DBObject 185 return super(DBObject, cls).__new__(cls, id=id, **kwargs) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_weakref.py | 849 def __new__(type, ob, callback, slot1, slot2): member in class:SubclassableWeakrefTestCase.test_subclass_refs_with_slots.MyRef 850 return weakref.ref.__new__(type, ob, callback) [all...] |
test_exceptions.py | 470 def __new__(cls, *args): member in class:ExceptionTests.test_new_returns_invalid_instance.MyException
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_weakref.py | 849 def __new__(type, ob, callback, slot1, slot2): member in class:SubclassableWeakrefTestCase.test_subclass_refs_with_slots.MyRef 850 return weakref.ref.__new__(type, ob, callback) [all...] |
test_exceptions.py | 470 def __new__(cls, *args): member in class:ExceptionTests.test_new_returns_invalid_instance.MyException
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_weakref.py | 849 def __new__(type, ob, callback, slot1, slot2): member in class:SubclassableWeakrefTestCase.test_subclass_refs_with_slots.MyRef 850 return weakref.ref.__new__(type, ob, callback) [all...] |
test_exceptions.py | 470 def __new__(cls, *args): member in class:ExceptionTests.test_new_returns_invalid_instance.MyException
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_weakref.py | 849 def __new__(type, ob, callback, slot1, slot2): member in class:SubclassableWeakrefTestCase.test_subclass_refs_with_slots.MyRef 850 return weakref.ref.__new__(type, ob, callback) [all...] |
test_exceptions.py | 470 def __new__(cls, *args): member in class:ExceptionTests.test_new_returns_invalid_instance.MyException
|
/development/vndk/tools/definition-tool/ |
vndk_definition_tool.py | 95 def __new__(cls, *args, **kwargs): function in function:defaultnamedtuple 103 return base_cls.__new__(cls, *args) 104 return type(typename, (base_cls,), {'__new__': __new__}) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
weakrefobject.c | 284 if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
weakrefobject.c | 273 if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) {
|
/external/autotest/site_utils/rpm_control_system/ |
BeautifulSoup.py | 451 def __new__(cls, value): member in class:NavigableString 456 passed in to the superclass's __new__ or the superclass won't know 460 return unicode.__new__(cls, value) 461 return unicode.__new__(cls, value, DEFAULT_OUTPUT_ENCODING) [all...] |
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
runtime.py | 147 c = Context.__new__(Context)
|
/external/protobuf/python/google/protobuf/ |
descriptor_pool.py | 88 def __new__(cls, descriptor_db=None): member in class:DescriptorPool
|
/external/python/cpython2/Doc/extending/ |
newtypes.rst | 158 :meth:`__new__` method without getting an error. You can avoid this problem by 335 of the type. It is exposed in Python as the :meth:`__new__` method. See the 337 the :meth:`__new__` method. One reason to implement a new method is to assure 358 :c:member:`~PyTypeObject.tp_new` or :meth:`__new__`), you must *not* try to determine what method [all...] |
/external/python/cpython2/Objects/ |
weakrefobject.c | 283 if (parse_weakref_init_args("__new__", args, kwargs, &ob, &callback)) {
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
_ctypes.so | |
datetime.so | |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
__init__.py | 107 newobj = SELinuxPolicy.__new__(SELinuxPolicy)
|
/system/update_engine/ |
pylintrc | 404 defining-attr-methods=__init__,__new__,setUp
|