Searched refs:func (Results 1 - 25 of 1961) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gyp/test/relative/foo/a/c/
H A Dc.cc7 int func() { function
/external/chromium_org/tools/gyp/test/win/long-command-line/
H A Dfunction.cc5 int func() { function
/external/clang/test/CodeGen/
H A D2004-11-27-StaticFunctionRedeclare.c3 // 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
H A D2009-06-01-addrofknr.c6 int (*func)(); member in struct:funcptr
9 static int func(f) function
20 fp.func = &func;
21 fp.func = func;
H A Ddebug-info-line3.c3 void func(char c, char* d) function
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.delete/
H A Dp4.cpp3 template<typename> void func();
4 template<> void func<int>() = delete;
/external/chromium_org/v8/test/mjsunit/
H A Darray-push-non-smi-value.js30 function func() { function
34 assertFalse(func());
35 assertFalse(func());
36 assertFalse(func());
/external/compiler-rt/test/profile/Inputs/
H A Dinstrprof-dlopen-func.c1 void func(int K) { if (K) {} } function
/external/llvm/test/MC/Mips/
H A Deh-frame.s18 func: label
/external/llvm/test/MC/X86/
H A Dfde-reloc.s6 func: label
/external/chromium_org/tools/gyp/test/same-source-file-name/src/
H A Dprog1.c3 extern void func(void);
8 func();
H A Dprog2.c3 extern void func(void);
8 func();
H A Dfunc.c3 void func(void) function
5 printf("Hello %s from func.c\n", PROG);
H A Dprog3.c7 extern void func(void);
14 func();
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-333594.js35 function func() { function
39 func();
40 func();
41 %OptimizeFunctionOnNextCall(func);
42 assertEquals(0, func().x);
/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/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/Android.mk
19 test_name := utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func
[all...]
/external/clang/test/Sema/
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}}
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DCurrentTime.cpp39 void setCurrentTimeFunction(TimeFunction func) argument
41 currentTimeFunction = func;
44 void setMonotonicallyIncreasingTimeFunction(TimeFunction func) argument
46 monotonicallyIncreasingTimeFunction = func;
/external/clang/test/CodeGenCXX/
H A Dblock.cpp5 void func(void*);
9 virtual void use() { func((void*)this); }
10 Test(Test&c) { func((void*)this); }
11 Test() { func((void*)this); }
H A Ddebug-info-cxx1y.cpp4 auto func(); // CHECK: error: debug information for auto is not yet supported
/external/clang/test/FixIt/
H A Dno-fixit.cpp7 template<template<typename> +> void func();
/external/stlport/test/compiler/
H A Dpartial_spec.cpp21 int func(T1 p1);
24 int func(template_struct<T1>);
31 func(tmp1);
32 func(tmp2);
/external/compiler-rt/lib/interception/
H A Dinterception_linux.h31 #define INTERCEPT_FUNCTION_LINUX_OR_FREEBSD(func) \
33 #func, (::__interception::uptr *)&__interception::PTR_TO_REAL(func), \
34 (::__interception::uptr) & (func), \
35 (::__interception::uptr) & WRAP(func))
38 # define INTERCEPT_FUNCTION_VER_LINUX_OR_FREEBSD(func, symver) \
39 ::__interception::real_##func = (func##_f)(unsigned long) \
40 ::__interception::GetFuncAddrVer(#func, symver)
42 # define INTERCEPT_FUNCTION_VER_LINUX_OR_FREEBSD(func, symve
[all...]
H A Dinterception_mac.h24 #define INTERCEPT_FUNCTION_MAC(func)
25 #define INTERCEPT_FUNCTION_VER_MAC(func, symver)

Completed in 1195 milliseconds

1234567891011>>