Home
last modified time | relevance | path

Searched refs:IsAsciiDigit (Results 1 – 1 of 1) sorted by relevance

/rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/
Dgtest-all.cc1342 GTEST_API_ bool IsAsciiDigit(char ch);
10098 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function
10119 case 'd': return IsAsciiDigit(ch); in AtomMatchesChar()
10120 case 'D': return !IsAsciiDigit(ch); in AtomMatchesChar()