Home
last modified time | relevance | path

Searched refs:IsLetter (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/core/platform/
Dscanner.h175 static bool IsLetter(char ch) { in IsLetter() function
195 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()
/external/libtextclassifier/native/utils/utf8/
Dunilib.h143 bool IsLetter(char32 codepoint) const { in IsLetter() function
144 return libtextclassifier3::IsLetter(codepoint); in IsLetter()
Dunilib-common.h45 bool IsLetter(char32 codepoint);
Dunilib-common.cc616 bool IsLetter(char32 codepoint) { in IsLetter() function
/external/angle/third_party/spirv-tools/src/utils/vscode/src/lsp/span/
Duri.go150 return unicode.IsLetter(rune(path[0])) && path[1] == ':'
161 return uri[0] == '/' && unicode.IsLetter(rune(uri[1])) && uri[2] == ':'
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/span/
Duri.go150 return unicode.IsLetter(rune(path[0])) && path[1] == ':'
161 return uri[0] == '/' && unicode.IsLetter(rune(uri[1])) && uri[2] == ':'
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
Duri.go150 return unicode.IsLetter(rune(path[0])) && path[1] == ':'
161 return uri[0] == '/' && unicode.IsLetter(rune(uri[1])) && uri[2] == ':'
/external/protobuf/src/google/protobuf/util/internal/
Djson_stream_parser.cc74 inline bool IsLetter(char c) { in IsLetter() function
80 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()
/external/libtextclassifier/native/utils/
Dtokenizer.cc317 } else if (unilib_->IsLetter(*it)) { in NumberTokenize()
/external/angle/third_party/spirv-tools/src/utils/vscode/src/parser/
Dparser.go395 func isAlpha(r rune) bool { return unicode.IsLetter(r) }
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/parser/
Dparser.go395 func isAlpha(r rune) bool { return unicode.IsLetter(r) }
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/parser/
Dparser.go395 func isAlpha(r rune) bool { return unicode.IsLetter(r) }
/external/golang-protobuf/protoc-gen-go/generator/
Dgenerator.go2756 if unicode.IsLetter(r) || unicode.IsDigit(r) || r == '_' {
/external/icu/icu4c/source/test/testdata/
Dregextst.txt1393 "[\p{IsLetter}]" " <0>A</0>"
1394 "[\P{IsLetter}]" "A<0> </0>"