Searched refs:func (Results 126 - 150 of 1237) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dgen_dynamic_list.py57 for func in all_functions:
59 if func in new_delete:
60 result.append(func)
63 match = re.match('__interceptor_(.*)', func)
65 result.append(func)
73 if re.match('__sanitizer_(.*)', func):
74 result.append(func)
/external/bison/src/
H A Dscan-skel.l193 void (*func)(char const *, ...);
196 case 'w': func = warn; break;
197 case 'c': func = complain; break;
198 case 'f': func = fatal; break;
204 func (_(at_directive_argv[1]));
207 func (_(at_directive_argv[1]), at_directive_argv[2]);
210 func (_(at_directive_argv[1]), at_directive_argv[2],
214 func (_(at_directive_argv[1]), at_directive_argv[2],
218 func (_(at_directive_argv[1]), at_directive_argv[2],
231 void (*func)(locatio
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-member.cpp7 virtual void func() { function in struct:MyClass
23 // CHECK: [[FOO_FUNC]] = !MDSubprogram(name: "func", linkageName: "_ZN3foo4funcEN5outerIS_E5innerE",
44 // CHECK: [[C_FUNC]] = !MDSubprogram(name: "func",{{.*}} line: 7,
71 void func(outer<foo>::inner);
74 inline void func() { function
/external/clang/test/Misc/
H A Dast-dump-templates.cpp55 void func(int);
56 void func(float);
59 func(T());
62 // DUMP: UnresolvedLookupExpr {{.*}} <col:3> '<overloaded function type>' lvalue (ADL) = 'func'
/external/lldb/include/lldb/Target/
H A DUnwindAssembly.h30 GetNonCallSiteUnwindPlanFromAssembly (AddressRange& func,
35 GetFastUnwindPlan (AddressRange& func,
41 FirstNonPrologueInsn (AddressRange& func,
/external/mesa3d/src/egl/main/
H A Deglglobals.c63 _eglAddAtExitCall(void (*func)(void)) argument
65 if (func) {
76 _eglGlobal.AtExitCalls[_eglGlobal.NumAtExitCalls++] = func;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_init.h65 LLVMValueRef func);
72 LLVMValueRef func);
76 LLVMValueRef func,
/external/v8/test/webkit/
H A Dcached-call-uninitialized-arguments.js57 function callAfterRecursingForDepth(depth, func, arr) {
59 callAfterRecursingForDepth(depth - 1, func, arr);
61 func(arr);
/external/icu/icu4c/source/test/perf/DateFmtPerf/
H A DDateFmtPerf.cpp70 DateFmtFunction* func= new DateFmtFunction(1, locale); local
71 return func;
75 DateFmtFunction* func= new DateFmtFunction(40, locale); local
76 return func;
80 DateFmtFunction* func= new DateFmtFunction(400, locale); local
81 return func;
85 BreakItFunction* func= new BreakItFunction(250, true); local
86 return func;
90 BreakItFunction* func= new BreakItFunction(10000, true); local
91 return func;
95 BreakItFunction* func= new BreakItFunction(250, false); local
100 BreakItFunction* func= new BreakItFunction(10000, false); local
105 NumFmtFunction* func= new NumFmtFunction(10000, locale); local
110 NumFmtFunction* func= new NumFmtFunction(100000, locale); local
115 CollationFunction* func= new CollationFunction(40, locale); local
120 CollationFunction* func= new CollationFunction(400, locale); local
126 DIFCreateFunction* func = new DIFCreateFunction(250, locale); local
131 DIFCreateFunction* func = new DIFCreateFunction(10000, locale); local
[all...]
/external/v8/test/mjsunit/harmony/
H A Dblock-let-crankshaft.js38 var func = functions[i];
40 print(func);
42 func(12);
44 %OptimizeFunctionOnNextCall(func);
45 func(12);
46 assertOptimized(func);
343 var func = eval("(function baz(){" + s + "; })");
345 print(func);
348 func();
354 %OptimizeFunctionOnNextCall(func);
[all...]
/external/libcxx/src/
H A Dstring.cpp50 void throw_from_string_out_of_range( const string& func )
52 throw_helper<out_of_range>(func + ": out of range");
56 void throw_from_string_invalid_arg( const string& func )
58 throw_helper<invalid_argument>(func + ": no conversion");
66 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) argument
75 throw_from_string_out_of_range(func);
77 throw_from_string_invalid_arg(func);
86 as_integer(const string& func, const S& s, size_t* idx, int base);
92 as_integer(const string& func, const string& s, size_t* idx, int base ) argument
95 long r = as_integer_helper<long>( func,
104 as_integer(const string& func, const string& s, size_t* idx, int base ) argument
112 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
120 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
128 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
137 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
149 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
157 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
165 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
173 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
183 as_float_helper(const string& func, const S& str, size_t* idx, F f ) argument
207 as_float( const string& func, const string& s, size_t* idx ) argument
215 as_float(const string& func, const string& s, size_t* idx ) argument
223 as_float( const string& func, const string& s, size_t* idx ) argument
231 as_float( const string& func, const wstring& s, size_t* idx ) argument
239 as_float( const string& func, const wstring& s, size_t* idx ) argument
247 as_float( const string& func, const wstring& s, size_t* idx ) argument
[all...]
/external/boringssl/src/crypto/
H A Dthread.c74 void CRYPTO_set_locking_callback(void (*func)(int mode, int lock_num,
77 void CRYPTO_set_add_lock_callback(int (*func)(int *num, int mount, int lock_num,
84 int CRYPTO_THREADID_set_callback(void (*func)(CRYPTO_THREADID *)) { return 1; }
92 void CRYPTO_set_id_callback(unsigned long (*func)(void)) {} argument
/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/CodeGen/
H A D2003-09-30-StructLayout.c16 void func(struct St* A) { function
/external/clang/test/CoverageMapping/
H A Dpreprocessor.c3 // CHECK: func
4 void func() { // CHECK: File 0, [[@LINE]]:13 -> [[@LINE+5]]:2 = #0 function
/external/clang/test/Sema/
H A D2007-10-01-BuildArrayRef.c3 void func() function
H A Dincomplete-call.c9 void func(void *p) { function
/external/clang/test/SemaCXX/
H A Dambig-user-defined-conversions.cpp16 void func(const int ci, const char cc); // expected-note {{candidate function}}
17 void func(const char ci, const B b); // expected-note {{candidate function}}
18 void func(const B b, const int ci); // expected-note {{candidate function}}
22 func(b1, f()); // expected-error {{call to 'func' is ambiguous}}
/external/compiler-rt/test/profile/Inputs/
H A Dinstrprof-dlopen-main.c8 void func(int K);
15 void *f1_handle = dlopen(DLOPEN_FUNC_DIR"/func.shared", DLOPEN_FLAGS);
17 fprintf(stderr, "unable to open '" DLOPEN_FUNC_DIR "/func.shared': %s\n",
22 void (*func)(int) = (void (*)(int))dlsym(f1_handle, "func");
23 if (func == NULL) {
24 fprintf(stderr, "unable to lookup symbol 'func': %s\n", dlerror());
42 func(1);
/external/icu/icu4c/source/io/
H A Ducln_io.h36 cleanupFunc *func);
/external/kernel-headers/original/uapi/linux/
H A Dpg.h46 char func; /* PG_RESET or PG_COMMAND */ member in struct:pg_write_hdr
/external/libunwind/tests/
H A DGtest-nomalloc.c40 static void * (*func)();
42 if(!func)
43 func = (void *(*)()) dlsym(RTLD_NEXT, "malloc");
49 return func(s);
/external/llvm/test/MC/COFF/
H A Dseh.s40 // CHECK-NEXT: 0x20 IMAGE_REL_AMD64_ADDR32NB func
41 // CHECK-NEXT: 0x24 IMAGE_REL_AMD64_ADDR32NB func
45 // CHECK-NEXT: 0x0 IMAGE_REL_AMD64_ADDR32NB func
46 // CHECK-NEXT: 0x4 IMAGE_REL_AMD64_ADDR32NB func
48 // CHECK-NEXT: 0xC IMAGE_REL_AMD64_ADDR32NB func
49 // CHECK-NEXT: 0x10 IMAGE_REL_AMD64_ADDR32NB func
124 .globl func
125 .def func; .scl 2; .type 32; .endef
126 .seh_proc func
127 func label
[all...]
/external/mesa3d/src/gallium/targets/libgl-xlib/
H A Dxlib.c122 #define NAME(func) mgl##func
124 #define NAME(func) gl##func
/external/mesa3d/src/mapi/glapi/
H A Dglapi_dispatch.c55 #define NAME(func) mgl##func
57 #define NAME(func) gl##func

Completed in 1091 milliseconds

1234567891011>>