reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

unittests/ADT/StringMapTest.cpp
   24   static const char testKey[];

References

unittests/ADT/StringMapTest.cpp
   39     EXPECT_EQ(0u, testMap.count(testKey));
   42     EXPECT_TRUE(testMap.find(testKey) == testMap.end());
   56     EXPECT_STREQ(testKey, it->first().data());
   62     EXPECT_EQ(1u, testMap.count(testKey));
   65     EXPECT_TRUE(testMap.find(testKey) == testMap.begin());
   74 const char* StringMapTest::testKeyFirst = testKey;
   75 size_t StringMapTest::testKeyLength = sizeof(testKey) - 1;
   76 const std::string StringMapTest::testKeyStr(testKey);
  105   EXPECT_EQ(0u, constTestMap.count(testKey));
  108   EXPECT_TRUE(constTestMap.find(testKey) == constTestMap.end());
  116   testMap[testKey] = testValue;
  122   testMap[testKey] = testValue;
  129   testMap[testKey] = testValue;
  136   testMap[testKey] = testValue;
  137   testMap.erase(testKey);
  143   testMap[testKey] = testValue;
  230   EXPECT_STREQ(testKey, entry->first().data());