Home
last modified time | relevance | path

Searched refs:fun_type (Results 1 – 5 of 5) sorted by relevance

/external/clang/test/SemaCXX/
Drval-references.cpp24 typedef void (fun_type)(); typedef
26 fun_type &&make_fun();
54 fun_type &&fun_ref = fun; // works because functions are special in f()
55 fun_type &&fun_ref2 = make_fun(); // same in f()
56 fun_type &fun_lref = make_fun(); // also special in f()
/external/llvm-project/clang/test/SemaCXX/
Drval-references.cpp24 typedef void (fun_type)(); typedef
26 fun_type &&make_fun();
58 fun_type &&fun_ref = fun; // works because functions are special in f()
59 fun_type &&fun_ref2 = make_fun(); // same in f()
60 fun_type &fun_lref = make_fun(); // also special in f()
/external/llvm-project/clang/test/CodeGenCXX/
Dmangle-ms-arg-qualifiers.cpp234 typedef void fun_type(void); typedef
238 void mangle_no_backref2(fun_type, ptr_to_fun_type) {} in mangle_no_backref2() argument
250 void mangle_yes_backref2(fun_type *const[], ptr_to_fun_type const[]) {} in mangle_yes_backref2()
/external/clang/test/CodeGenCXX/
Dmangle-ms-arg-qualifiers.cpp234 typedef void fun_type(void); typedef
238 void mangle_no_backref2(fun_type, ptr_to_fun_type) {} in mangle_no_backref2() argument
250 void mangle_yes_backref2(fun_type *const[], ptr_to_fun_type const[]) {} in mangle_yes_backref2()
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-use-using.cpp166 typedef void (*fun_type)(); typedef