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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/numerics/complex.number/complex.special/
double_float_implicit.pass.cpp 27 std::complex<double> cf = cd; local
28 assert(cf.real() == cd.real());
29 assert(cf.imag() == cd.imag());
34 constexpr std::complex<double> cf = cd; local
35 static_assert(cf.real() == cd.real(), "");
36 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 27 std::complex<long double> cf = cd; local
28 assert(cf.real() == cd.real());
29 assert(cf.imag() == cd.imag());
34 constexpr std::complex<long double> cf = cd; local
35 static_assert(cf.real() == cd.real(), "");
36 static_assert(cf.imag() == cd.imag(), "");
long_double_float_implicit.pass.cpp 27 std::complex<long double> cf = cd; local
28 assert(cf.real() == cd.real());
29 assert(cf.imag() == cd.imag());
34 constexpr std::complex<long double> cf = cd; local
35 static_assert(cf.real() == cd.real(), "");
36 static_assert(cf.imag() == cd.imag(), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.special/
double_float_implicit.pass.cpp 27 std::complex<double> cf = cd; local
28 assert(cf.real() == cd.real());
29 assert(cf.imag() == cd.imag());
34 constexpr std::complex<double> cf = cd; local
35 static_assert(cf.real() == cd.real(), "");
36 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 27 std::complex<long double> cf = cd; local
28 assert(cf.real() == cd.real());
29 assert(cf.imag() == cd.imag());
34 constexpr std::complex<long double> cf = cd; local
35 static_assert(cf.real() == cd.real(), "");
36 static_assert(cf.imag() == cd.imag(), "");
long_double_float_implicit.pass.cpp 27 std::complex<long double> cf = cd; local
28 assert(cf.real() == cd.real());
29 assert(cf.imag() == cd.imag());
34 constexpr std::complex<long double> cf = cd; local
35 static_assert(cf.real() == cd.real(), "");
36 static_assert(cf.imag() == cd.imag(), "");
  /external/libcxx/test/std/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
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
mask.pass.cpp 27 typedef std::ctype<char> CF;
28 const CF& cf = std::use_facet<CF>(l); local
39 assert( cf.is(CF::upper, 'A'));
41 assert(!cf.is(CF::lower, 'A'));
43 assert( cf.is(CF::alpha, 'A'))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
mask.pass.cpp 27 typedef std::ctype<char> CF;
28 const CF& cf = std::use_facet<CF>(l); local
39 assert( cf.is(CF::upper, 'A'));
41 assert(!cf.is(CF::lower, 'A'));
43 assert( cf.is(CF::alpha, 'A'))
    [all...]
  /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;
HasAttribute.java 17 package com.android.dx.cf.iface;
Method.java 17 package com.android.dx.cf.iface;
ParseException.java 17 package com.android.dx.cf.iface;
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttAnnotationDefault.java 17 package com.android.dx.cf.attrib;

Completed in 170 milliseconds

1 2 3 4 5 6 7 8 91011>>