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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/relative/foo/a/c/
c.cc 7 int func() { function
  /external/chromium_org/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
  /dalvik/tests/065-mismatched-implements/src/
Defs.java 4 public void func(); method in interface:Defs
  /dalvik/tests/066-mismatched-super/src2/
Defs.java 4 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_org/tools/telemetry/telemetry/unittest/
__init__.py 5 def wrap(func):
6 func._requires_browser_types = types
7 return func
10 def DisabledTest(func):
11 func._disabled_test = True
12 return func
  /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/llvm/test/MC/Mips/
eh-frame.s 18 func: label
  /external/llvm/test/MC/X86/
fde-reloc.s 6 func: label
  /bionic/libc/arch-arm/bionic/
atexit.h 32 int atexit(void (*func)(void))
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
  /bionic/libc/arch-x86/bionic/
atexit.h 32 int atexit(void (*func)(void))
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
  /development/ndk/platforms/android-3/arch-arm/src/
atexit.h 32 int atexit(void (*func)(void))
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
  /development/ndk/platforms/android-9/arch-x86/src/
atexit.h 32 int atexit(void (*func)(void))
34 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
  /external/chromium_org/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();
func.c 3 void func(void) function
5 printf("Hello %s from func.c\n", PROG);
  /external/clang/test/SemaCXX/
out-of-line-def-mismatch.cpp 10 void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('N2::S1 *' vs 'N2::N1::S1 *')}}
11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}}
12 void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does not match definition ('const N2::S1 *' vs 'N2::N1::S1')}}
13 void func(unsigned, const S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('unsigned int' vs 'unsigned int *')}}
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} function in class:N2::N1::S2
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} function in class:N2::N1::S2
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'} function in class:N2::N1::S2
23 void N2::N1::S2::func(S1, unsigned) {} \/\/ expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} function in class:N2::N1::S2
24 void N2::N1::S2::func(unsigned*, S1*) {} \/\/ expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} function in class:N2::N1::S2
    [all...]
  /bionic/libc/arch-mips/bionic/
atexit.h 30 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
33 int atexit(void (*func)(void))
35 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
  /development/ndk/platforms/android-9/arch-mips/src/
atexit.h 30 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
33 int atexit(void (*func)(void))
35 return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
  /external/clang/test/Sema/
function-ptr.c 3 unary_int_func *func; variable
6 func = p; // expected-warning {{converts between void pointer and function pointer}}
7 p = func; // expected-warning {{converts between void pointer and function pointer}}
  /external/chromium_org/third_party/WebKit/Source/wtf/
CurrentTime.cpp 39 void setCurrentTimeFunction(TimeFunction func)
41 currentTimeFunction = func;
44 void setMonotonicallyIncreasingTimeFunction(TimeFunction func)
46 monotonicallyIncreasingTimeFunction = func;

Completed in 3706 milliseconds

1 2 3 4 5 6 7 8 91011>>