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

  /external/chromium/testing/gtest/src/
gtest-port.cc 178 bool IsInSet(char ch, const char* str) {
187 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
189 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
190 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
198 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW"));
271 } else if (IsInSet(ch, "()[]{}|")) {
281 prev_repeatable = !IsInSet(ch, "^$?*+");
gtest-internal-inl.h     [all...]
  /external/gtest/src/
gtest-port.cc 136 bool IsInSet(char ch, const char* str) {
145 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
147 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
148 bool IsWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
156 return (IsPunct(c) || IsInSet(c, "dDfnrsStvwW"));
229 } else if (IsInSet(ch, "()[]{}|")) {
239 prev_repeatable = !IsInSet(ch, "^$?*+");
gtest-internal-inl.h     [all...]
  /external/gtest/test/
gtest-port_test.cc 171 EXPECT_FALSE(IsInSet('\0', ""));
172 EXPECT_FALSE(IsInSet('\0', "\0"));
173 EXPECT_FALSE(IsInSet('\0', "a"));
177 EXPECT_FALSE(IsInSet('a', "Ab"));
178 EXPECT_FALSE(IsInSet('c', ""));
180 EXPECT_TRUE(IsInSet('b', "bcd"));
181 EXPECT_TRUE(IsInSet('b', "ab"));
  /external/llvm/utils/unittest/googletest/
gtest-port.cc 176 bool IsInSet(char ch, const char* str) {
185 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
187 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
188 bool IsWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
196 return (IsPunct(c) || IsInSet(c, "dDfnrsStvwW"));
269 } else if (IsInSet(ch, "()[]{}|")) {
279 prev_repeatable = !IsInSet(ch, "^$?*+");
  /external/protobuf/gtest/src/
gtest-port.cc 167 bool IsInSet(char ch, const char* str) {
176 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
178 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
179 bool IsWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
187 return (IsPunct(c) || IsInSet(c, "dDfnrsStvwW"));
260 } else if (IsInSet(ch, "()[]{}|")) {
270 prev_repeatable = !IsInSet(ch, "^$?*+");
gtest-internal-inl.h     [all...]
  /external/protobuf/gtest/test/
gtest-port_test.cc 229 EXPECT_FALSE(IsInSet('\0', ""));
230 EXPECT_FALSE(IsInSet('\0', "\0"));
231 EXPECT_FALSE(IsInSet('\0', "a"));
235 EXPECT_FALSE(IsInSet('a', "Ab"));
236 EXPECT_FALSE(IsInSet('c', ""));
238 EXPECT_TRUE(IsInSet('b', "bcd"));
239 EXPECT_TRUE(IsInSet('b', "ab"));
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 410 EXPECT_FALSE(IsInSet('\0', ""));
411 EXPECT_FALSE(IsInSet('\0', "\0"));
412 EXPECT_FALSE(IsInSet('\0', "a"));
416 EXPECT_FALSE(IsInSet('a', "Ab"));
417 EXPECT_FALSE(IsInSet('c', ""));
419 EXPECT_TRUE(IsInSet('b', "bcd"));
420 EXPECT_TRUE(IsInSet('b', "ab"));
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal-inl.h     [all...]

Completed in 1032 milliseconds