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

  /external/protobuf/gtest/test/
gtest-port_test.cc 304 EXPECT_FALSE(IsWordChar('\0'));
305 EXPECT_FALSE(IsWordChar('+'));
306 EXPECT_FALSE(IsWordChar('.'));
307 EXPECT_FALSE(IsWordChar(' '));
308 EXPECT_FALSE(IsWordChar('\n'));
312 EXPECT_TRUE(IsWordChar('a'));
313 EXPECT_TRUE(IsWordChar('b'));
314 EXPECT_TRUE(IsWordChar('A'));
315 EXPECT_TRUE(IsWordChar('Z'));
319 EXPECT_TRUE(IsWordChar('0'))
    [all...]
  /external/chromium_org/third_party/re2/re2/
prog.cc 282 if (IsWordChar(p[0]))
285 if (IsWordChar(p[-1]))
288 if (IsWordChar(p[-1]) != IsWordChar(p[0]))
nfa.cc 471 wasword = Prog::IsWordChar(c);
494 isword = Prog::IsWordChar(p[0] & 0xFF);
577 isword = Prog::IsWordChar(p[0] & 0xFF);
prog.h 240 static bool IsWordChar(uint8 c) {
dfa.cc     [all...]
compile.cc 440 for (j = i+1; j < 256 && Prog::IsWordChar(i) == Prog::IsWordChar(j); j++)
    [all...]
  /external/regex-re2/re2/
prog.cc 282 if (IsWordChar(p[0]))
285 if (IsWordChar(p[-1]))
288 if (IsWordChar(p[-1]) != IsWordChar(p[0]))
nfa.cc 471 wasword = Prog::IsWordChar(c);
494 isword = Prog::IsWordChar(p[0] & 0xFF);
577 isword = Prog::IsWordChar(p[0] & 0xFF);
prog.h 240 static bool IsWordChar(uint8 c) {
dfa.cc     [all...]
compile.cc 439 for (j = i+1; j < 256 && Prog::IsWordChar(i) == Prog::IsWordChar(j); j++)
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-port.cc 180 bool IsWordChar(char ch) {
204 case 'w': return IsWordChar(ch);
205 case 'W': return !IsWordChar(ch);
gtest-internal-inl.h     [all...]
  /external/protobuf/gtest/src/
gtest-port.cc 180 bool IsWordChar(char ch) {
204 case 'w': return IsWordChar(ch);
205 case 'W': return !IsWordChar(ch);
gtest-internal-inl.h     [all...]

Completed in 332 milliseconds