Searched defs:fun (Results 1 - 25 of 165) sorted by relevance

1234567

/external/clang/test/CodeGen/
H A D2009-01-05-BlockInlining.c10 static int fun(int x) { function
24 print(fun(x));
/external/clang/test/CodeGenCXX/
H A D2003-12-08-ArrayOfPtrToMemberFunc.cpp4 void fun ();
8 static memfunptr jumpTable[] = { &Evil::fun };
10 void Evil::fun() { function in class:Evil
H A Dmicrosoft-uuidof.cpp66 void fun() { function
/external/clang/test/OpenMP/
H A Ddeclare_reduction_messages.c15 #pragma omp declare reduction(fun : int // expected-error {{expected ':'}} expected-error {{expected expression}}
24 #pragma omp declare reduction(fun : long : omp_out += omp_in) { // expected-error {{expected 'initializer'}} expected-warning {{extra tokens at the end of '#pragma omp declare reduction' are ignored}}
25 #pragma omp declare reduction(fun : unsigned : omp_out += temp)) // expected-error {{expected 'initializer'}} expected-warning {{extra tokens at the end of '#pragma omp declare reduction' are ignored}} expected-error {{only 'omp_in' or 'omp_out' variables are allowed in combiner expression}}
26 #pragma omp declare reduction(fun : long(void) : omp_out += omp_in) // expected-error {{reduction type cannot be a function type}}
27 #pragma omp declare reduction(fun : long[3] : omp_out += omp_in) // expected-error {{reduction type cannot be an array type}}
42 int fun(int arg) { function
H A Ddeclare_reduction_messages.cpp15 #pragma omp declare reduction(fun : int // expected-error {{expected ':'}} expected-error {{expected expression}}
24 #pragma omp declare reduction(fun : long : omp_out += omp_in) { // expected-warning {{extra tokens at the end of '#pragma omp declare reduction' are ignored}} expected-error {{expected 'initializer'}}
25 #pragma omp declare reduction(fun : unsigned : omp_out += ::temp)) // expected-warning {{extra tokens at the end of '#pragma omp declare reduction' are ignored}} expected-error {{expected 'initializer'}} expected-error {{only 'omp_in' or 'omp_out' variables are allowed in combiner expression}}
26 #pragma omp declare reduction(fun : long & : omp_out += omp_in) // expected-error {{reduction type cannot be a reference type}}
27 #pragma omp declare reduction(fun : long(void) : omp_out += omp_in) // expected-error {{reduction type cannot be a function type}}
28 #pragma omp declare reduction(fun : long[3] : omp_out += omp_in) // expected-error {{reduction type cannot be an array type}}
36 #pragma omp declare reduction(fun : T : temp) // expected-error {{only 'omp_in' or 'omp_out' variables are allowed in combiner expression}}
47 #pragma omp declare reduction(fun : T : omp_out += omp_in)
66 T fun(T arg) { function
71 #pragma omp declare reduction(fun
[all...]
/external/clang/test/SemaCXX/
H A Dwritable-strings-deprecated.cpp14 char *fun(void) function
H A Dgoto2.cpp10 void fun(const char* text) { function
45 fun(ptr);
H A Dqual-id-test.cpp43 void fun() function in namespace:C
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp2.cpp6 void fun() { function
/external/skia/tests/
H A DPathOpsExtendedTest.h19 void (*fun)(skiatest::Reporter*, const char* filename); member in struct:TestDesc
/external/skqp/tests/
H A DPathOpsExtendedTest.h19 void (*fun)(skiatest::Reporter*, const char* filename); member in struct:TestDesc
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp4.cpp16 template<typename S> void fun(const int* const S::* member) {} function in namespace:PR12132
19 fun(&A::x);
/external/clang/test/Sema/
H A Dinvalid-decl.c27 FunctionType fun; // expected-error {{field 'fun' declared as a function}} member in struct:__anon3228
30 buf->fun = 0;
/external/mockito/src/test/java/org/mockitousage/bugs/
H A DCaptorAnnotationAutoboxingTest.java26 @Mock Fun fun; field in class:CaptorAnnotationAutoboxingTest
32 fun.doFun(1.0);
35 verify(fun).doFun(captor.capture());
43 verify(fun, never()).moreFun(intCaptor.capture());
/external/clang/test/PCH/
H A Dstruct.h13 struct Fun *fun; variable in typeref:struct:Fun
/external/libedit/src/
H A Dhist.h53 hist_fun_t fun; /* Event access */ member in struct:el_history_t
58 ((((*(el)->el_history.fun) ((el)->el_history.ref, &(el)->el_history.ev, \
H A Dhist.c57 el->el_history.fun = NULL;
84 hist_set(EditLine *el, hist_fun_t fun, void *ptr) argument
88 el->el_history.fun = fun;
218 if ((*(el)->el_history.fun)((el)->el_history.ref, &ev, fn, arg) == -1)
/external/clang/test/SemaTemplate/
H A Dtemp_func_order.cpp92 void fun(CrazyFun cf) { function
/external/libffi/src/alpha/
H A Dffi.c176 void (*fun)(ffi_cif*, void*, void**, void*),
193 closure->fun = fun;
284 closure->fun (cif, rvalue, avalue, closure->user_data);
174 ffi_prep_closure_loc(ffi_closure* closure, ffi_cif* cif, void (*fun)(ffi_cif*, void*, void**, void*), void *user_data, void *codeloc) argument
/external/libffi/src/
H A Djava_raw_api.c332 (*cl->fun) (cif, rvalue, (ffi_raw*)raw, cl->user_data);
339 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
352 cl->fun = fun;
366 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
369 return ffi_prep_java_raw_closure_loc (cl, cif, fun, user_data, cl);
337 ffi_prep_java_raw_closure_loc(ffi_java_raw_closure* cl, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*), void *user_data, void *codeloc) argument
364 ffi_prep_java_raw_closure(ffi_java_raw_closure* cl, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*), void *user_data) argument
H A Dprep_cif.c247 void (*fun)(ffi_cif*,void*,void**,void*),
250 return ffi_prep_closure_loc (closure, cif, fun, user_data, closure);
245 ffi_prep_closure(ffi_closure* closure, ffi_cif* cif, void (*fun)(ffi_cif*,void*,void**,void*), void *user_data) argument
H A Draw_api.c221 (*cl->fun) (cif, rvalue, raw, cl->user_data);
227 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
240 cl->fun = fun;
259 void (*fun)(ffi_cif*,void*,ffi_raw*,void*),
262 return ffi_prep_raw_closure_loc (cl, cif, fun, user_data, cl);
225 ffi_prep_raw_closure_loc(ffi_raw_closure* cl, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_raw*,void*), void *user_data, void *codeloc) argument
257 ffi_prep_raw_closure(ffi_raw_closure* cl, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_raw*,void*), void *user_data) argument
/external/python/cpython2/Modules/_ctypes/libffi/src/alpha/
H A Dffi.c176 void (*fun)(ffi_cif*, void*, void**, void*),
193 closure->fun = fun;
284 closure->fun (cif, rvalue, avalue, closure->user_data);
174 ffi_prep_closure_loc(ffi_closure* closure, ffi_cif* cif, void (*fun)(ffi_cif*, void*, void**, void*), void *user_data, void *codeloc) argument
/external/python/cpython2/Modules/_ctypes/libffi/src/
H A Djava_raw_api.c314 (*cl->fun) (cif, rvalue, (ffi_raw*)raw, cl->user_data);
321 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
334 cl->fun = fun;
348 void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*),
351 return ffi_prep_java_raw_closure_loc (cl, cif, fun, user_data, cl);
319 ffi_prep_java_raw_closure_loc(ffi_java_raw_closure* cl, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*), void *user_data, void *codeloc) argument
346 ffi_prep_java_raw_closure(ffi_java_raw_closure* cl, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*), void *user_data) argument
H A Dprep_cif.c239 void (*fun)(ffi_cif*,void*,void**,void*),
242 return ffi_prep_closure_loc (closure, cif, fun, user_data, closure);
237 ffi_prep_closure(ffi_closure* closure, ffi_cif* cif, void (*fun)(ffi_cif*,void*,void**,void*), void *user_data) argument

Completed in 963 milliseconds

1234567