Searched refs:IsLetter (Results 1 – 7 of 7) sorted by relevance
173 static bool IsLetter(char ch) { in IsLetter() function193 return IsLetter(ch); in Matches()195 return IsLetter(ch) || IsDigit(ch); in Matches()197 return (IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '_'); in Matches()199 return IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '.' || in Matches()202 return (IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '.' || in Matches()205 return IsLetter(ch) || IsDigit(ch) || ch == '.'; in Matches()207 return IsLetter(ch) || IsDigit(ch) || ch == '+' || ch == '-' || in Matches()210 return IsLetter(ch) || IsDigit(ch) || ch == '.' || ch == '_'; in Matches()212 return IsLetter(ch) || IsDigit(ch) || ch == '_'; in Matches()
117 if c != '_' && !unicode.IsLetter(c) {121 if c != '_' && !unicode.IsLetter(c) && !unicode.IsDigit(c) {
71 inline bool IsLetter(char c) { in IsLetter() function77 return IsLetter(c) || ('0' <= c && c <= '9'); in IsAlphanumeric()81 if (input->empty() || !IsLetter((*input)[0])) return false; in ConsumeKey()94 return !input.empty() && IsLetter(input[0]); in MatchKey()
89 if unicode.IsLetter(c) || unicode.IsNumber(c) || strings.ContainsRune(symbolChars, c) {
290 ok = ok && (c == '_' || unicode.IsLetter(c) || unicode.IsDigit(c))
2756 if unicode.IsLetter(r) || unicode.IsDigit(r) || r == '_' {
1371 "[\p{IsLetter}]" " <0>A</0>"1372 "[\P{IsLetter}]" "A<0> </0>"