Lines Matching refs:tuple
7 using empty_t = std::tuple<>;
17 EXPECT_FALSE((thunk.typed<float, std::tuple<int32_t, uint32_t>>(store))); in TEST()
26 EXPECT_TRUE((pi32.typed<std::tuple<int32_t>, empty_t>(store))); in TEST()
28 EXPECT_TRUE((pi32.typed<std::tuple<uint32_t>, empty_t>(store))); in TEST()
35 EXPECT_FALSE((rets.typed<empty_t, std::tuple<int, int>>(store))); in TEST()
37 EXPECT_TRUE((rets.typed<empty_t, std::tuple<float, double>>(store))); in TEST()
61 f.typed<std::tuple<int32_t>, empty_t>(store) in TEST()
78 f.typed<std::tuple<float, uint64_t>, std::tuple<uint32_t, double>>( in TEST()
101 std::tuple<std::optional<ExternRef>, std::optional<ExternRef>>; in TEST()
132 using FuncPair = std::tuple<std::optional<Func>, std::optional<Func>>; in TEST()
217 return Result<std::tuple<int32_t, int32_t>, Trap>({1, 2}); in TEST()
256 auto ret = f.typed<std::tuple<int32_t, int32_t>, int32_t>(store) in TEST()