Searched refs:one_two_three (Results 1 – 1 of 1) sorted by relevance
/aosp12/system/tools/aidl/tests/ |
H A D | aidl_test_client_parcelables.cpp | 173 Union one_two_three = Union::make<Union::ns>({1, 2, 3}); in TEST_F() local 176 EXPECT_EQ(Union::ns, one_two_three.getTag()); in TEST_F() 179 EXPECT_EQ(one_two_three, Union(std::vector{1, 2, 3})); in TEST_F() 180 EXPECT_EQ(one_two_three, std::vector<int>({1, 2, 3})); in TEST_F() 186 Union one_two = one_two_three; in TEST_F() 198 one_two_three.set<Union::s>("123"); in TEST_F() 199 EXPECT_EQ(one_two_three, std::string("123")); in TEST_F() 203 one_two_three = std::vector<std::string>{"1", "2", "3"}; in TEST_F() 204 EXPECT_EQ(Union::ss, one_two_three.getTag()); in TEST_F()
|