/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
numbers.py | 48 def __complex__(self):
member in class:Complex 249 def __complex__(self):
member in class:Real
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
numbers.py | 48 def __complex__(self):
member in class:Complex 249 def __complex__(self):
member in class:Real
|
UserString.py | 26 def __complex__(self): return complex(self.data)
member in class:UserString
|
/external/python/cpython2/Lib/ |
numbers.py | 48 def __complex__(self): member in class:Complex 249 def __complex__(self): member in class:Real
|
UserString.py | 26 def __complex__(self): return complex(self.data) member in class:UserString
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
numbers.py | 48 def __complex__(self): member in class:Complex 249 def __complex__(self): member in class:Real
|
UserString.py | 26 def __complex__(self): return complex(self.data) member in class:UserString
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
numbers.py | 48 def __complex__(self): member in class:Complex 249 def __complex__(self): member in class:Real
|
UserString.py | 26 def __complex__(self): return complex(self.data) member in class:UserString
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
numbers.py | 48 def __complex__(self): member in class:Complex 249 def __complex__(self): member in class:Real
|
UserString.py | 26 def __complex__(self): return complex(self.data) member in class:UserString
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
numbers.py | 48 def __complex__(self): member in class:Complex 249 def __complex__(self): member in class:Real
|
/external/python/cpython2/Doc/c-api/ |
complex.rst | 137 If *op* is not a Python complex number object but has a :meth:`__complex__`
|
/external/python/cpython2/Lib/test/ |
test_getargs2.py | 99 def __complex__(self): member in class:Complex 106 def __complex__(self): member in class:ComplexSubclass2 110 def __complex__(self): member in class:BadComplex 114 def __complex__(self): member in class:BadComplex2 118 def __complex__(self): member in class:BadComplex3 [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/ |
__init__.py | 64 ... if '__complex__' in dct:
68 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/ |
__init__.py | 64 ... if '__complex__' in dct:
68 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
|
/external/python/cpython2/Lib/json/ |
__init__.py | 64 ... if '__complex__' in dct: 68 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
|
/prebuilts/gdb/darwin-x86/lib/python2.7/json/ |
__init__.py | 64 ... if '__complex__' in dct: 68 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
|
/prebuilts/gdb/linux-x86/lib/python2.7/json/ |
__init__.py | 64 ... if '__complex__' in dct: 68 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
__init__.py | 64 ... if '__complex__' in dct: 68 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
__init__.py | 64 ... if '__complex__' in dct: 68 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
complexobject.c | 293 complexstr = PyString_InternFromString("__complex__");
307 f = _PyObject_LookupSpecial(op, "__complex__", &complexstr);
330 /* If not, use op's __complex__ method, if it exists */
341 "__complex__ should return a complex object");
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
complexobject.c | 289 complexstr = PyString_InternFromString("__complex__");
303 f = _PyObject_LookupSpecial(op, "__complex__", &complexstr);
326 /* If not, use op's __complex__ method, if it exists */
337 "__complex__ should return a complex object");
[all...] |
/external/python/cpython2/Objects/ |
complexobject.c | 293 complexstr = PyString_InternFromString("__complex__"); 307 f = _PyObject_LookupSpecial(op, "__complex__", &complexstr); 330 /* If not, use op's __complex__ method, if it exists */ 341 "__complex__ should return a complex object"); [all...] |
/external/python/cpython2/Doc/library/ |
cmath.rst | 11 any Python object that has either a :meth:`__complex__` or a :meth:`__float__`
|