/external/clang/test/Sema/ |
implicit-cast.c | 3 static char *test1(int cf) { 4 return cf ? "abc" : 0; 6 static char *test2(int cf) { 7 return cf ? 0 : "abc";
|
warn-bad-function-cast.c | 10 _Complex double cf(void); 22 (void)cf(); 30 (_Complex float)cf(); 41 (double)cf(); /* expected-warning {{cast from function call of type '_Complex double' to non-matching type 'double'}} */
|
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.special/ |
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());
|
double_float_explicit.pass.cpp | 25 std::complex<double> cf(cd); 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<double> cf(cd); 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
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_explicit.pass.cpp | 25 std::complex<double> cf(cd); 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<double> cf(cd); 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
float_double_explicit.pass.cpp | 25 std::complex<float> cf(cd); 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<float> cf(cd); 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
float_long_double_explicit.pass.cpp | 25 std::complex<float> cf(cd); 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<float> cf(cd); 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
long_double_double_explicit.pass.cpp | 25 std::complex<long double> cf(cd); 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<long double> cf(cd); 33 static_assert(cf.real() == cd.real(), ""); 34 static_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_explicit.pass.cpp | 25 std::complex<long double> cf(cd); 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<long double> cf(cd); 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(), "");
|
/dalvik/dx/src/com/android/dx/cf/attrib/ |
AttLocalVariableTable.java | 17 package com.android.dx.cf.attrib; 19 import com.android.dx.cf.code.LocalVariableList;
|
AttLocalVariableTypeTable.java | 17 package com.android.dx.cf.attrib; 19 import com.android.dx.cf.code.LocalVariableList;
|
AttDeprecated.java | 17 package com.android.dx.cf.attrib;
|
AttSynthetic.java | 17 package com.android.dx.cf.attrib;
|
/dalvik/dx/src/com/android/dx/cf/iface/ |
Attribute.java | 17 package com.android.dx.cf.iface;
|
FieldList.java | 17 package com.android.dx.cf.iface;
|
MethodList.java | 17 package com.android.dx.cf.iface;
|
/external/dhcpcd/dhcpcd-hooks/ |
50-yp.conf | 12 local cf=/etc/yp.conf."$interface" prefix= x= pid= 13 rm -f "$cf" 14 echo "$signature" > "$cf" 20 echo "domain $new_nis_domain broadcast" >> "$cf" 26 echo "$prefix$x" >> "$cf" 29 cat "$cf" > /etc/yp.conf 30 rm -f "$cf"
|
50-ntp.conf | 24 local cf="$state_dir/ntp.conf.$interface" 47 [ -e "$cf" ] && rm -f "$cf" 51 cp "$ntp_conf" "$cf" 55 "$ntp_conf" > "$cf" 59 echo "$signature_base${header:+ $from }$header" >> "$cf" 60 printf "$search$servers" >> "$cf" 61 echo "$signature_base_end${header:+ $from }$header" >> "$cf" 67 if change_file "$ntp_conf" "$cf"; then 74 local cf="$ntp_conf_dir/$interface" x [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
AttributeFactory.java | 17 package com.android.dx.cf.direct; 19 import com.android.dx.cf.attrib.RawAttribute; 20 import com.android.dx.cf.iface.Attribute; 21 import com.android.dx.cf.iface.ParseException; 22 import com.android.dx.cf.iface.ParseObserver; 61 * @param cf {@code non-null;} class file to parse from 69 public final Attribute parse(DirectClassFile cf, int context, int offset, 71 if (cf == null) { 72 throw new NullPointerException("cf == null"); 82 ByteArray bytes = cf.getBytes() [all...] |
/external/ipsec-tools/src/racoon/ |
genlist.c | 139 struct conf *cf; 143 cf = calloc(sizeof(struct conf), 1); 144 cf->l1 = genlist_init(); 145 cf->l2 = genlist_init(); 147 genlist_insert(cf->l1, "Ahoj"); 148 genlist_insert(cf->l1, "Cau"); 149 genlist_insert(cf->l1, "Nazdar"); 150 genlist_insert(cf->l1, "Te buch"); 152 genlist_append(cf->l2, "Curak"); 153 genlist_append(cf->l2, "Kozy") [all...] |