Home
last modified time | relevance | path

Searched refs:IsConstHelper (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dmap_test.cc586 bool IsConstHelper(T& /*t*/) { // NOLINT. We want to catch non-const refs here. in IsConstHelper() function
590 bool IsConstHelper(const T& /*t*/) { in IsConstHelper() function
596 EXPECT_TRUE(IsConstHelper(*map_.cbegin())); in TEST_P()
597 EXPECT_TRUE(IsConstHelper(*const_map_.begin())); in TEST_P()
598 EXPECT_FALSE(IsConstHelper(*map_.begin())); in TEST_P()