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

  /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/protobuf/gtest/src/
gtest-port.cc 189 bool IsWordChar(char ch) {
213 case 'w': return IsWordChar(ch);
214 case 'W': return !IsWordChar(ch);
  /external/regex-re2/re2/
prog.h 240 static bool IsWordChar(uint8 c) {

Completed in 227 milliseconds