HomeSort by relevance Sort by last modified time
    Searched refs:func2 (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/chromium_org/tools/gyp/test/relative/foo/b/
b.cc 7 int func2() { function
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.delete/
p4.cpp 6 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/
instrprof-dlopen-func2.c 1 void func2(int K) { if (K) {} } function
instrprof-dlopen-main.c 9 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/
prog2.c 3 extern void func2(void);
8 func2();
  /external/chromium_org/tools/gyp/test/builddir/src/
func2.c 3 void func2(void) function
5 printf("Hello from func2.c\n");
  /external/clang/test/CodeGen/
2006-09-25-DebugFilename.c 4 int func2() { fluffy; return hfunc1(); } // expected-error {{use of undeclared identifier 'fluffy'}} function
  /external/clang/test/CodeGenCXX/
static-init-1.cpp 7 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);
mangle-extern-local.cpp 22 extern int var2, func2();
23 return var2 + func2();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/tracedmodules/
testmod.py 5 def func2(): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/tracedmodules/
testmod.py 5 def func2(): function
  /art/test/065-mismatched-implements/src2/
Defs.java 22 public void func2() { method in class:Defs
  /art/test/066-mismatched-super/src/
Defs.java 22 public void func2() { method in class:Defs
  /system/extras/tests/bionic/libc/bionic/
lib_relocs.c 16 int func2( void ) function
test_relocs.c 8 extern int func2(void);
16 f2 = func2();
19 printf( "func2() returns %d: %s\n", f2, (f2 == expect2) ? "OK" : "FAIL" );
  /external/clang/test/Index/
complete-with-annotations.cpp 7 void func2();
18 // CHECK: CXXMethod:{ResultType void}{TypedText func2}{LeftParen (}{RightParen )} (34) ("some annotation")
complete-access-checks.cpp 6 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/
2007-10-01-BuildArrayRef.c 14 int func2() function
  /external/ltrace/testsuite/ltrace.main/
branch_func.c 32 func2(int i) function
40 return func2(i + 2);
filters.exp 20 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\(.*\)} == 1
    [all...]
  /external/clang/test/SemaCXX/
ambig-user-defined-conversions.cpp 27 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/
eh-directive-pad-diagnostics.s 29 .globl func2
31 .type func2,%function
33 func2: label
eh-directive-personality-diagnostics.s 29 .globl func2
31 .type func2,%function
33 func2: label
  /external/llvm/test/DebugInfo/Inputs/
arange-overlap.cc 14 # define FUNC_NAME func2
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx_ports/
x86.h 42 #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...]

Completed in 195 milliseconds

1 2 3 4