Searched defs:IsAsciiDigit (Results 1 - 5 of 5) sorted by relevance

/external/chromium/base/
H A Dstring_util.h389 inline bool IsAsciiDigit(Char c) { function
/external/chromium/testing/gtest/src/
H A Dgtest-port.cc185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
206 case 'd': return IsAsciiDigit(ch);
207 case 'D': return !IsAsciiDigit(ch);
/external/gtest/src/
H A Dgtest-port.cc185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
206 case 'd': return IsAsciiDigit(ch);
207 case 'D': return !IsAsciiDigit(ch);
/external/llvm/utils/unittest/googletest/
H A Dgtest-port.cc185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
206 case 'd': return IsAsciiDigit(ch);
207 case 'D': return !IsAsciiDigit(ch);
/external/v8/src/
H A Ddateparser.h95 while (IsAsciiDigit()) {
146 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); } function in class:v8::internal::DateParser::BASE_EMBEDDED

Completed in 115 milliseconds