Home
last modified time | relevance | path

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

/external/llvm-project/clang/test/CodeGenCXX/
Dbuiltin-source-location.cpp240 struct TestTemplate { struct
244 constexpr TestTemplate(Tp arg_info = Tp::current()) : arg_info(arg_info) {} in TestTemplate() argument
264 TestTemplate<T, V> local_templ; in test_template()
/external/fmtlib/test/
Dostream-test.cc206 template <typename T> struct TestTemplate {}; struct
209 std::ostream& operator<<(std::ostream& os, TestTemplate<T>) { in operator <<()
214 template <typename T> struct formatter<TestTemplate<T>> : formatter<int> {
216 typename FormatContext::iterator format(TestTemplate<T>, FormatContext& ctx) { in format()
224 EXPECT_EQ("2", fmt::format("{}", TestTemplate<int>())); in TEST()
/external/python/cpython2/Lib/test/
Dtest_string.py239 class TestTemplate(unittest.TestCase): class
444 test_support.run_unittest(StringTest, ModuleTest, BytesAliasTest, TestTemplate)
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmisc-redundant-expression.cpp254 void TestTemplate() { TemplateCheck<MyClass, MyClass>(); } in TestTemplate() function
/external/python/cpython3/Lib/test/
Dtest_string.py207 class TestTemplate(unittest.TestCase): class