Lines Matching refs:Tuple
53 EXPECT_TRUE((IsTypeSupported<std::tuple<bool, double, int32_t>>::value));
64 EXPECT_FALSE((IsTypeSupported<std::tuple<bool, char, int32_t>>::value));
132 EXPECT_EQ("(i)", (GetDBusSignature<std::tuple<int>>()));
133 EXPECT_EQ("(sv)", (GetDBusSignature<std::tuple<std::string, Any>>()));
136 std::tuple<int, double, std::tuple<std::string, int>>>()));
594 TEST(DBusUtils, Tuple) {
597 std::tuple<std::string, int> struct1{"value2", 3};
599 std::tuple<int, std::string, std::vector<std::pair<int, int>>> struct2{
606 std::tuple<std::string, int> struct1_out;
607 std::tuple<int, std::string, std::vector<std::pair<int, int>>> struct2_out;