HomeSort by relevance Sort by last modified time
    Searched refs:IsLetter (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/core/lib/strings/
scanner.h 173 static bool IsLetter(char ch) {
193 return IsLetter(ch);
195 return IsLetter(ch) || IsDigit(ch);
197 return (IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '_');
199 return IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '.' ||
202 return (IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '.' ||
205 return IsLetter(ch) || IsDigit(ch) || ch == '.';
207 return IsLetter(ch) || IsDigit(ch) || ch == '+' || ch == '-' ||
210 return IsLetter(ch) || IsDigit(ch) || ch == '.' || ch == '_';
212 return IsLetter(ch) || IsDigit(ch) || ch == '_'
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
json_stream_parser.cc 71 inline bool IsLetter(char c) {
77 return IsLetter(c) || ('0' <= c && c <= '9');
81 if (input->empty() || !IsLetter((*input)[0])) return false;
94 return !input.empty() && IsLetter(input[0]);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenBootSector/
GenBootSector.c 118 #define IsLetter(x) (((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z'))
602 if (IsLetter(PathInfo->Path[0]) && (PathInfo->Path[1] == ':') && (PathInfo->Path[2] == '\0')) {
  /external/syzkaller/vendor/github.com/ianlancetaylor/demangle/
c++filt.go 89 if unicode.IsLetter(c) || unicode.IsNumber(c) || strings.ContainsRune(symbolChars, c) {
  /external/syzkaller/vendor/google.golang.org/appengine/datastore/
prop.go 117 if c != '_' && !unicode.IsLetter(c) {
121 if c != '_' && !unicode.IsLetter(c) && !unicode.IsDigit(c) {
  /external/syzkaller/vendor/github.com/google/go-cmp/cmp/
path.go 290 ok = ok && (c == '_' || unicode.IsLetter(c) || unicode.IsDigit(c))
  /external/golang-protobuf/protoc-gen-go/generator/
generator.go     [all...]

Completed in 337 milliseconds