Searched refs:func2 (Results 1 - 25 of 67) sorted by relevance

123

/external/chromium_org/tools/gyp/test/relative/foo/b/
H A Db.cc7 int func2() { function
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.delete/
H A Dp4.cpp6 template<typename> void func2();
7 template<> void func2<int>(); // expected-note {{previous declaration is here}}
8 template<> void func2<int>() = delete; // expected-error {{deleted definition must be first declaration}}
/external/compiler-rt/test/profile/Inputs/
H A Dinstrprof-dlopen-func2.c1 void func2(int K) { if (K) {} } function
H A Dinstrprof-dlopen-main.c9 void func2(int K);
28 void *f2_handle = dlopen(DLOPEN_FUNC_DIR"/func2.shared", DLOPEN_FLAGS);
30 fprintf(stderr, "unable to open '" DLOPEN_FUNC_DIR "/func2.shared': %s\n",
35 void (*func2)(int) = (void (*)(int))dlsym(f2_handle, "func2");
36 if (func2 == NULL) {
37 fprintf(stderr, "unable to lookup symbol 'func2': %s\n", dlerror());
43 func2(0);
/external/chromium_org/tools/gyp/test/builddir/src/subdir2/
H A Dprog2.c3 extern void func2(void);
8 func2();
/external/chromium_org/tools/gyp/test/builddir/src/
H A Dfunc2.c3 void func2(void) function
5 printf("Hello from func2.c\n");
/external/clang/test/CodeGen/
H A D2006-09-25-DebugFilename.c4 int func2() { fluffy; return hfunc1(); } // expected-error {{use of undeclared identifier 'fluffy'}} function
/external/clang/test/CodeGenCXX/
H A Dstatic-init-1.cpp7 int func2(int c) { return printf("loading the func2(%d)\n", c); }; function
13 int loader_2 = func2(++count);
20 int loader_4 = func2(++count);
22 int loader_6 = func2(++count);
H A Dmangle-extern-local.cpp22 extern int var2, func2();
23 return var2 + func2();
/external/clang/test/Index/
H A Dcomplete-with-annotations.cpp7 void func2();
18 // CHECK: CXXMethod:{ResultType void}{TypedText func2}{LeftParen (}{RightParen )} (34) ("some annotation")
H A Dcomplete-access-checks.cpp6 void func2();
22 void func2();
39 // CHECK-SUPER-ACCESS: CXXMethod:{ResultType void}{Informative X::}{TypedText func2}{LeftParen (}{RightParen )} (36) (inaccessible)
52 // CHECK-ACCESS: CXXMethod:{ResultType void}{TypedText func2}{LeftParen (}{RightParen )} (34) (inaccessible)
/external/clang/test/Sema/
H A D2007-10-01-BuildArrayRef.c14 int func2() function
/external/ltrace/testsuite/ltrace.main/
H A Dbranch_func.c32 func2(int i) function
40 return func2(i + 2);
H A Dfilters.exp20 void func2(void);
21 void func1(void) { func2(); }
25 void func2(void) { puts("func2"); }
36 {{libfilt1.so->func2} == 1}
38 {{func2 resumed} == 1}
49 {libfilt1.so->func2\(.*\)} == 1
55 {{libfilt1.so->func2\(} == 1}
57 {{func2 resumed} == 1}
62 {{libfilt1.so->func2\(
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-334.js37 function func2(){} function
44 object.bif = func2;
62 assertEquals(func2, object.bif, "read bif");
70 object.foo = func2;
77 object.bar = func2;
79 assertEquals(func2, object.bar, "read bar 3");
/external/clang/test/SemaCXX/
H A Dambig-user-defined-conversions.cpp27 void func2(const char cc); // expected-note {{candidate function}}
28 void func2(const int ci); // expected-note {{candidate function}}
30 func2(b1); // expected-error {{call to 'func2' is ambiguous}}
/external/llvm/test/MC/ARM/
H A Deh-directive-pad-diagnostics.s29 .globl func2
31 .type func2,%function
33 func2: label
H A Deh-directive-personality-diagnostics.s29 .globl func2
31 .type func2,%function
33 func2: label
/external/chromium_org/v8/test/webkit/
H A Ddfg-int32-to-double-on-set-local-and-exit.js40 function func2() { function
49 s = func2();
H A Ddfg-int32-to-double-on-set-local-and-sometimes-exit.js42 function func2() { function
51 s = func2();
/external/llvm/test/DebugInfo/Inputs/
H A Darange-overlap.cc14 # define FUNC_NAME func2
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
H A Dx86.h42 #define cpuid(func, func2, ax, bx, cx, dx)\
46 : "a" (func), "c" (func2));
48 #define cpuid(func, func2, ax, bx, cx, dx)\
54 : "a" (func), "c" (func2));
58 #define cpuid(func, func2, ax, bx, cx, dx)\
65 : "a" (func), "c" (func2));
67 #define cpuid(func, func2, ax, bx, cx, dx)\
74 : "a" (func), "c" (func2));
81 #define cpuid(func, func2, a, b, c, d) do {\
83 __cpuidex(regs, func, func2); \
[all...]
/external/libvpx/libvpx/vpx_ports/
H A Dx86.h42 #define cpuid(func, func2, ax, bx, cx, dx)\
46 : "a" (func), "c" (func2));
48 #define cpuid(func, func2, ax, bx, cx, dx)\
54 : "a" (func), "c" (func2));
58 #define cpuid(func, func2, ax, bx, cx, dx)\
65 : "a" (func), "c" (func2));
67 #define cpuid(func, func2, ax, bx, cx, dx)\
74 : "a" (func), "c" (func2));
81 #define cpuid(func, func2, a, b, c, d) do {\
83 __cpuidex(regs, func, func2); \
[all...]
/external/compiler-rt/test/builtins/Unit/
H A Denable_execute_stack_test.c43 int func2() function
65 memcpy(execution_buffer, (void *)(uintptr_t)&func2, 128);
/external/libcxx/test/thread/futures/futures.tas/futures.task.members/
H A Ddtor.pass.cpp33 void func2(std::packaged_task<double(int, char)> p) function
57 std::thread(func2, std::move(p)).detach();

Completed in 678 milliseconds

123