HomeSort by relevance Sort by last modified time
    Searched defs:cf (Results 1 - 25 of 358) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/numerics/complex.number/complex.special/
double_float_implicit.pass.cpp 25 std::complex<double> cf = cd; local
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<double> cf = cd; local
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
double_long_double_implicit.fail.cpp 24 std::complex<double> cf = cd; local
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
float_double_implicit.fail.cpp 24 std::complex<float> cf = cd; local
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
float_long_double_implicit.fail.cpp 24 std::complex<float> cf = cd; local
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
long_double_double_implicit.pass.cpp 25 std::complex<long double> cf = cd; local
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<long double> cf = cd; local
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_float_implicit.pass.cpp 25 std::complex<long double> cf = cd; local
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<long double> cf = cd; local
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.special/
double_float_implicit.pass.cpp 25 std::complex<double> cf = cd; local
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<double> cf = cd; local
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
double_long_double_implicit.fail.cpp 24 std::complex<double> cf = cd; local
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
float_double_implicit.fail.cpp 24 std::complex<float> cf = cd; local
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
float_long_double_implicit.fail.cpp 24 std::complex<float> cf = cd; local
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
long_double_double_implicit.pass.cpp 25 std::complex<long double> cf = cd; local
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<long double> cf = cd; local
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_float_implicit.pass.cpp 25 std::complex<long double> cf = cd; local
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
32 constexpr std::complex<long double> cf = cd; local
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
tuple.by.type1.fail.cpp 19 typedef std::complex<float> cf; typedef
21 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
tuple.by.type2.fail.cpp 19 typedef std::complex<float> cf; typedef
20 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } );
tuple.by.type3.fail.cpp 19 typedef std::complex<float> cf; typedef
20 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } );
  /external/libcxx/test/utilities/utility/pairs/pair.astuple/
pairs.by.type1.fail.cpp 18 typedef std::complex<float> cf; typedef
20 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
pairs.by.type2.fail.cpp 18 typedef std::complex<float> cf; typedef
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
tuple.by.type1.fail.cpp 19 typedef std::complex<float> cf; typedef
21 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
tuple.by.type2.fail.cpp 19 typedef std::complex<float> cf; typedef
20 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } );
tuple.by.type3.fail.cpp 19 typedef std::complex<float> cf; typedef
20 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pair.astuple/
pairs.by.type1.fail.cpp 18 typedef std::complex<float> cf; typedef
20 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
pairs.by.type2.fail.cpp 18 typedef std::complex<float> cf; typedef
  /dalvik/dx/src/com/android/dx/command/dump/
ClassDumper.java 19 import com.android.dx.cf.direct.DirectClassFile;
20 import com.android.dx.cf.direct.StdAttributeFactory;
61 DirectClassFile cf = local
64 cf.setAttributeFactory(StdAttributeFactory.THE_ONE);
65 cf.setObserver(this);
66 cf.getMagic(); // Force parsing to happen.
  /dalvik/dx/src/com/android/dx/cf/code/
SimException.java 17 package com.android.dx.cf.code;
  /dalvik/dx/src/com/android/dx/cf/iface/
Field.java 17 package com.android.dx.cf.iface;

Completed in 160 milliseconds

1 2 3 4 5 6 7 8 91011>>