Lines Matching refs:testKeyFirst
26 static const char* testKeyFirst; member in __anon4fa0284b0111::StringMapTest
40 EXPECT_EQ(0u, testMap.count(StringRef(testKeyFirst, testKeyLength))); in assertEmptyMap()
43 EXPECT_TRUE(testMap.find(StringRef(testKeyFirst, testKeyLength)) == in assertEmptyMap()
63 EXPECT_EQ(1u, testMap.count(StringRef(testKeyFirst, testKeyLength))); in assertSingleItemMap()
66 EXPECT_TRUE(testMap.find(StringRef(testKeyFirst, testKeyLength)) == in assertSingleItemMap()
74 const char* StringMapTest::testKeyFirst = testKey; member in __anon4fa0284b0111::StringMapTest
96 EXPECT_EQ(0u, constTestMap.count(StringRef(testKeyFirst, testKeyLength))); in TEST_F()
99 EXPECT_TRUE(constTestMap.find(StringRef(testKeyFirst, testKeyLength)) == in TEST_F()
219 StringRef(testKeyFirst, testKeyLength), 1u); in TEST_F()
230 StringRef(testKeyFirst, testKeyLength), in TEST_F()
240 testMap.insert(std::make_pair(testKeyFirst, testValue)); in TEST_F()
242 EXPECT_EQ(testValue, testMap[testKeyFirst]); in TEST_F()
243 EXPECT_EQ(testKeyFirst, NewIt->first()); in TEST_F()
249 testMap.insert(std::make_pair(testKeyFirst, testValue + 1)); in TEST_F()
251 EXPECT_EQ(testValue, testMap[testKeyFirst]); in TEST_F()