• Home
  • Raw
  • Download

Lines Matching refs:getKey

86   typename T::key_type getKey(int i = 0) {  in getKey()  function in __anonb018e79a0111::DenseMapTest
120 EXPECT_FALSE(this->Map.count(this->getKey())); in TYPED_TEST()
121 EXPECT_TRUE(this->Map.find(this->getKey()) == this->Map.end()); in TYPED_TEST()
124 this->Map.lookup(this->getKey())); in TYPED_TEST()
131 this->Map.lookup(this->getKey())); in TYPED_TEST()
145 this->Map[this->getKey()] = this->getValue(); in TYPED_TEST()
154 EXPECT_EQ(this->getKey(), it->first); in TYPED_TEST()
160 EXPECT_TRUE(this->Map.count(this->getKey())); in TYPED_TEST()
161 EXPECT_TRUE(this->Map.find(this->getKey()) == this->Map.begin()); in TYPED_TEST()
162 EXPECT_EQ(this->getValue(), this->Map.lookup(this->getKey())); in TYPED_TEST()
163 EXPECT_EQ(this->getValue(), this->Map[this->getKey()]); in TYPED_TEST()
168 this->Map[this->getKey()] = this->getValue(); in TYPED_TEST()
178 this->Map[this->getKey()] = this->getValue(); in TYPED_TEST()
188 this->Map[this->getKey()] = this->getValue(); in TYPED_TEST()
189 this->Map.erase(this->getKey()); in TYPED_TEST()
198 this->Map.insert(std::make_pair(this->getKey(), this->getValue())); in TYPED_TEST()
200 EXPECT_EQ(this->getValue(), this->Map[this->getKey()]); in TYPED_TEST()
205 this->Map[this->getKey()] = this->getValue(); in TYPED_TEST()
209 EXPECT_EQ(this->getValue(), copyMap[this->getKey()]); in TYPED_TEST()
215 this->Map[this->getKey(Key)] = this->getValue(Key); in TYPED_TEST()
220 EXPECT_EQ(this->getValue(Key), copyMap[this->getKey(Key)]); in TYPED_TEST()
233 this->Map[this->getKey(Key)] = this->getValue(Key); in TYPED_TEST()
242 this->Map[this->getKey()] = this->getValue(); in TYPED_TEST()
246 EXPECT_EQ(this->getValue(), copyMap[this->getKey()]); in TYPED_TEST()
251 this->Map[this->getKey()] = this->getValue(); in TYPED_TEST()
258 EXPECT_EQ(this->getValue(), otherMap[this->getKey()]); in TYPED_TEST()
264 EXPECT_EQ(this->getValue(), this->Map[this->getKey()]); in TYPED_TEST()
268 this->Map[this->getKey(i)] = this->getValue(i); in TYPED_TEST()
275 EXPECT_EQ(this->getValue(i), otherMap[this->getKey(i)]); in TYPED_TEST()
282 EXPECT_EQ(this->getValue(i), this->Map[this->getKey(i)]); in TYPED_TEST()
293 visitedIndex[this->getKey(i)] = i; in TYPED_TEST()
295 this->Map[this->getKey(i)] = this->getValue(i); in TYPED_TEST()