OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsAsciiDigit
(Results
1 - 3
of
3
) 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/v8/src/
dateparser.h
85
for (n = 0;
IsAsciiDigit
() && n < kMaxInt / 10 - 1; Next()) {
97
for (power = 100;
IsAsciiDigit
(); Next(), power = power / 10) {
146
bool
IsAsciiDigit
() const { return IsDecimalDigit(ch_); }
Completed in 559 milliseconds