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

Declarations

unittests/ADT/StringMapTest.cpp
   28   static const std::string testKeyStr;

References

unittests/ADT/StringMapTest.cpp
   41     EXPECT_EQ(0u, testMap.count(testKeyStr));
   45     EXPECT_TRUE(testMap.find(testKeyStr) == testMap.end());
   64     EXPECT_EQ(1u, testMap.count(testKeyStr));
   68     EXPECT_TRUE(testMap.find(testKeyStr) == testMap.begin());
  107   EXPECT_EQ(0u, constTestMap.count(testKeyStr));
  111   EXPECT_TRUE(constTestMap.find(testKeyStr) == constTestMap.end());