Home
last modified time | relevance | path

Searched refs:testType (Results 1 – 16 of 16) sorted by relevance

/llvm-project/libcxx/test/std/ranges/range.factories/range.iota.view/
H A Dend.pass.cpp27 constexpr void testType(U u) { in testType() function
62 testType<SomeInt>(SomeInt(10)); in test()
63 testType<SomeInt>(IntComparableWith(SomeInt(10))); in test()
64 testType<signed long>(IntComparableWith<signed long>(10)); in test()
65 testType<unsigned long>(IntComparableWith<unsigned long>(10)); in test()
66 testType<int>(IntComparableWith<int>(10)); in test()
67 testType<int>(int(10)); in test()
68 testType<int>(unsigned(10)); in test()
69 testType<unsigned>(unsigned(10)); in test()
70 testType<unsigned>(int(10)); in test()
[all …]
H A Dviews_iota.pass.cpp22 constexpr void testType(U u) { in testType() function
50 testType<SomeInt>(SomeInt(10)); in test()
51 testType<SomeInt>(IntComparableWith(SomeInt(10))); in test()
52 testType<signed long>(IntComparableWith<signed long>(10)); in test()
53 testType<unsigned long>(IntComparableWith<unsigned long>(10)); in test()
54 testType<int>(IntComparableWith<int>(10)); in test()
55 testType<int>(int(10)); in test()
56 testType<unsigned>(unsigned(10)); in test()
57 testType<unsigned>(IntComparableWith<unsigned>(10)); in test()
58 testType<short>(short(10)); in test()
[all …]
H A Dbegin.pass.cpp21 constexpr void testType() { in testType() function
42 testType<SomeInt>(); in test()
43 testType<long long>(); in test()
44 testType<unsigned long long>(); in test()
45 testType<signed long>(); in test()
46 testType<unsigned long>(); in test()
47 testType<int>(); in test()
48 testType<unsigned>(); in test()
49 testType<short>(); in test()
50 testType<unsigned short>(); in test()
/llvm-project/libcxx/test/std/ranges/range.factories/range.iota.view/iterator/
H A Dsubscript.pass.cpp21 constexpr void testType() { in testType() function
49 testType<SomeInt>(); in test()
50 testType<signed long>(); in test()
51 testType<unsigned long>(); in test()
52 testType<int>(); in test()
53 testType<unsigned>(); in test()
54 testType<short>(); in test()
55 testType<unsigned short>(); in test()
H A Dstar.pass.cpp52 constexpr void testType() { in testType() function
82 testType<SomeInt>(); in test()
83 testType<NotNoexceptCopy>(); in test()
84 testType<signed long>(); in test()
85 testType<unsigned long>(); in test()
86 testType<int>(); in test()
87 testType<unsigned>(); in test()
88 testType<short>(); in test()
89 testType<unsigned short>(); in test()
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.empty/
H A Dviews.empty.pass.cpp20 constexpr void testType() { in testType() function
35 testType<int>(); in test()
36 testType<const int>(); in test()
37 testType<int*>(); in test()
38 testType<Empty>(); in test()
39 testType<const Empty>(); in test()
40 testType<BigType>(); in test()
H A Dempty_view.pass.cpp20 constexpr void testType() { in testType() function
51 testType<int>(); in test()
52 testType<const int>(); in test()
53 testType<int*>(); in test()
54 testType<Empty>(); in test()
55 testType<const Empty>(); in test()
56 testType<BigType>(); in test()
/llvm-project/llvm/test/CodeGen/X86/
H A Dstore-empty-member.ll8 %testType = type {i32, [0 x i32], i32}
11 %1 = alloca %testType
12 store volatile %testType {i32 1, [0 x i32] zeroinitializer, i32 2}, ptr %1
/llvm-project/mlir/test/lib/IR/
H A DTestInterfaces.cpp40 if (auto testType = dyn_cast<TestType>(type)) in runOnOperation() local
41 testType.printTypeE(op->getLoc()); in runOnOperation()
/llvm-project/flang/test/Semantics/
H A Dresolve88.f9065 type testType type
73 end type testType
H A Dresolve31.f9082 type :: testType type
92 end type testType
/llvm-project/mlir/unittests/IR/
H A DInterfaceAttachmentTest.cpp114 test::TestType testType = test::TestType::get(&context); in TEST() local
115 auto iface = dyn_cast<TestExternalTypeInterface>(testType); in TEST()
133 test::TestType testType = test::TestType::get(&context); in TEST() local
134 EXPECT_FALSE(isa<TestExternalTypeInterface>(testType)); in TEST()
136 EXPECT_TRUE(isa<TestExternalTypeInterface>(testType)); in TEST()
/llvm-project/clang/test/AST/
H A Dast-dump-decl.cpp698 template<typename> class testType { }; class
699 template class testType<int>; variable
/llvm-project/mlir/lib/Tools/mlir-opt/
H A DMlirOptMain.cpp358 std::string testType = (useBytecode) ? "bytecode" : "textual"; in performActions()
379 op->emitOpError() << "failed to parse " << testType in performActions()
400 << testType in performActions()
291 std::string testType = (useBytecode) ? "bytecode" : "textual"; doVerifyRoundTrip() local
/llvm-project/mlir/test/IR/
H A Drepro_b120295301.mlir3 func.func @testType(tensor<1x224x224x3xf32>) -> tensor<96xf32> {
109 // CHECK: testType
/llvm-project/clang/unittests/AST/
H A DASTImporterTest.cpp5474 auto testType = [&](ASTContext &Ctx, const char *Name, in TEST_P()
5488 testType(Ctx, "void", std::nullopt); in TEST_P()
5489 testType(Ctx, "char", 3); in TEST_P()
5490 testType(Ctx, "float", 2); in TEST_P()
5491 testType(Ctx, "int", 1);
5492 testType(Ctx, "short", 0);
5465 auto testType = [&](ASTContext &Ctx, const char *Name, TEST_P() local