Searched defs:fun_type (Results 1 - 3 of 3) sorted by relevance

/external/stlport/test/unit/
H A Dfadapter.h48 typedef void (*fun_type)(Arg); typedef in class:pointer_to_unary_procedure
49 fun_type ptr;
53 pointer_to_unary_procedure(fun_type x) : ptr(x) {}
65 typedef void (*fun_type)(Arg1, Arg2); typedef in class:pointer_to_binary_procedure
66 fun_type ptr;
71 pointer_to_binary_procedure(fun_type x) : ptr(x) {}
/external/clang/test/SemaCXX/
H A Drval-references.cpp24 typedef void (fun_type)(); typedef
26 fun_type &&make_fun();
54 fun_type &&fun_ref = fun; // works because functions are special
55 fun_type &&fun_ref2 = make_fun(); // same
56 fun_type &fun_lref = make_fun(); // also special
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-arg-qualifiers.cpp234 typedef void fun_type(void); typedef
238 void mangle_no_backref2(fun_type, ptr_to_fun_type) {}
250 void mangle_yes_backref2(fun_type *const[], ptr_to_fun_type const[]) {}

Completed in 1684 milliseconds