/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.ops/ |
unary_minus.pass.cpp | 10 // <complex> 13 // complex<T> 14 // operator-(const complex<T>& lhs); 16 #include <complex> 23 std::complex<T> z(1.5, 2.5); 26 std::complex<T> c = -z;
|
stream_output.pass.cpp | 10 // <complex> 14 // operator<<(basic_ostream<charT, traits>& o, const complex<T>& x); 16 #include <complex> 22 std::complex<double> c(1, 2);
|
/external/chromium_org/tools/json_schema_compiler/test/ |
features_unittest.cc | 15 EXPECT_EQ(TestFeatures::kComplex, test_features.FromString("complex")); 21 EXPECT_STREQ("complex", test_features.ToString(TestFeatures::kComplex));
|
test_features.json | 11 "complex": [
|
/external/eigen/unsupported/doc/examples/ |
MatrixFunction.cpp | 6 std::complex<double> expfn(std::complex<double> x, int)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_cmath.py | 10 complex_zeros = [complex(x, y) for x in [0.0, -0.0] for y in [0.0, -0.0]] 11 complex_infinities = [complex(x, y) for x, y in [ 33 complex_nans = [complex(x, y) for x, y in [ 132 # a variety of non-complex numbers, used to check that 133 # non-complex return values from __complex__ give an error 134 non_complexes = ["not complex", 1, 5L, 2., None, 215 # non-complex return value from __complex__ -> TypeError 288 """Wrapped version of rect that accepts a complex number instead of 293 """Wrapped version of polar that returns a complex number instead of 295 return complex(*polar(z) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_cmath.py | 10 complex_zeros = [complex(x, y) for x in [0.0, -0.0] for y in [0.0, -0.0]] 11 complex_infinities = [complex(x, y) for x, y in [ 33 complex_nans = [complex(x, y) for x, y in [ 132 # a variety of non-complex numbers, used to check that 133 # non-complex return values from __complex__ give an error 134 non_complexes = ["not complex", 1, 5L, 2., None, 215 # non-complex return value from __complex__ -> TypeError 288 """Wrapped version of rect that accepts a complex number instead of 293 """Wrapped version of polar that returns a complex number instead of 295 return complex(*polar(z) [all...] |
/external/chromium_org/tools/clang/plugins/tests/ |
inline_copy_ctor.txt | 2 ./inline_copy_ctor.h:5:1: warning: [chromium-style] Complex class/struct needs an explicit out-of-line copy constructor.
|
/external/clang/test/Analysis/ |
complex-init-list.cpp | 4 // Do not crash on initialization to complex numbers.
|
/external/clang/test/CXX/expr/expr.ass/ |
p9-cxx11.cpp | 3 template<typename T> struct complex { struct 4 complex(T = T(), T = T()); 5 void operator+=(complex); 10 complex<double> z;
|
/external/libcxx/test/numerics/complex.number/complex/ |
types.pass.cpp | 10 // <complex> 13 // class complex 20 #include <complex> 27 typedef std::complex<T> C;
|
/external/libcxx/test/numerics/complex.number/complex.ops/ |
stream_output.pass.cpp | 10 // <complex> 14 // operator<<(basic_ostream<charT, traits>& o, const complex<T>& x); 16 #include <complex> 22 std::complex<double> c(1, 2);
|
/external/libcxx/test/numerics/complex.number/complex.value.ops/ |
imag.pass.cpp | 10 // <complex> 14 // imag(const complex<T>& x); 16 #include <complex> 23 std::complex<T> z(1.5, 2.5);
|
real.pass.cpp | 10 // <complex> 14 // real(const complex<T>& x); 16 #include <complex> 23 std::complex<T> z(1.5, 2.5);
|
/external/stlport/test/unit/ |
complex_header_test.cpp | 8 #include <complex>
|
/external/tinyalsa/ |
README | 7 - Avoid supporting complex and unnecessary operations that could be
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex/ |
types.pass.cpp | 10 // <complex> 13 // class complex 20 #include <complex> 27 typedef std::complex<T> C;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/ |
imag.pass.cpp | 10 // <complex> 14 // imag(const complex<T>& x); 16 #include <complex> 23 std::complex<T> z(1.5, 2.5);
|
real.pass.cpp | 10 // <complex> 14 // real(const complex<T>& x); 16 #include <complex> 23 std::complex<T> z(1.5, 2.5);
|
/ndk/tests/device/test-gnustl-full/unit/ |
complex_header_test.cpp | 8 #include <complex>
|
/ndk/tests/device/test-stlport/unit/ |
complex_header_test.cpp | 8 #include <complex>
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
complexobject.h | 0 /* Complex number structure */ 14 /* Operations on complex numbers from complexmodule.c */ 33 /* Complex object interface */ 36 PyComplexObject represents a complex number with double-precision
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
complexobject.h | 0 /* Complex number structure */ 14 /* Operations on complex numbers from complexmodule.c */ 33 /* Complex object interface */ 36 PyComplexObject represents a complex number with double-precision
|
/external/lldb/test/lang/c/stepping/ |
main.c | 43 int complex (int first, int second, int third) function 45 return first + second + third; // Step in targetting complex should stop here 59 int A4 = complex (a(1), b(2), c(3)); // Stop here to try step in targetting b. 61 int A5 = complex (a(2), b(3), c(4)); // Stop here to try step in targetting complex. 63 int A6 = complex (a(4), b(5), c(6)); // Stop here to step targetting b and hitting breakpoint. 65 int A7 = complex (a(5), b(6), c(7)); // Stop here to make sure bogus target steps over.
|
/external/harfbuzz_ng/ |
Android.mk | 71 src/hb-ot-shape-complex-arabic.cc \ 72 src/hb-ot-shape-complex-default.cc \ 73 src/hb-ot-shape-complex-hangul.cc \ 74 src/hb-ot-shape-complex-hebrew.cc \ 75 src/hb-ot-shape-complex-indic.cc \ 76 src/hb-ot-shape-complex-indic-table.cc \ 77 src/hb-ot-shape-complex-myanmar.cc \ 78 src/hb-ot-shape-complex-sea.cc \ 79 src/hb-ot-shape-complex-thai.cc \ 80 src/hb-ot-shape-complex-tibetan.cc [all...] |