Home | History | Annotate | Download | only in ADT

Lines Matching defs:PairType

94   typedef std::pair<std::size_t, int> PairType;
95 std::vector<PairType> Results;
104 EXPECT_EQ(PairType(0u, 1), Results[0]);
105 EXPECT_EQ(PairType(1u, 2), Results[1]);
106 EXPECT_EQ(PairType(2u, 3), Results[2]);
113 typedef std::pair<std::size_t, char> PairType;
114 std::vector<PairType> Results;
122 EXPECT_EQ(PairType(0u, '2'), Results[0]);
123 EXPECT_EQ(PairType(1u, '3'), Results[1]);
124 EXPECT_EQ(PairType(2u, '4'), Results[2]);