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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
debug-info-line3.c 3 void func(char c, char* d) function
2004-11-27-StaticFunctionRedeclare.c 2 // RUN: opt -std-compile-opts -emit-llvm | not grep {declare i32.*func}
4 // There should not be an unresolved reference to func here. Believe it or not,
5 // the "expected result" is a function named 'func' which is internal and
10 static int func();
12 int func();
13 foo(func);
15 static int func(char** A, char ** B) {} function
2009-06-01-addrofknr.c 5 int (*func)(); member in struct:funcptr
8 static int func(f) function
19 fp.func = &func;
20 fp.func = func;
2010-07-14-overconservative-align.c 10 void func (struct s *s) function
  /external/clang/test/Sema/
incomplete-call.c 9 void func(void *p) { function
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}}
2007-10-01-BuildArrayRef.c 3 void func() function
implicit-decl.c 6 void func() { function
  /external/llvm/test/MC/AsmParser/
directive_seh.s 3 # CHECK: .seh_proc func
21 .globl func
22 .def func; .scl 2; .type 32; .endef
23 .seh_proc func
24 func: label
  /dalvik/tests/065-mismatched-implements/src/
Base.java 4 public void func() { method in class:Base
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/Index/
getcursor-pp-pch.c 5 void OBSCURE(func)(int x) { function
c-index-getCursor-pp.c 5 void OBSCURE(func)(int x) { function
  /external/llvm/test/MC/COFF/
seh.s 25 .globl func
26 .def func; .scl 2; .type 32; .endef
27 .seh_proc func
28 func: label
  /dalvik/tests/065-mismatched-implements/src2/
Defs.java 4 public void func() { method in class:Defs
  /dalvik/tests/066-mismatched-super/src/
Defs.java 4 public void func() { method in class:Defs
  /external/clang/test/CodeGenCXX/
2003-11-18-PtrMemConstantInitializer.cpp 8 void (Gfx::*func)(); member in struct:Operator
enum.cpp 4 int func(A x) { return x==a; } function
  /external/valgrind/main/none/tests/
manythreads.c 5 static void *func(void *v) function
20 pthread_create(&th, NULL, func, NULL);
  /bootable/bootloader/legacy/include/boot/
tags.h 37 void (*func)(unsigned type, void *data, unsigned bytes, void *cookie); member in struct:tag_handler
  /bootable/bootloader/legacy/libc/
malloc.c 50 void func(unsigned n) function
  /external/bluetooth/glib/glib/
gthreadpool.h 47 GFunc func; member in struct:_GThreadPool
52 /* Get a thread pool with the function func, at most max_threads may
56 * 2nd argument to the func */
57 GThreadPool* g_thread_pool_new (GFunc func,
105 GCompareDataFunc func,
gcompletion.h 52 GCompletionFunc func; member in struct:_GCompletion
59 GCompletion* g_completion_new (GCompletionFunc func);
  /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...]

Completed in 492 milliseconds

1 2 3 4 5 6 7 8 91011>>