/external/tensorflow/tensorflow/core/platform/ |
D | scanner.h | 181 static bool IsDigit(char ch) { return ch >= '0' && ch <= '9'; } in IsDigit() function 193 return IsDigit(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() [all …]
|
/external/openscreen/third_party/abseil/src/absl/strings/internal/ |
D | charconv_parse.cc | 155 bool IsDigit(char ch); 183 bool IsDigit<10>(char ch) { in IsDigit() function 187 bool IsDigit<16>(char ch) { in IsDigit() function 266 while (begin < significant_digits_end && IsDigit<base>(*begin)) { in ConsumeDigits() 277 while (begin < end && IsDigit<base>(*begin)) { in ConsumeDigits()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/ |
D | charconv_parse.cc | 155 bool IsDigit(char ch); 183 bool IsDigit<10>(char ch) { in IsDigit() function 187 bool IsDigit<16>(char ch) { in IsDigit() function 266 while (begin < significant_digits_end && IsDigit<base>(*begin)) { in ConsumeDigits() 277 while (begin < end && IsDigit<base>(*begin)) { in ConsumeDigits()
|
/external/abseil-cpp/absl/strings/internal/ |
D | charconv_parse.cc | 155 bool IsDigit(char ch); 183 bool IsDigit<10>(char ch) { in IsDigit() function 187 bool IsDigit<16>(char ch) { in IsDigit() function 266 while (begin < significant_digits_end && IsDigit<base>(*begin)) { in ConsumeDigits() 277 while (begin < end && IsDigit<base>(*begin)) { in ConsumeDigits()
|
/external/angle/third_party/abseil-cpp/absl/strings/internal/ |
D | charconv_parse.cc | 155 bool IsDigit(char ch); 183 bool IsDigit<10>(char ch) { in IsDigit() function 187 bool IsDigit<16>(char ch) { in IsDigit() function 266 while (begin < significant_digits_end && IsDigit<base>(*begin)) { in ConsumeDigits() 277 while (begin < end && IsDigit<base>(*begin)) { in ConsumeDigits()
|
/external/webrtc/third_party/abseil-cpp/absl/strings/internal/ |
D | charconv_parse.cc | 155 bool IsDigit(char ch); 183 bool IsDigit<10>(char ch) { in IsDigit() function 187 bool IsDigit<16>(char ch) { in IsDigit() function 266 while (begin < significant_digits_end && IsDigit<base>(*begin)) { in ConsumeDigits() 277 while (begin < end && IsDigit<base>(*begin)) { in ConsumeDigits()
|
/external/libtextclassifier/abseil-cpp/absl/strings/internal/ |
D | charconv_parse.cc | 155 bool IsDigit(char ch); 183 bool IsDigit<10>(char ch) { in IsDigit() function 187 bool IsDigit<16>(char ch) { in IsDigit() function 266 while (begin < significant_digits_end && IsDigit<base>(*begin)) { in ConsumeDigits() 277 while (begin < end && IsDigit<base>(*begin)) { in ConsumeDigits()
|
/external/libtextclassifier/native/utils/utf8/ |
D | unilib-common.h | 29 bool IsDigit(char32 codepoint); 66 if (!IsDigit(*it)) { in PassesIntPreChesks()
|
D | unilib_test-include.cc | 32 EXPECT_FALSE(unilib_->IsDigit(')')); in TEST_F() 33 EXPECT_TRUE(unilib_->IsDigit('0')); in TEST_F() 34 EXPECT_TRUE(unilib_->IsDigit('9')); in TEST_F() 103 EXPECT_FALSE(unilib_->IsDigit(0xA619)); // VAI SYMBOL JONG in TEST_F() 104 EXPECT_TRUE(unilib_->IsDigit(0xA620)); // VAI DIGIT ZERO in TEST_F() 105 EXPECT_TRUE(unilib_->IsDigit(0xA629)); // VAI DIGIT NINE in TEST_F() 106 EXPECT_FALSE(unilib_->IsDigit(0xA62A)); // VAI SYLLABLE NDOLE MA in TEST_F()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | checker.h | 85 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 102 return IsDigit(GetChar(format, 0)) 161 return IsDigit(GetChar(format_, 0)) in ParseWidth() 281 return IsDigit(GetChar(format, 0)) ? IsPositional(ConsumeFront(format)) in IsPositional()
|
/external/abseil-cpp/absl/strings/internal/str_format/ |
D | checker.h | 85 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 102 return IsDigit(GetChar(format, 0)) 161 return IsDigit(GetChar(format_, 0)) in ParseWidth() 281 return IsDigit(GetChar(format, 0)) ? IsPositional(ConsumeFront(format)) in IsPositional()
|
/external/libtextclassifier/abseil-cpp/absl/strings/internal/str_format/ |
D | checker.h | 71 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 88 return IsDigit(GetChar(format, 0)) 147 return IsDigit(GetChar(format_, 0)) in ParseWidth() 267 return IsDigit(GetChar(format, 0)) ? IsPositional(ConsumeFront(format)) in IsPositional()
|
/external/openscreen/third_party/abseil/src/absl/strings/internal/str_format/ |
D | checker.h | 85 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 102 return IsDigit(GetChar(format, 0)) 161 return IsDigit(GetChar(format_, 0)) in ParseWidth() 281 return IsDigit(GetChar(format, 0)) ? IsPositional(ConsumeFront(format)) in IsPositional()
|
/external/angle/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | checker.h | 90 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 107 return IsDigit(GetChar(format, 0)) 166 return IsDigit(GetChar(format_, 0)) in ParseWidth() 286 return IsDigit(GetChar(format, 0)) ? IsPositional(ConsumeFront(format)) in IsPositional()
|
/external/webrtc/third_party/abseil-cpp/absl/strings/internal/str_format/ |
D | checker.h | 85 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 102 return IsDigit(GetChar(format, 0)) 161 return IsDigit(GetChar(format_, 0)) in ParseWidth() 281 return IsDigit(GetChar(format, 0)) ? IsPositional(ConsumeFront(format)) in IsPositional()
|
/external/googletest/googlemock/src/ |
D | gmock-internal-utils.cc | 80 (!IsDigit(prev_char) && IsDigit(*p)); in ConvertIdentifierNameToWords()
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_imelody.c | 494 if (IsDigit(c)) in IMY_Event() 1274 else if (IsDigit(c)) in IMY_GetVolume() 1280 if (IsDigit(c)) in IMY_GetVolume() 1324 if (IsDigit(c)) in IMY_GetNumber() 1385 else if (IsDigit(c)) in IMY_GetVersion() 1554 if (!IsDigit(c)) in IMY_ParseHeader()
|
D | eas_ctype.h | 35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); } in IsDigit() function
|
/external/perfetto/src/perfetto_cmd/ |
D | pbtxt_to_pb.cc | 55 constexpr bool IsDigit(char c) { in IsDigit() function 64 return IsIdentifierStart(c) || IsDigit(c); in IsIdentifierBody() 606 if (c == '-' || IsDigit(c) || c == '.') { in Parse() 633 if (IsDigit(c) || c == '.') in Parse()
|
/external/libtextclassifier/native/utils/grammar/parsing/ |
D | lexer.cc | 24 } else if (unilib_.IsDigit(*it)) { in GetSymbolType()
|
/external/libtextclassifier/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 383 static bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 400 if (str[i] != '.' || !IsDigit(str[i + 1])) { in IsFunctionCloneSuffix() 404 while (IsDigit(str[i])) { in IsFunctionCloneSuffix() 836 if (IsDigit(*p)) { in ParseNumber() 866 if (!IsDigit(*p) && !(*p >= 'a' && *p <= 'f')) { in ParseFloatNumber() 884 if (!IsDigit(*p) && !(*p >= 'A' && *p <= 'Z')) { in ParseSeqId()
|
/external/openscreen/third_party/abseil/src/absl/debugging/internal/ |
D | demangle.cc | 383 static bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 400 if (str[i] != '.' || !IsDigit(str[i + 1])) { in IsFunctionCloneSuffix() 404 while (IsDigit(str[i])) { in IsFunctionCloneSuffix() 836 if (IsDigit(*p)) { in ParseNumber() 866 if (!IsDigit(*p) && !(*p >= 'a' && *p <= 'f')) { in ParseFloatNumber() 884 if (!IsDigit(*p) && !(*p >= 'A' && *p <= 'Z')) { in ParseSeqId()
|
/external/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 383 static bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 402 if (str[i] == '.' && IsDigit(str[i + 1])) { in IsFunctionCloneSuffix() 405 while (IsDigit(str[i])) { in IsFunctionCloneSuffix() 840 if (IsDigit(*p)) { in ParseNumber() 870 if (!IsDigit(*p) && !(*p >= 'a' && *p <= 'f')) { in ParseFloatNumber() 888 if (!IsDigit(*p) && !(*p >= 'A' && *p <= 'Z')) { in ParseSeqId()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 383 static bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 402 if (str[i] == '.' && IsDigit(str[i + 1])) { in IsFunctionCloneSuffix() 405 while (IsDigit(str[i])) { in IsFunctionCloneSuffix() 840 if (IsDigit(*p)) { in ParseNumber() 870 if (!IsDigit(*p) && !(*p >= 'a' && *p <= 'f')) { in ParseFloatNumber() 888 if (!IsDigit(*p) && !(*p >= 'A' && *p <= 'Z')) { in ParseSeqId()
|
/external/webrtc/third_party/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 383 static bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function 402 if (str[i] == '.' && IsDigit(str[i + 1])) { in IsFunctionCloneSuffix() 405 while (IsDigit(str[i])) { in IsFunctionCloneSuffix() 840 if (IsDigit(*p)) { in ParseNumber() 870 if (!IsDigit(*p) && !(*p >= 'a' && *p <= 'f')) { in ParseFloatNumber() 888 if (!IsDigit(*p) && !(*p >= 'A' && *p <= 'Z')) { in ParseSeqId()
|