Searched refs:IsLetter (Results 1 – 14 of 14) sorted by relevance
175 static bool IsLetter(char ch) { in IsLetter() function195 return IsLetter(ch); in Matches()197 return IsLetter(ch) || IsDigit(ch); in Matches()199 return (IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '_'); in Matches()201 return IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '.' || in Matches()204 return (IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '.' || in Matches()207 return IsLetter(ch) || IsDigit(ch) || ch == '.'; in Matches()209 return IsLetter(ch) || IsDigit(ch) || ch == '+' || ch == '-' || in Matches()212 return IsLetter(ch) || IsDigit(ch) || ch == '.' || ch == '_'; in Matches()214 return IsLetter(ch) || IsDigit(ch) || ch == '_'; in Matches()
143 bool IsLetter(char32 codepoint) const { in IsLetter() function144 return libtextclassifier3::IsLetter(codepoint); in IsLetter()
45 bool IsLetter(char32 codepoint);
616 bool IsLetter(char32 codepoint) { in IsLetter() function
150 return unicode.IsLetter(rune(path[0])) && path[1] == ':'161 return uri[0] == '/' && unicode.IsLetter(rune(uri[1])) && uri[2] == ':'
74 inline bool IsLetter(char c) { in IsLetter() function80 return IsLetter(c) || ('0' <= c && c <= '9'); in IsAlphanumeric()84 if (input->empty() || !IsLetter((*input)[0])) return false; in ConsumeKey()97 return !input.empty() && IsLetter(input[0]); in MatchKey()
317 } else if (unilib_->IsLetter(*it)) { in NumberTokenize()
395 func isAlpha(r rune) bool { return unicode.IsLetter(r) }
2756 if unicode.IsLetter(r) || unicode.IsDigit(r) || r == '_' {
1393 "[\p{IsLetter}]" " <0>A</0>"1394 "[\P{IsLetter}]" "A<0> </0>"