OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsWordChar
(Results
1 - 11
of
11
) sorted by null
/external/protobuf/gtest/test/
gtest-port_test.cc
317
EXPECT_FALSE(
IsWordChar
('\0'));
318
EXPECT_FALSE(
IsWordChar
('+'));
319
EXPECT_FALSE(
IsWordChar
('.'));
320
EXPECT_FALSE(
IsWordChar
(' '));
321
EXPECT_FALSE(
IsWordChar
('\n'));
325
EXPECT_TRUE(
IsWordChar
('a'));
326
EXPECT_TRUE(
IsWordChar
('b'));
327
EXPECT_TRUE(
IsWordChar
('A'));
328
EXPECT_TRUE(
IsWordChar
('Z'));
332
EXPECT_TRUE(
IsWordChar
('0'))
[
all
...]
/prebuilts/go/darwin-x86/src/regexp/syntax/
prog.go
83
case
IsWordChar
(r1):
91
case
IsWordChar
(r2):
98
if boundary != 0 { //
IsWordChar
(r1) !=
IsWordChar
(r2)
104
//
IsWordChar
reports whether r is consider a ``word character''
107
func
IsWordChar
(r rune) bool {
250
// As per re2's Prog::
IsWordChar
. Determines whether rune is an ASCII word char.
/prebuilts/go/linux-x86/src/regexp/syntax/
prog.go
83
case
IsWordChar
(r1):
91
case
IsWordChar
(r2):
98
if boundary != 0 { //
IsWordChar
(r1) !=
IsWordChar
(r2)
104
//
IsWordChar
reports whether r is consider a ``word character''
107
func
IsWordChar
(r rune) bool {
250
// As per re2's Prog::
IsWordChar
. Determines whether rune is an ASCII word char.
/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/protobuf/gtest/src/
gtest-port.cc
189
bool
IsWordChar
(char ch) {
213
case 'w': return
IsWordChar
(ch);
214
case 'W': return !
IsWordChar
(ch);
gtest-internal-inl.h
[
all
...]
/external/protobuf/gtest/fused-src/gtest/
gtest-all.cc
[
all
...]
Completed in 688 milliseconds