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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/tools/gyp/test/relative/foo/a/c/
c.cc 7 int func() { function
  /external/v8/tools/gyp/test/win/long-command-line/
function.cc 5 int func() { function
  /art/test/065-mismatched-implements/src/
Defs.java 18 public void func(); method in interface:Defs
  /art/test/066-mismatched-super/src2/
Defs.java 18 public void func(); method in interface:Defs
  /external/clang/test/CodeGen/
2004-11-27-StaticFunctionRedeclare.c 3 // There should not be an unresolved reference to func here. Believe it or not,
4 // the "expected result" is a function named 'func' which is internal and
10 // CHECK: call {{.*}} @func
11 // CHECK: define internal {{.*}}i32 @func(
12 static int func();
14 int func();
15 foo(func);
17 static int func(char** A, char ** B) {} function
2009-06-01-addrofknr.c 6 int (*func)(); member in struct:funcptr
9 static int func(f) function
20 fp.func = &func;
21 fp.func = func;
  /ndk/tests/device/issue28598-linker-global-ref/jni/
liba.h 2 void func()
  /external/chromium-trace/catapult/systrace/systrace/
decorators.py 6 def HostOnlyTest(func):
11 return _SkipTestDecoratorHelper(func, ['android'])
14 def ClientOnlyTest(func):
17 return _SkipTestDecoratorHelper(func, ['win', 'linux', 'mac'])
20 def Disabled(func):
23 return _SkipTestDecoratorHelper(func, ['win', 'linux', 'mac', 'android'])
26 def LinuxMacTest(func):
27 return _SkipTestDecoratorHelper(func, ['win', 'android'])
30 def _SkipTestDecoratorHelper(func, disabled_strings):
31 if not hasattr(func, '_disabled_strings')
    [all...]
  /external/llvm/test/tools/llvm-cov/
showTemplateInstantiations.cpp 7 int func(T x) { // ALL-NEXT: 2| [[@LINE]]|int func(T x) { function
16 // CHECK-NEXT: 1| [[@LINE-9]]|int func(T x) {
26 // ALL-NEXT: 1| [[@LINE-19]]|int func(T x) {
35 func<int>(0); // ALL-NEXT: 1| [[@LINE]]| func<int>(0);
36 func<bool>(true); // ALL-NEXT: 1| [[@LINE]]| func<bool>(true);
  /build/kati/testcase/
call_with_many_args.mk 1 define func macro
6 echo $(call func,1,2,3,4,5,6,7,8,9,10,P,A,S,S)
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.delete/
p4.cpp 3 template<typename> void func();
4 template<> void func<int>() = delete;
  /external/clang/test/CoverageMapping/
header.cpp 2 // RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-FUNC
3 // RUN: FileCheck -input-file %tmapping %s --check-prefix=CHECK-STATIC-FUNC
9 func(1);
13 // CHECK-FUNC: func
14 // CHECK-FUNC: File 0, 4:25 -> 11:2 = #0
15 // CHECK-FUNC: File 0, 6:15 -> 8:4 = #1
16 // CHECK-FUNC: File 0, 8:10 -> 10:4 = (#0 - #1)
18 // CHECK-STATIC-FUNC: static_func
19 // CHECK-STATIC-FUNC: File 0, 12:32 -> 20:2 = #
    [all...]
  /external/compiler-rt/test/profile/Inputs/
instrprof-dlopen-func.c 1 void func(int K) { if (K) {} } function
  /external/llvm/test/MC/Mips/
eh-frame.s 18 func: label
  /external/llvm/test/MC/X86/
fde-reloc.s 6 func: label
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-plugin/
func.c 4 int func (void) function
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
cross1.c 3 func () function
  /bionic/libc/arch-x86/bionic/
atexit.h 32 int atexit(void (*func)(void))
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
  /external/clang/test/CodeGenCXX/
debug-info-cxx1y.cpp 7 // CHECK: !DISubprogram(name: "func", {{.*}} scope: !"_ZTS3foo"
14 // CHECK: [[FUNC_DECL]] = !DISubprogram(name: "func",
20 static auto func();
25 auto foo::func() { function in class:foo
  /external/compiler-rt/test/asan/TestCases/
zero_page_pc.cc 6 void_f *func = (void_f *)0x4; local
7 func();
  /external/v8/tools/gyp/test/same-source-file-name/src/
prog1.c 3 extern void func(void);
8 func();
prog2.c 3 extern void func(void);
8 func();
  /toolchain/binutils/binutils-2.25/gold/testsuite/
discard_locals_relocatable_test.c 45 extern int func (void);
48 func (void) function
  /bionic/libc/arch-common/bionic/
atexit.h 36 void __atexit_handler_wrapper(void* func) {
37 if (func != NULL) {
38 (*(void (*)(void))func)();
43 int atexit(void (*func)(void)) {
44 return (__cxa_atexit(&__atexit_handler_wrapper, func, &__dso_handle));
  /development/ndk/platforms/android-21/arch-arm64/src/
atexit.h 36 void __atexit_handler_wrapper(void* func) {
37 if (func != NULL) {
38 (*(void (*)(void))func)();
43 int atexit(void (*func)(void)) {
44 return (__cxa_atexit(&__atexit_handler_wrapper, func, &__dso_handle));

Completed in 536 milliseconds

1 2 3 4 5 6 7 8 91011>>