Lines Matching refs:Keys
651 int Keys[3] = {0, 0, 0}; in TEST() local
652 IncompleteStruct *K1 = reinterpret_cast<IncompleteStruct *>(&Keys[0]); in TEST()
653 IncompleteStruct *K2 = reinterpret_cast<IncompleteStruct *>(&Keys[1]); in TEST()
654 IncompleteStruct *K3 = reinterpret_cast<IncompleteStruct *>(&Keys[2]); in TEST()
697 B Keys[3] = {{0}, {1}, {2}}; in TEST() local
698 Map.insert({Keys[0], 1}); in TEST()
699 Map.insert({Keys[1], 2}); in TEST()
700 Map.insert({Keys[2], 3}); in TEST()
701 EXPECT_EQ(Map.count(Keys[0]), 1u); in TEST()
702 EXPECT_EQ(Map[Keys[0]], 1); in TEST()
703 EXPECT_EQ(Map[Keys[1]], 2); in TEST()
704 EXPECT_EQ(Map[Keys[2]], 3); in TEST()
706 EXPECT_EQ(Map.find(Keys[0]), Map.end()); in TEST()
707 EXPECT_EQ(Map.find(Keys[1]), Map.end()); in TEST()
708 EXPECT_EQ(Map.find(Keys[2]), Map.end()); in TEST()