Home
last modified time | relevance | path

Searched refs:__complex__ (Results 1 – 25 of 25) sorted by relevance

/external/clang/test/CodeGen/
Dsparcv8-abi.c4 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()
Dcomplex.c41 __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()
Dmandel.c30 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()
Darm-aapcs-vfp.c53 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()
Dcomplex-indirect.c8 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()
D2003-11-20-ComplexDivision.c4 __complex__ double C; in test()
D2004-03-07-ComplexDivEquals.c4 void test(__complex__ double D, double X) { in test()
/external/clang/test/Sema/
Dcomplex-int.c4 __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/
Dtest_cmath.py144 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
Dtest_complex.py229 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
Dtest_getargs2.py99 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/
Dnumbers.py48 def __complex__(self): member in Complex
249 def __complex__(self): member in Real
DUserString.py26 def __complex__(self): return complex(self.data) member in UserString
Ddecimal.py1616 def __complex__(self): member in Decimal
/external/clang/test/Analysis/
Dmisc-ps-region-store.cpp697 typedef __complex__ float _ComplexT;
/external/python/cpython2/Doc/c-api/
Dcomplex.rst137 If *op* is not a Python complex number object but has a :meth:`__complex__`
/external/libmojo/third_party/jinja2/
Druntime.py497 __float__ = __complex__ = __pow__ = __rpow__ = \
/external/python/cpython2/Doc/library/
Dcmath.rst11 any Python object that has either a :meth:`__complex__` or a :meth:`__float__`
Djson.rst71 ... if '__complex__' in dct:
75 >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
/external/clang/include/clang/Basic/
DTokenKinds.def565 ALIAS("__complex__" , _Complex , KEYALL)
/external/python/cpython2/Doc/whatsnew/
D2.6.rst104 * 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/
Dcheatsheet1201 float(s) = __float__(s) complex(s) = __complex__(s)
DNEWS7094 - 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__()
DHISTORY13482 - The complex() function now looks for a __complex__() method on class
/external/python/cpython2/Doc/reference/
Ddatamodel.rst2200 .. method:: object.__complex__(self)