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

  /external/libchrome/base/strings/
string_util.h 347 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/gtest/src/
gtest-port.cc 233 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
254 case 'd': return IsAsciiDigit(ch);
255 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/mesa3d/src/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);
  /ndk/sources/third_party/googletest/googletest/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/v8/src/
dateparser.h 73 while (IsAsciiDigit()) {
108 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); }
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-port.cc 593 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; }
614 case 'd': return IsAsciiDigit(ch);
615 case 'D': return !IsAsciiDigit(ch);
    [all...]

Completed in 74 milliseconds