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

1234567891011>>

/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 Dforwarding-blocks-if.c4 extern void func();
8 func();
10 func();
16 // CHECK: call void {{.*}} @func
17 // CHECK: call void {{.*}} @func
26 func();
32 // CHECK: call void {{.*}} @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-trace/catapult/systrace/systrace/
H A Ddecorators.py6 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_string
[all...]
/external/llvm/test/tools/llvm-cov/
H A DshowTemplateInstantiations.cpp7 int func(T x) { // ALL-NEXT: 2| [[@LINE]]|int func(T x) { function
16 // SHARED-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);
51 // HTML-ALL: <td class='covered-line'><pre>2</pre></td><td class='line-number'><pre>[[@LINE-44]]</pre></td><td class='code'><pre>int func(T x) {
60 // HTML-SHARED: <td class='covered-line'><pre>1</pre></td><td class='line-number'><pre>[[@LINE-53]]</pre></td><td class='code'><pre>int func(
[all...]
/external/clang/test/CoverageMapping/
H A Dheader.cpp9 func(1);
13 // CHECK-FUNC: func
H A Dtemplates.cpp9 int func(T x) { // CHECK: func function
10 if(x) // CHECK: func
18 func<int>(0);
19 func<bool>(true);
/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/clang/test/CodeGenCXX/
H A Ddebug-info-cxx1y.cpp7 // CHECK: !DISubprogram(name: "func", {{.*}} scope: [[FOO]]
14 // CHECK: [[FUNC_DECL]] = !DISubprogram(name: "func",
20 static auto func();
25 auto foo::func() { function in class:foo
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); }
/external/compiler-rt/test/asan/TestCases/
H A Dzero_page_pc.cc6 void_f *func = (void_f *)0x4; local
7 func();
/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/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/llvm/test/DebugInfo/Inputs/
H A Dcross-cu-inlining.c9 int func(int);
11 return func(i);
15 int __attribute__((always_inline)) func(int x) { function
/external/clang/test/FixIt/
H A Dno-fixit.cpp7 template<template<typename> +> void func();
/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)( \
40 unsigned long)::__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)
/external/clang/test/Modules/Inputs/PR20399/
H A DFirstHeader.h10 inline void func() { function
11 std::vector<int>::func();
/external/python/cpython2/Lib/ctypes/test/
H A Dtest_prototypes.py8 # func.restype = c_char_p
9 # func(c_char_p("123"))
16 # func is called, but NOT before the result is actually built.
48 func = testdll._testfunc_p_p
49 func.restype = c_long
50 func.argtypes = None
56 func = prototype(("_testfunc_p_p", testdll),
60 func()
66 self.assertEqual(func(None), None)
67 self.assertEqual(func(inpu
213 def func(): pass function in function:ArrayTest.test
[all...]
/external/bison/build-aux/snippet/
H A Dc++defs.h87 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
94 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
95 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
99 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
100 declares the system function, named func, with the given prototype,
106 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
107 _GL_EXTERN_C rettype func parameters_and_attributes
109 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
110 declares a C++ alias called GNULIB_NAMESPACE::func
115 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]
/external/bison/darwin-lib/
H A Dc++defs.h71 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
78 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
79 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
83 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
84 declares the system function, named func, with the given prototype,
90 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
91 _GL_EXTERN_C rettype func parameters_and_attributes
93 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
94 declares a C++ alias called GNULIB_NAMESPACE::func
99 #define _GL_CXXALIAS_RPL(func,rettyp
[all...]

Completed in 739 milliseconds

1234567891011>>