Searched defs:func (Results 1 - 25 of 374) sorted by relevance

1234567891011>>

/external/llvm/test/MC/AsmParser/
H A Ddirective_seh.s3 # CHECK: .seh_proc func
21 .globl func
22 .def func; .scl 2; .type 32; .endef
23 .seh_proc func
24 func: label
/external/clang/test/Sema/
H A Dincomplete-call.c9 void func(void *p) { function
H A Dfunction-ptr.c3 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}}
H A D2007-10-01-BuildArrayRef.c3 void func() function
/external/llvm/test/MC/COFF/
H A Dseh.s24 .globl func
25 .def func; .scl 2; .type 32; .endef
26 .seh_proc func
27 func: label
/external/clang/test/CXX/expr/expr.post/expr.type.conv/
H A Dp1-0x.cpp8 int func(foo& f) { function
/external/clang/test/CodeGen/
H A D2004-11-27-StaticFunctionRedeclare.c2 // 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
H A D2010-07-14-overconservative-align.c10 void func (struct s *s) function
H A Ddebug-info-line3.c3 void func(char c, char* d) function
H A D2009-06-01-addrofknr.c5 int (*func)(); member in struct:funcptr
8 static int func(f) function
19 fp.func = &func;
20 fp.func = func;
/external/clang/test/CodeGenCXX/
H A D2003-11-18-PtrMemConstantInitializer.cpp8 void (Gfx::*func)(); member in struct:Operator
H A Denum.cpp4 int func(A x) { return x==a; } function
H A Dms_wide_predefined_expr.cpp11 void func() { function
16 func();
H A Dglobal-dtor-no-atexit.cpp42 void func() { function
/external/clang/test/FixIt/
H A Dfixit-vexing-parse-cxx0x.cpp8 void func() { function
/external/clang/test/Index/
H A Dgetcursor-pp-pch.c5 void OBSCURE(func)(int x) { function
/external/webkit/Source/WebKit/chromium/src/
H A DChromiumThreading.cpp41 void ChromiumThreading::callOnMainThread(void (*func)(void*), void* context) argument
43 WebKit::webKitClient()->callOnMainThread(func, context);
/external/valgrind/main/none/tests/
H A Dmanythreads.c5 static void *func(void *v) function
20 pthread_create(&th, NULL, func, NULL);
/external/chromium/net/base/
H A Dnet_module.cc12 void NetModule::SetResourceProvider(ResourceProvider func) { argument
13 resource_provider = func;
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp17-crash.cpp4 // new expression in func()
12 void func() { function
/external/clang/test/CXX/stmt.stmt/stmt.ambig/
H A Dp1-0x.cpp16 void func(A, B, C, D, E);
18 void func(int a, int c) { function
27 func(a, d, e, f, g);
39 func(a, d, e, f, g);
/external/clang/test/CXX/temp/temp.names/
H A Dp2.cpp7 template <typename R, typename P> void h(R (*func)(P)) {} argument
/external/clang/test/SemaCXX/
H A Dout-of-line-def-mismatch.cpp10 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' doe 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...]
/external/tcpdump/
H A Dsetsignal.c74 (*setsignal (int sig, RETSIGTYPE (*func)(int)))(int) argument
80 new.sa_handler = func;
87 return (sigset(sig, func));
89 return (signal(sig, func));
/external/webrtc/src/system_wrappers/source/
H A Dthread.cc20 ThreadWrapper* ThreadWrapper::CreateThread(ThreadRunFunction func, argument
25 return new ThreadWindows(func, obj, prio, threadName);
27 return ThreadPosix::Create(func, obj, prio, threadName);

Completed in 415 milliseconds

1234567891011>>