Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/strings/
Dscanner.h173 static bool IsLetter(char ch) { in IsLetter() function
193 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()
/external/syzkaller/vendor/google.golang.org/appengine/datastore/
Dprop.go117 if c != '_' && !unicode.IsLetter(c) {
121 if c != '_' && !unicode.IsLetter(c) && !unicode.IsDigit(c) {
/external/protobuf/src/google/protobuf/util/internal/
Djson_stream_parser.cc71 inline bool IsLetter(char c) { in IsLetter() function
77 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()
/external/syzkaller/vendor/github.com/ianlancetaylor/demangle/
Dc++filt.go89 if unicode.IsLetter(c) || unicode.IsNumber(c) || strings.ContainsRune(symbolChars, c) {
/external/syzkaller/vendor/github.com/google/go-cmp/cmp/
Dpath.go290 ok = ok && (c == '_' || unicode.IsLetter(c) || unicode.IsDigit(c))
/external/golang-protobuf/protoc-gen-go/generator/
Dgenerator.go2756 if unicode.IsLetter(r) || unicode.IsDigit(r) || r == '_' {
/external/icu/icu4c/source/test/testdata/
Dregextst.txt1371 "[\p{IsLetter}]" " <0>A</0>"
1372 "[\P{IsLetter}]" "A<0> </0>"