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

1234

/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/llvm/test/tools/llvm-cov/Inputs/
H A Dprevent_false_instantiations.cpp7 void func2() { function
13 func2();
/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();
H A Doptnone-and-attributes.cpp4 // Test that both func1 and func2 are marked optnone and noinline.
15 int func2(int a);
17 inline int func2(int a) { function
22 // Keep alive the definitions of func1 and func2.
25 return val + func2(2);
/external/python/cpython2/Lib/test/tracedmodules/
H A Dtestmod.py5 def func2(): function
/external/python/cpython3/Lib/test/tracedmodules/
H A Dtestmod.py5 def func2(): function
/external/clang/test/CoverageMapping/
H A Dmacros.c19 // CHECK-NEXT: func2
20 void func2() { // CHECK-NEXT: File 0, [[@LINE]]:14 -> [[@LINE+5]]:2 = #0 function
41 func2();
H A Dreturn.c9 // CHECK-NEXT: func2
10 void func2() { // CHECK-NEXT: File 0, [[@LINE]]:14 -> {{[0-9]+}}:2 = #0 function
42 func2();
H A Dmacroception.c18 // CHECK-LABEL: func2:
21 void func2() {
/external/llvm/test/tools/llvm-cov/
H A DshowHighlightedRanges.cpp8 void func2(int x) { function
43 func2(9);
/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/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/honggfuzz/examples/badcode/targets/
H A Dbadcode2.c23 EXPORT NOINLINE void func2() function
25 printf("func2\n");
34 else func2();
/external/llvm/test/DebugInfo/Inputs/
H A Darange-overlap.cc14 # define FUNC_NAME func2
/external/libvpx/libvpx/vpx_ports/
H A Dx86.h47 #define cpuid(func, func2, ax, bx, cx, dx) \
50 : "a"(func), "c"(func2));
52 #define cpuid(func, func2, ax, bx, cx, dx) \
58 : "a"(func), "c"(func2));
63 #define cpuid(func, func2, ax, bx, cx, dx) \
70 : "a"(func), "c"(func2));
72 #define cpuid(func, func2, ax, bx, cx, dx) \
79 : "a"(func), "c"(func2));
84 #define cpuid(func, func2, a, b, c, d) \
87 __cpuidex(regs, func, func2); \
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Ddebug_stacks.cc17 void func2() { function
26 func2();
/external/libcxx/test/std/thread/futures/futures.task/futures.task.members/
H A Ddtor.pass.cpp38 void func2(std::packaged_task<double(int, char)> p) function
65 std::thread(func2, std::move(p)).detach();

Completed in 561 milliseconds

1234