Home
last modified time | relevance | path

Searched refs:template_function (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/google/
H A Dreadability-casting.cpp154 void template_function(T t, int n) { in template_function() function
176 template_function(1, 42); in test_templates()
177 template_function(1.0, 42); in test_templates()
H A Dreadability-casting.mm79 void template_function(T t, int n) { function
91 template_function(1, 42);
92 template_function(1.0, 42);
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cppcoreguidelines/
H A Downing-memory.cpp358 void template_function(T t) { in template_function() function
382 template_function(IntOwner1); // Ok, but not actually ok, since type deduction removes owner in test_templates()
383 template_function(stack_ptr1); // Bad, but type deduction gets it wrong in test_templates()