Home | History | Annotate | Download | only in ruby

Lines Matching refs:Real

4   the complex Constructor method, and the Real and Imag complex
26 static ID real_id = rb_intern("real");
38 static ID real_id = rb_intern("real");
55 %define %swig_fromcplx_conv(Type, Real, Imag)
61 VALUE re = rb_float_new(Real(c));
69 %define %swig_cplxdbl_conv(Type, Constructor, Real, Imag)
79 VALUE real = SWIG_Complex_Real(o);
82 SWIG_AsVal_double( real, &re );
99 %swig_fromcplx_conv(Type, Real, Imag);
103 %define %swig_cplxflt_conv(Type, Constructor, Real, Imag)
112 VALUE real = SWIG_Complex_Real(o);
115 SWIG_AsVal_double( real, &re );
138 %swig_fromcplx_conv(Type, Real, Imag);
141 #define %swig_cplxflt_convn(Type, Constructor, Real, Imag) \
142 %swig_cplxflt_conv(Type, Constructor, Real, Imag)
145 #define %swig_cplxdbl_convn(Type, Constructor, Real, Imag) \
146 %swig_cplxdbl_conv(Type, Constructor, Real, Imag)