HomeSort by relevance Sort by last modified time
    Searched defs:IsDigit (Results 1 - 23 of 23) sorted by null

  /prebuilts/go/darwin-x86/src/unicode/
digit.go 7 // IsDigit reports whether the rune is a decimal digit.
8 func IsDigit(r rune) bool {
  /prebuilts/go/linux-x86/src/unicode/
digit.go 7 // IsDigit reports whether the rune is a decimal digit.
8 func IsDigit(r rune) bool {
  /external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h 35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
  /bionic/libc/private/
bionic_ctype.h 36 static inline bool IsDigit(int ch) {
  /external/libtextclassifier/util/utf8/
unilib-icu.cc 57 bool UniLib::IsDigit(char32 codepoint) const { return u_isdigit(codepoint); }
  /external/pdfium/core/fpdfdoc/
ctypeset.cpp 46 bool IsDigit(uint32_t word) {
149 if ((IsLatin(prevWord) || IsDigit(prevWord)) &&
150 (IsLatin(curWord) || IsDigit(curWord))) {
  /external/protobuf/gtest/src/
gtest-port.cc 183 bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; }
204 case 'd': return IsDigit(ch);
205 case 'D': return !IsDigit(ch);
  /external/tensorflow/tensorflow/core/lib/strings/
scanner.h 178 static bool IsDigit(char ch) { return ch >= '0' && ch <= '9'; }
190 return IsDigit(ch);
194 return IsLetter(ch) || IsDigit(ch);
196 return (IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '_');
198 return IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '.' ||
201 return (IsLetter(ch) || IsDigit(ch) || ch == '-' || ch == '.' ||
204 return IsLetter(ch) || IsDigit(ch) || ch == '.';
206 return IsLetter(ch) || IsDigit(ch) || ch == '+' || ch == '-' ||
209 return IsLetter(ch) || IsDigit(ch) || ch == '.' || ch == '_';
211 return IsLetter(ch) || IsDigit(ch) || ch == '_'
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SimplifyLibCalls.cpp     [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h     [all...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/sqlite/dist/orig/
shell.c 181 #define IsDigit(X) isdigit((unsigned char)X)
516 if( !IsDigit(*z) ){
521 while( IsDigit(*z) ){ z++; }
524 if( !IsDigit(*z) ) return 0;
525 while( IsDigit(*z) ){ z++; }
531 if( !IsDigit(*z) ) return 0;
532 while( IsDigit(*z) ){ z++; }
695 while( IsDigit(zArg[0]) ){
    [all...]
  /external/sqlite/dist/
shell.c 187 #define IsDigit(X) isdigit((unsigned char)X)
522 if( !IsDigit(*z) ){
527 while( IsDigit(*z) ){ z++; }
530 if( !IsDigit(*z) ) return 0;
531 while( IsDigit(*z) ){ z++; }
537 if( !IsDigit(*z) ) return 0;
538 while( IsDigit(*z) ){ z++; }
701 while( IsDigit(zArg[0]) ){
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/fused-src/gtest/
gtest.h     [all...]

Completed in 1242 milliseconds