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

  /external/libchrome/base/strings/
string_util.h 349 inline bool IsAsciiDigit(Char c) {
  /external/google-breakpad/src/testing/gtest/src/
gtest-port.cc 210 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
231 case 'd': return IsAsciiDigit(ch);
232 case 'D': return !IsAsciiDigit(ch);
  /external/llvm/utils/unittest/googletest/src/
gtest-port.cc 185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
206 case 'd': return IsAsciiDigit(ch);
207 case 'D': return !IsAsciiDigit(ch);
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-port.cc 185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
206 case 'd': return IsAsciiDigit(ch);
207 case 'D': return !IsAsciiDigit(ch);
  /external/libaom/libaom/third_party/googletest/src/googletest/src/
gtest-port.cc 634 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
655 case 'd': return IsAsciiDigit(ch);
656 case 'D': return !IsAsciiDigit(ch);
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-port.cc 691 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
712 case 'd': return IsAsciiDigit(ch);
713 case 'D': return !IsAsciiDigit(ch);
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-port.cc 634 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
655 case 'd': return IsAsciiDigit(ch);
656 case 'D': return !IsAsciiDigit(ch);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/src/
gtest-port.cc 634 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
655 case 'd': return IsAsciiDigit(ch);
656 case 'D': return !IsAsciiDigit(ch);
    [all...]
  /external/v8/src/
dateparser.h 73 while (IsAsciiDigit()) {
108 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); }
  /external/googletest/googletest/src/
gtest-port.cc 774 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
795 case 'd': return IsAsciiDigit(ch);
796 case 'D': return !IsAsciiDigit(ch);
    [all...]

Completed in 1530 milliseconds