Home
last modified time | relevance | path

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

/llvm-project/clang/test/AST/
H A Dast-print-out-of-line-func.cpp59 template<typename U> void functionTemplate(T, U);
68 void TemplateRecord<x, T>::functionTemplate(T, U) { } in functionTemplate() function in TemplateRecord
74 template<typename U> void functionTemplate(int, U);
81 void TemplateRecord<0, int>::functionTemplate(int, U) { } in functionTemplate() function in TemplateRecord
/llvm-project/clang/test/CodeGenCXX/
H A Dpredefined-expr-sizeof.cpp16 void functionTemplate(T t) { in functionTemplate() function
26 functionTemplate<int>(0); in main()
27 functionTemplate(0.0); in main()
H A Dpredefined-expr-cxx14.cpp44 auto &functionTemplate(T &t) { in functionTemplate() function in ClassInTopLevelNamespace
100 topLevelNamespace.functionTemplate(a); in main()
/llvm-project/clang/test/Analysis/
H A Duse-after-move.cpp479 void functionTemplate(A a);
490 functionTemplate<sizeof(A(std::move(a)))>(std::move(a)); // no-warning in templateArgIsNotUseTest()
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Duse-after-move.cpp535 void functionTemplate(A a);
545 functionTemplate<sizeof(A(std::move(a)))>(std::move(a)); in f()