Searched defs:cf (Results 1 - 25 of 47) sorted by relevance

12

/external/clang/test/Sema/
H A Dimplicit-cast.c3 static char *test1(int cf) { argument
4 return cf ? "abc" : 0;
6 static char *test2(int cf) { argument
7 return cf ? 0 : "abc";
/external/javassist/src/main/javassist/bytecode/
H A DClassFilePrinter.java31 public static void print(ClassFile cf) { argument
32 print(cf, new PrintWriter(System.out, true));
38 public static void print(ClassFile cf, PrintWriter out) { argument
46 = AccessFlag.toModifier(cf.getAccessFlags()
48 out.println("major: " + cf.major + ", minor: " + cf.minor
49 + " modifiers: " + Integer.toHexString(cf.getAccessFlags()));
51 + cf.getName() + " extends " + cf.getSuperclass());
53 String[] infs = cf
[all...]
H A DMethodInfo.java389 * @param cf rebuild if this class file is for Java 6 or later.
394 public void rebuildStackMapIf6(ClassPool pool, ClassFile cf) argument
397 if (cf.getMajorVersion() >= ClassFile.JAVA_6)
/external/chromium/chrome/browser/chromeos/login/
H A Dcookie_fetcher_unittest.cc56 CookieFetcher* cf = new CookieFetcher(NULL, cl_handler, i_handler); local
58 EXPECT_CALL(*cl_handler, Handle(client_login_data_, cf))
65 EXPECT_CALL(*i_handler, Handle(token_, cf))
68 cf->AttemptFetch(client_login_data_);
83 CookieFetcher* cf = new CookieFetcher(&profile_, local
87 EXPECT_CALL(*cl_handler, Handle(client_login_data_, cf))
90 cf->AttemptFetch(client_login_data_);
105 CookieFetcher* cf = new CookieFetcher(&profile_, local
109 EXPECT_CALL(*cl_handler, Handle(client_login_data_, cf))
114 EXPECT_CALL(*i_handler, Handle(token_, cf))
132 CookieFetcher* cf = new CookieFetcher(&profile_, local
156 CookieFetcher* cf = new CookieFetcher(&profile_, local
[all...]
H A Dlogin_utils.cc357 CookieFetcher* cf = new CookieFetcher(profile); local
358 cf->AttemptFetch(credentials.data);
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java48 ClassFile cf = clazz.getClassFile(); // turn on the modified flag.
50 ConstPool cp = cf.getConstPool();
71 cf.addMethod(minfo);
106 ClassFile cf = clazz.getClassFile(); // turn on the modified flag.
107 accName = findAccessorName(cf);
109 ConstPool cp = cf.getConstPool();
133 cf.addMethod(minfo);
158 ClassFile cf = clazz.getClassFile(); // turn on the modified flag.
159 String accName = findAccessorName(cf);
161 ConstPool cp = cf
252 findAccessorName(ClassFile cf) argument
[all...]
/external/qemu/target-i386/
H A Dhelper_template.h57 int cf, pf, af, zf, sf, of; local
61 cf = (DATA_TYPE)CC_DST < (DATA_TYPE)src1;
67 return cf | pf | af | zf | sf | of;
72 int cf;
75 cf = (DATA_TYPE)CC_DST < (DATA_TYPE)src1;
76 return cf;
81 int cf, pf, af, zf, sf, of;
85 cf = (DATA_TYPE)CC_DST <= (DATA_TYPE)src1;
91 return cf | pf | af | zf | sf | of;
96 int cf;
[all...]
/external/skia/tests/
H A DColorFilterTest.cpp43 SkColorFilter* cf = SkColorFilter::CreateModeFilter(color, local
47 if (SkXfermode::kDst_Mode == mode && NULL == cf) {
51 SkAutoUnref aur(cf);
52 REPORTER_ASSERT(reporter, cf);
62 REPORTER_ASSERT(reporter, cf->asColorMode(&c, &m));
79 SkColorFilter* cf2 = reincarnate(cf);
/external/clang/test/CodeGen/
H A Dcomplex.c23 _Complex float cf; variable
34 cf += D;
36 //D += cf;
37 cf /= g1;
55 //D += cf;
62 (__real__ cf) = 4.0;
66 (__imag__ cf) = 4.0;
/external/clang/test/CodeGenCXX/
H A Dlvalue-bitcasts.cpp32 _Complex float cf; local
33 _Complex float &cfr = cf;
77 _Complex float cf; local
78 _Complex float &cfr = cf;
126 _Complex float cf; local
127 _Complex float &cfr = cf;
/external/clang/test/SemaTemplate/
H A Dtemp_func_order.cpp92 void fun(CrazyFun cf) { argument
93 A<int, float> aif = cf;
94 A<int, int> aii = cf;
/external/javassist/src/main/javassist/util/proxy/
H A DFactoryHelper.java133 public static Class toClass(ClassFile cf, ClassLoader loader) argument
136 return toClass(cf, loader, null);
145 public static Class toClass(ClassFile cf, ClassLoader loader, ProtectionDomain domain) argument
149 byte[] b = toBytecode(cf);
154 args = new Object[] { cf.getName(), b, new Integer(0),
159 args = new Object[] { cf.getName(), b, new Integer(0),
186 private static byte[] toBytecode(ClassFile cf) throws IOException { argument
190 cf.write(out);
202 public static void writeFile(ClassFile cf, String directoryName) argument
205 writeFile0(cf, directoryNam
212 writeFile0(ClassFile cf, String directoryName) argument
[all...]
/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp122 BrainF::CompileFlags cf = BrainF::flag_off; local
124 cf = BrainF::CompileFlags(cf | BrainF::flag_arraybounds);
128 Module *mod = bf.parse(in, 65536, cf, Context); //64 KiB
H A DBrainF.cpp40 Module *BrainF::parse(std::istream *in1, int mem, CompileFlags cf, argument
44 comflag = cf;
/external/openssl/crypto/asn1/
H A Dtasn_fre.c83 const ASN1_COMPAT_FUNCS *cf; local
135 cf = it->funcs;
136 if (cf && cf->asn1_free)
137 cf->asn1_free(*pval);
H A Dtasn_new.c92 const ASN1_COMPAT_FUNCS *cf; local
123 cf = it->funcs;
124 if (cf && cf->asn1_new) {
125 *pval = cf->asn1_new();
H A Dtasn_dec.c159 const ASN1_COMPAT_FUNCS *cf; local
244 cf = it->funcs;
298 ptmpval = cf->asn1_d2i(pval, in, len);
H A Dtasn_enc.c136 const ASN1_COMPAT_FUNCS *cf; local
185 cf = it->funcs;
188 i = cf->asn1_i2d(*pval, out);
/external/webkit/Tools/TestWebKitAPI/win/
H A DPlatformUtilitiesWin.cpp80 RetainPtr<CFStringRef> cf(const char* utf8String) function in namespace:TestWebKitAPI::Util
97 RetainPtr<CFURLRef> url(AdoptCF, CFBundleCopyResourceURL(CFBundleGetMainBundle(), cf(resource).get(), cf(extension).get(), 0));
/external/llvm/tools/gold/
H A Dgold-plugin.cpp280 claimed_file &cf = Modules.back(); local
285 cf.handle = file->handle;
287 cf.syms.reserve(sym_count);
294 cf.syms.push_back(ld_plugin_symbol());
295 ld_plugin_symbol &sym = cf.syms.back();
346 cf.syms.reserve(cf.syms.size());
348 if (!cf.syms.empty()) {
349 if ((*add_symbols)(cf.handle, cf
[all...]
/external/openssl/crypto/lhash/
H A Dlhash.c409 LHASH_COMP_FN_TYPE cf; local
419 cf=lh->comp;
432 if(cf(n1->data,data) == 0)
/external/skia/samplecode/
H A DSampleColorFilter.cpp194 SkColorFilter* cf = SkColorFilter::CreateModeFilter(gColors[y], gModes[x]); local
195 SkSafeUnref(paint.setColorFilter(cf));
/external/valgrind/main/VEX/priv/
H A Dguest_arm_helpers.c84 UInt cf = lshift( res < argL, ARMG_CC_SHIFT_C ); local
89 // argL, argR, nf, zf, cf, vf);
90 return nf | zf | cf | vf;
99 // XXX cf is inverted relative to normal sense
100 UInt cf = lshift( argL >= argR, ARMG_CC_SHIFT_C ); local
105 // argL, argR, nf, zf, cf, vf);
106 return nf | zf | cf | vf;
116 UInt cf = oldC ? lshift( res <= argL, ARMG_CC_SHIFT_C ) local
122 // argL, argR, nf, zf, cf, vf);
123 return nf | zf | cf | v
133 UInt cf = oldC ? lshift( argL >= argR, ARMG_CC_SHIFT_C ) local
149 UInt cf = lshift( shco & 1, ARMG_CC_SHIFT_C ); local
160 UInt cf = lshift( oldC & 1, ARMG_CC_SHIFT_C ); local
172 UInt cf = lshift( oldC & 1, ARMG_CC_SHIFT_C ); local
230 UInt nf, zf, vf, cf, nzcv, inv; local
[all...]
/external/icu4c/test/intltest/
H A Dmsfmrgts.cpp337 ChoiceFormat *cf = new ChoiceFormat(limits, formats, formats_length); local
341 logln(cf == NULL ? "TRUE" : "FALSE");
346 delete cf;
365 ChoiceFormat *cf = NULL;
367 // cf = new ChoiceFormat(limits, formats, 3);
370 // cf = null;
372 //if (cf != null)
373 // errln(cf->format(5));
375 delete cf;
392 ChoiceFormat *cf local
924 ChoiceFormat *cf = new ChoiceFormat(DATA[i], status); local
[all...]
/external/oprofile/pp/
H A Dopreport.cpp342 format_flags get_format_flags(column_flags const & cf) argument
362 if (cf & cf_image_name)

Completed in 586 milliseconds

12