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

1234567891011>>

/external/clang/test/FixIt/
H A Dno-fixit.cpp7 template<template<typename> +> void func();
/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 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;
H A Ddebug-info-line3.c3 void func(char c, char* d) function
H A Dx86_64-arguments-darwin.c4 // CHECK: declare void @func(i64, double)
12 void func(str s);
16 func(ss);
/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/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...]
H A Dvirtuals.cpp40 typedef int func(int); typedef in namespace:rdar9670557
41 func *a();
43 virtual func f = 0;
44 virtual func (g) = 0;
45 func *h = 0;
/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}}
H A Dusual-float.c5 extern void func(CGFloat);
11 func((CGFloat)cgf/65535.0f);
/external/clang/test/CodeGenCXX/
H A Dblock.cpp4 void func(void*);
8 virtual void use() { func((void*)this); }
9 Test(Test&c) { func((void*)this); }
10 Test() { func((void*)this); }
H A Dglobal-block-literal-helpers.cpp6 int func(BL, BL, BL);
16 int ival = func(^{}, ^{}, ^{});
H A Dms_wide_predefined_expr.cpp11 void func() { function
16 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.h30 #define INTERCEPT_FUNCTION_LINUX(func) \
32 #func, (::__interception::uptr*)&REAL(func), \
33 (::__interception::uptr)&(func), \
34 (::__interception::uptr)&WRAP(func))
H A Dinterception.h93 # define DECLARE_WRAPPER(ret_type, convention, func, ...)
104 # define DECLARE_WRAPPER(ret_type, convention, func, ...)
109 # define DECLARE_WRAPPER(ret_type, convention, func, ...) \
110 extern "C" ret_type convention func(__VA_ARGS__) \
111 __attribute__((weak, alias("__interceptor_" #func), visibility("default")));
119 # define DECLARE_REAL(ret_type, func, ...) \
120 typedef ret_type (*FUNC_TYPE(func))(__VA_ARGS__); \
122 extern FUNC_TYPE(func) PTR_TO_REAL(func); \
126 # define DECLARE_REAL(ret_type, func,
[all...]
H A Dinterception_win.h33 # define INTERCEPT_FUNCTION_WIN(func) \
35 #func, (::__interception::uptr*)&REAL(func))
37 # define INTERCEPT_FUNCTION_WIN(func) \
39 (::__interception::uptr)func, \
40 (::__interception::uptr)WRAP(func), \
41 (::__interception::uptr*)&REAL(func))
/external/clang/test/Misc/
H A Ddiag-template-diffing-color.cpp5 void func(foo<int>);
7 func(foo<double>());
/external/clang/test/CXX/dcl.decl/dcl.meaning/
H A Dp1-0x.cpp6 void func();
10 void decltype(foo())::func() { // expected-error{{'decltype' cannot be used to name a declaration}}
17 void func();
23 void decltype(tfoo<T>())::func() { // expected-error{{nested name specifier 'decltype(tfoo<T>())::' for declaration does not refer into a class, class template or class template partial specialization}}
/external/clang/test/Index/
H A Dgetcursor-pp-pch.c5 void OBSCURE(func)(int x) { function
H A Dcomplete-in-stringify.c1 const char *func(const char *);
6 #define N(x) func("2"#x MORE)
/external/clang/test/PCH/
H A Dtypo2.cpp7 void func(struct Test);
/external/v8/test/mjsunit/
H A Dassert-opt-and-deopt.js58 OptTracker.prototype.CheckpointOptCount = function(func) {
59 this.opt_counts_[func] = %GetOptimizationCount(func);
62 OptTracker.prototype.AssertOptCount = function(func, optcount) {
63 if (this.DisableAsserts_(func)) {
66 assertEquals(optcount, this.GetOptCount_(func));
69 OptTracker.prototype.AssertDeoptCount = function(func, deopt_count) {
70 if (this.DisableAsserts_(func)) {
73 assertEquals(deopt_count, this.GetDeoptCount_(func));
76 OptTracker.prototype.AssertDeoptHappened = function(func, expect_deop
[all...]
/external/icu4c/test/perf/normperf/
H A Dnormperf.cpp181 NormPerfFunction* func= new NormPerfFunction(ICUNormNFC, options,NFDFileLines,numLines, uselen); local
182 return func;
184 NormPerfFunction* func= new NormPerfFunction(ICUNormNFC, options,NFDBuffer, NFDBufferLen, uselen); local
185 return func;
190 NormPerfFunction* func = new NormPerfFunction(ICUNormNFC, options,NFCFileLines,numLines, uselen); local
191 return func;
193 NormPerfFunction* func= new NormPerfFunction(ICUNormNFC, options,NFCBuffer, NFCBufferLen, uselen); local
194 return func;
199 NormPerfFunction* func = new NormPerfFunction(ICUNormNFC, options,lines,numLines, uselen); local
200 return func;
202 NormPerfFunction* func = new NormPerfFunction(ICUNormNFC, options,buffer, bufferLen, uselen); local
210 NormPerfFunction* func = new NormPerfFunction(ICUNormNFD, options,NFDFileLines,numLines, uselen); local
213 NormPerfFunction* func = new NormPerfFunction(ICUNormNFD, options,NFDBuffer,NFDBufferLen, uselen); local
219 NormPerfFunction* func = new NormPerfFunction(ICUNormNFD, options,NFCFileLines,numLines, uselen); local
222 NormPerfFunction* func = new NormPerfFunction(ICUNormNFD, options,NFCBuffer,NFCBufferLen, uselen); local
228 NormPerfFunction* func = new NormPerfFunction(ICUNormNFD, options,lines,numLines, uselen); local
231 NormPerfFunction* func = new NormPerfFunction(ICUNormNFD, options,buffer,bufferLen, uselen); local
239 NormPerfFunction* func = new NormPerfFunction(ICUNormFCD, options,NFDFileLines,numLines, uselen); local
242 NormPerfFunction* func = new NormPerfFunction(ICUNormFCD, options,NFDBuffer,NFDBufferLen, uselen); local
249 NormPerfFunction* func = new NormPerfFunction(ICUNormFCD, options,NFCFileLines,numLines, uselen); local
252 NormPerfFunction* func = new NormPerfFunction(ICUNormFCD, options,NFCBuffer,NFCBufferLen, uselen); local
258 NormPerfFunction* func = new NormPerfFunction(ICUNormFCD, options,lines,numLines, uselen); local
261 NormPerfFunction* func = new NormPerfFunction(ICUNormFCD, options,buffer,bufferLen, uselen); local
269 NormPerfFunction* func = new NormPerfFunction(WinNormNFC, options,NFDFileLines,numLines, uselen); local
272 NormPerfFunction* func = new NormPerfFunction(WinNormNFC, options,NFDBuffer,NFDBufferLen, uselen); local
278 NormPerfFunction* func = new NormPerfFunction(WinNormNFC, options,NFCFileLines,numLines, uselen); local
281 NormPerfFunction* func = new NormPerfFunction(WinNormNFC, options,NFCBuffer,NFCBufferLen, uselen); local
287 NormPerfFunction* func = new NormPerfFunction(WinNormNFC, options,lines,numLines, uselen); local
290 NormPerfFunction* func = new NormPerfFunction(WinNormNFC, options,buffer,bufferLen, uselen); local
298 NormPerfFunction* func = new NormPerfFunction(WinNormNFD, options,NFDFileLines,numLines, uselen); local
301 NormPerfFunction* func = new NormPerfFunction(WinNormNFD, options,NFDBuffer,NFDBufferLen, uselen); local
307 NormPerfFunction* func = new NormPerfFunction(WinNormNFD, options,NFCFileLines,numLines, uselen); local
310 NormPerfFunction* func = new NormPerfFunction(WinNormNFD, options,NFCBuffer,NFCBufferLen, uselen); local
316 NormPerfFunction* func = new NormPerfFunction(WinNormNFD, options,lines,numLines, uselen); local
319 NormPerfFunction* func = new NormPerfFunction(WinNormNFD, options,buffer,bufferLen, uselen); local
327 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFDFileLines, numLines, UNORM_NFC, options,uselen); local
330 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFDBuffer, NFDBufferLen, UNORM_NFC, options,uselen); local
336 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFCFileLines, numLines, UNORM_NFC, options,uselen); local
339 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFCBuffer, NFCBufferLen, UNORM_NFC, options,uselen); local
345 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,lines, numLines, UNORM_NFC, options,uselen); local
348 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,buffer, bufferLen, UNORM_NFC, options,uselen); local
355 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFDFileLines, numLines, UNORM_NFD, options,uselen); local
358 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFDBuffer, NFDBufferLen, UNORM_NFD, options,uselen); local
364 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFCFileLines, numLines, UNORM_NFD, options,uselen); local
367 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFCBuffer, NFCBufferLen, UNORM_NFD, options,uselen); local
373 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,lines, numLines, UNORM_NFD, options,uselen); local
376 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,buffer, bufferLen, UNORM_NFD, options,uselen); local
383 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFDFileLines, numLines, UNORM_FCD, options,uselen); local
386 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFDBuffer, NFDBufferLen, UNORM_FCD, options,uselen); local
392 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFCFileLines, numLines, UNORM_FCD, options,uselen); local
395 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,NFCBuffer, NFCBufferLen, UNORM_FCD, options,uselen); local
401 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,lines, numLines, UNORM_FCD, options,uselen); local
404 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUQuickCheck,buffer, bufferLen, UNORM_FCD, options,uselen); local
412 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFDFileLines, numLines, UNORM_NFC, options,uselen); local
415 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFDBuffer, NFDBufferLen, UNORM_NFC, options,uselen); local
421 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFCFileLines, numLines, UNORM_NFC, options,uselen); local
424 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFCBuffer, NFCBufferLen, UNORM_NFC, options,uselen); local
430 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,lines, numLines, UNORM_NFC, options,uselen); local
433 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,buffer, bufferLen, UNORM_NFC, options,uselen); local
440 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFDFileLines, numLines, UNORM_NFD, options,uselen); local
443 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFDBuffer, NFDBufferLen, UNORM_NFD, options,uselen); local
449 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFCFileLines, numLines, UNORM_NFD, options,uselen); local
452 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFCBuffer, NFCBufferLen, UNORM_NFD, options,uselen); local
458 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,lines, numLines, UNORM_NFD, options,uselen); local
461 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,buffer, bufferLen, UNORM_NFD, options,uselen); local
468 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFDFileLines, numLines, UNORM_FCD, options,uselen); local
471 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFDBuffer, NFDBufferLen, UNORM_FCD, options,uselen); local
477 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFCFileLines, numLines, UNORM_FCD, options,uselen); local
480 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,NFCBuffer, NFCBufferLen, UNORM_FCD, options,uselen); local
486 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,lines, numLines, UNORM_FCD, options,uselen); local
489 QuickCheckPerfFunction* func = new QuickCheckPerfFunction(ICUIsNormalized,buffer, bufferLen, UNORM_FCD, options,uselen); local
[all...]
/external/chromium/net/base/
H A Dnet_module.cc12 void NetModule::SetResourceProvider(ResourceProvider func) { argument
13 resource_provider = func;

Completed in 401 milliseconds

1234567891011>>