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

References

unittests/ADT/HashingTest.cpp
  113   EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size()),
  113   EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size()),
  113   EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size()),
  114             hash_value(ws));
  115   EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size() - 1),
  115   EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size() - 1),
  115   EXPECT_EQ(hash_combine_range(ws.c_str(), ws.c_str() + ws.size() - 1),
  116             hash_value(ws.substr(0, ws.size() - 1)));
  116             hash_value(ws.substr(0, ws.size() - 1)));
  117   EXPECT_EQ(hash_combine_range(ws.c_str() + 1, ws.c_str() + ws.size() - 1),
  117   EXPECT_EQ(hash_combine_range(ws.c_str() + 1, ws.c_str() + ws.size() - 1),
  117   EXPECT_EQ(hash_combine_range(ws.c_str() + 1, ws.c_str() + ws.size() - 1),
  118             hash_value(ws.substr(1, ws.size() - 2)));
  118             hash_value(ws.substr(1, ws.size() - 2)));