HomeSort by relevance Sort by last modified time
    Searched defs:cf (Results 51 - 75 of 370) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/iface/
MethodList.java 17 package com.android.dx.cf.iface;
ParseObserver.java 17 package com.android.dx.cf.iface;
StdField.java 17 package com.android.dx.cf.iface;
19 import com.android.dx.cf.attrib.AttConstantValue;
StdFieldList.java 17 package com.android.dx.cf.iface;
StdMethod.java 17 package com.android.dx.cf.iface;
StdMethodList.java 17 package com.android.dx.cf.iface;
  /external/clang/test/CodeGen/
volatile-complex.c 10 volatile _Complex float cf; variable
17 // CHECK: load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 0), align 4
18 // CHECK-NEXT: load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 1), align 4
19 (void)(cf);
20 // CHECK-NEXT: [[R:%.*]] = load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 0), align 4
21 // CHECK-NEXT: [[I:%.*]] = load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 1), align 4
22 // CHECK-NEXT: store volatile float [[R]], float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 0), align 4
23 // CHECK-NEXT: store volatile float [[I]], float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 1), align 4
24 (void)(cf=cf);
    [all...]
  /external/compiler-rt/lib/lsan/
lsan.cc 29 CommonFlags *cf = common_flags(); local
30 SetCommonFlagsDefaults(cf);
31 cf->external_symbolizer_path = GetEnv("LSAN_SYMBOLIZER_PATH");
32 cf->malloc_context_size = 30;
33 cf->detect_leaks = true;
35 ParseCommonFlagsFromString(cf, GetEnv("LSAN_OPTIONS"));
  /external/dexmaker/src/dx/java/com/android/dx/cf/code/
Merger.java 17 package com.android.dx.cf.code;
  /external/libcxx/test/utilities/function.objects/func.memfn/
member_data.pass.cpp 35 const F& cf = f; local
36 assert(cf(ap) == f(ap));
member_function.pass.cpp 34 const F& cf = f; local
35 assert(cf(ap) == 'a');
48 const F& cf = f; local
49 assert(cf(ap, 2) == 'b');
62 const F& cf = f; local
63 assert(cf(ap, 2, 3.5) == 'c');
member_function_const.pass.cpp 36 const F& cf = f; local
37 assert(cf(ap) == 'a');
52 const F& cf = f; local
53 assert(cf(ap, 2) == 'b');
68 const F& cf = f; local
69 assert(cf(ap, 2, 3.5) == 'c');
member_function_const_volatile.pass.cpp 36 const F& cf = f; local
37 assert(cf(ap) == 'a');
52 const F& cf = f; local
53 assert(cf(ap, 2) == 'b');
68 const F& cf = f; local
69 assert(cf(ap, 2, 3.5) == 'c');
member_function_volatile.pass.cpp 36 const F& cf = f; local
37 assert(cf(ap) == 'a');
52 const F& cf = f; local
53 assert(cf(ap, 2) == 'b');
68 const F& cf = f; local
69 assert(cf(ap, 2, 3.5) == 'c');
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
tuple.by.type.pass.cpp 19 typedef std::complex<float> cf; typedef
21 auto t1 = std::tuple<int, std::string, cf> { 42, "Hi", { 1,2 }};
24 assert ( std::get<cf>(t1).real() == 1 ); // find at the end
25 assert ( std::get<cf>(t1).imag() == 2 );
29 auto t2 = std::tuple<int, std::string, int, cf> { 42, "Hi", 23, { 1,2 }};
32 assert (( std::get<cf>(t2) == cf{ 1,2 } ));
  /hardware/intel/img/libdrm/libdrm/nouveau/
nouveau_channel.c 104 struct drm_nouveau_channel_free cf; local
121 cf.channel = nvchan->drm.channel;
122 drmCommandWrite(nvdev->fd, DRM_NOUVEAU_CHANNEL_FREE, &cf, sizeof(cf));
  /hardware/ti/omap4-aah/
tm.c 25 char *cf, *cb; local
45 cf = ptr[4];
46 cf[-1] = 'a';
  /hardware/ti/omap4xxx/
tm.c 25 char *cf, *cb; local
45 cf = ptr[4];
46 cf[-1] = 'a';
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.memfn/
member_data.pass.cpp 35 const F& cf = f; local
36 assert(cf(ap) == f(ap));
member_function.pass.cpp 34 const F& cf = f; local
35 assert(cf(ap) == 'a');
48 const F& cf = f; local
49 assert(cf(ap, 2) == 'b');
62 const F& cf = f; local
63 assert(cf(ap, 2, 3.5) == 'c');
member_function_const.pass.cpp 36 const F& cf = f; local
37 assert(cf(ap) == 'a');
52 const F& cf = f; local
53 assert(cf(ap, 2) == 'b');
68 const F& cf = f; local
69 assert(cf(ap, 2, 3.5) == 'c');
member_function_const_volatile.pass.cpp 36 const F& cf = f; local
37 assert(cf(ap) == 'a');
52 const F& cf = f; local
53 assert(cf(ap, 2) == 'b');
68 const F& cf = f; local
69 assert(cf(ap, 2, 3.5) == 'c');
member_function_volatile.pass.cpp 36 const F& cf = f; local
37 assert(cf(ap) == 'a');
52 const F& cf = f; local
53 assert(cf(ap, 2) == 'b');
68 const F& cf = f; local
69 assert(cf(ap, 2, 3.5) == 'c');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
tuple.by.type.pass.cpp 19 typedef std::complex<float> cf; typedef
21 auto t1 = std::tuple<int, std::string, cf> { 42, "Hi", { 1,2 }};
24 assert ( std::get<cf>(t1).real() == 1 ); // find at the end
25 assert ( std::get<cf>(t1).imag() == 2 );
29 auto t2 = std::tuple<int, std::string, int, cf> { 42, "Hi", 23, { 1,2 }};
32 assert (( std::get<cf>(t2) == cf{ 1,2 } ));
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 19 import com.android.dx.cf.direct.ClassPathOpener;
20 import com.android.dx.cf.direct.DirectClassFile;
21 import com.android.dx.cf.direct.StdAttributeFactory;
22 import com.android.dx.cf.iface.Member;
23 import com.android.dx.cf.iface.ParseObserver;
105 DirectClassFile cf = new DirectClassFile(allbytes, fixedPathName, true); local
109 cf.setObserver(new ParseObserver() {
232 cf.setAttributeFactory(StdAttributeFactory.THE_ONE);
234 cf.getMagic();
235 // cf.getFields()
    [all...]

Completed in 1084 milliseconds

1 23 4 5 6 7 8 91011>>