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

  /external/chromium/base/
string_util.h 389 inline bool IsAsciiDigit(Char c) {
  /external/chromium/testing/gtest/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/gtest/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/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/v8/src/
dateparser.h 95 while (IsAsciiDigit()) {
146 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); }

Completed in 121 milliseconds