HomeSort by relevance Sort by last modified time
    Searched refs:IsRepeat (Results 1 - 3 of 3) sorted by null

  /external/gtest/test/
gtest-port_test.cc 215 EXPECT_FALSE(IsRepeat('\0'));
216 EXPECT_FALSE(IsRepeat(' '));
217 EXPECT_FALSE(IsRepeat('a'));
218 EXPECT_FALSE(IsRepeat('1'));
219 EXPECT_FALSE(IsRepeat('-'));
223 EXPECT_TRUE(IsRepeat('?'));
224 EXPECT_TRUE(IsRepeat('*'));
225 EXPECT_TRUE(IsRepeat('+'));
  /external/gtest/src/
gtest-port.cc 147 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
233 } else if (IsRepeat(ch) && !prev_repeatable) {
293 if (IsRepeat(regex[1])) {
gtest-internal-inl.h     [all...]

Completed in 11 milliseconds