/external/clang/test/CodeGen/ |
D | sparcv8-abi.c | 4 float __complex__ 5 p (float __complex__ a, float __complex__ b) in p() 10 double __complex__ 11 q (double __complex__ a, double __complex__ b) in q() 16 long long __complex__ 17 r (long long __complex__ a, long long __complex__ b) in r()
|
D | complex.c | 41 __complex__ int ci1, ci2; 42 __complex__ short cs; 69 __complex__ long long v = 2; in t3() 96 __complex__ int *x = &(__complex__ int){1}; in t8()
|
D | mandel.c | 30 volatile double __complex__ accum; 36 double __complex__ c = (START_X+x*step_X) + (START_Y+y*step_Y) * I; in mandel() 37 double __complex__ z = 0.0; in mandel()
|
D | arm-aapcs-vfp.c | 53 extern void complex_callee(__complex__ double); 56 void test_complex(__complex__ double cd) { in test_complex() 61 extern void complex_long_callee(__complex__ long double); 63 void test_complex_long(__complex__ long double cd) { in test_complex_long()
|
D | complex-indirect.c | 8 void a(int,int,int,int,int,int,__complex__ char); 9 void b(__complex__ char *y) { a(0,0,0,0,0,0,*y); } in b()
|
D | 2003-11-20-ComplexDivision.c | 4 __complex__ double C; in test()
|
D | 2004-03-07-ComplexDivEquals.c | 4 void test(__complex__ double D, double X) { in test()
|
/external/clang/test/Sema/ |
D | complex-int.c | 4 __complex__ int arr; in a() 5 __complex__ short brr; in a() 6 __complex__ unsigned xx; in a() 7 __complex__ signed yy; in a() 8 __complex__ int result; in a()
|
/external/python/cpython2/Lib/test/ |
D | test_cmath.py | 144 def __complex__(self): member in CMathTests.test_user_object.MyComplex 151 def __complex__(self): member in CMathTests.test_user_object.MyComplexOS 158 def __complex__(self): member in CMathTests.test_user_object.MyComplexException 161 def __complex__(self): member in CMathTests.test_user_object.MyComplexExceptionOS 183 def __complex__(self): member in CMathTests.test_user_object.FloatAndComplex 188 def __complex__(self): member in CMathTests.test_user_object.FloatAndComplexOS
|
D | test_complex.py | 229 def __complex__(self): return self.value member in ComplexTest.test_constructor.OS 232 def __complex__(self): return self.value member in ComplexTest.test_constructor.NS 352 def __complex__(self): member in ComplexTest.test_constructor.evilcomplex 369 def __complex__(self): member in ComplexTest.test_constructor.complex0 376 def __complex__(self): member in ComplexTest.test_constructor.complex1 382 def __complex__(self): member in ComplexTest.test_constructor.complex2
|
D | test_getargs2.py | 99 def __complex__(self): member in Complex 106 def __complex__(self): member in ComplexSubclass2 110 def __complex__(self): member in BadComplex 114 def __complex__(self): member in BadComplex2 118 def __complex__(self): member in BadComplex3
|
/external/python/cpython2/Lib/ |
D | numbers.py | 48 def __complex__(self): member in Complex 249 def __complex__(self): member in Real
|
D | UserString.py | 26 def __complex__(self): return complex(self.data) member in UserString
|
D | decimal.py | 1616 def __complex__(self): member in Decimal
|
/external/clang/test/Analysis/ |
D | misc-ps-region-store.cpp | 697 typedef __complex__ float _ComplexT;
|
/external/python/cpython2/Doc/c-api/ |
D | complex.rst | 137 If *op* is not a Python complex number object but has a :meth:`__complex__`
|
/external/libmojo/third_party/jinja2/ |
D | runtime.py | 497 __float__ = __complex__ = __pow__ = __rpow__ = \
|
/external/python/cpython2/Doc/library/ |
D | cmath.rst | 11 any Python object that has either a :meth:`__complex__` or a :meth:`__float__`
|
D | json.rst | 71 ... if '__complex__' in dct: 75 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
|
/external/clang/include/clang/Basic/ |
D | TokenKinds.def | 565 ALIAS("__complex__" , _Complex , KEYALL)
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 104 * A :meth:`__complex__` method for converting objects to a complex number. 3040 have a :meth:`__complex__` method. In particular, the functions in the
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1201 float(s) = __float__(s) complex(s) = __complex__(s)
|
D | NEWS | 7094 - The ``__complex__()`` method is now looked up on the class of instances to 10706 object to complex using its __complex__() method before falling back 10708 module now can operate on objects that define a __complex__()
|
D | HISTORY | 13482 - The complex() function now looks for a __complex__() method on class
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2200 .. method:: object.__complex__(self)
|