Searched refs:IsWordChar (Results 1 - 13 of 13) sorted by relevance

/external/protobuf/gtest/test/
H A Dgtest-port_test.cc304 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('
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dprog.cc282 if (IsWordChar(p[0]))
285 if (IsWordChar(p[-1]))
288 if (IsWordChar(p[-1]) != IsWordChar(p[0]))
H A Dnfa.cc471 wasword = Prog::IsWordChar(c);
494 isword = Prog::IsWordChar(p[0] & 0xFF);
577 isword = Prog::IsWordChar(p[0] & 0xFF);
H A Dprog.h240 static bool IsWordChar(uint8 c) { function in class:re2::Prog
H A Ddfa.cc1026 bool isword = (c != kByteEndText && Prog::IsWordChar(c));
1634 } else if (Prog::IsWordChar(text.begin()[-1] & 0xFF)) {
1648 } else if (Prog::IsWordChar(text.end()[0] & 0xFF)) {
H A Dcompile.cc440 for (j = i+1; j < 256 && Prog::IsWordChar(i) == Prog::IsWordChar(j); j++)
/external/regex-re2/re2/
H A Dprog.cc282 if (IsWordChar(p[0]))
285 if (IsWordChar(p[-1]))
288 if (IsWordChar(p[-1]) != IsWordChar(p[0]))
H A Dnfa.cc471 wasword = Prog::IsWordChar(c);
494 isword = Prog::IsWordChar(p[0] & 0xFF);
577 isword = Prog::IsWordChar(p[0] & 0xFF);
H A Dprog.h240 static bool IsWordChar(uint8 c) { function in class:re2::Prog
H A Ddfa.cc1024 bool isword = (c != kByteEndText && Prog::IsWordChar(c));
1632 } else if (Prog::IsWordChar(text.begin()[-1] & 0xFF)) {
1646 } else if (Prog::IsWordChar(text.end()[0] & 0xFF)) {
H A Dcompile.cc439 for (j = i+1; j < 256 && Prog::IsWordChar(i) == Prog::IsWordChar(j); j++)
/external/protobuf/gtest/src/
H A Dgtest-port.cc180 bool IsWordChar(char ch) { function in namespace:testing::internal
204 case 'w': return IsWordChar(ch);
205 case 'W': return !IsWordChar(ch);
H A Dgtest-internal-inl.h1138 bool IsWordChar(char ch);

Completed in 249 milliseconds