Searched refs:IsAsciiDigit (Results 1 – 12 of 12) sorted by relevance
193 return IsIdentifierFirstChar(c) || base::IsAsciiDigit(c); in IsIdentifierContinuingChar()204 if (base::IsAsciiDigit(next_char)) in ClassifyCurrent()244 if (base::IsAsciiDigit(following_char)) in ClassifyCurrent()258 } while (!at_end() && base::IsAsciiDigit(cur_char())); in AdvanceToEndOfToken()
16 ASSERT_TRUE(base::IsAsciiAlpha(guid[i]) || base::IsAsciiDigit(guid[i])); in TEST()
31 if (base::IsAsciiAlpha(c) || base::IsAsciiDigit(c)) in CharNeedEscaping()
460 EXPECT_FALSE(IsAsciiDigit('\0')); in TEST()461 EXPECT_FALSE(IsAsciiDigit(' ')); in TEST()462 EXPECT_FALSE(IsAsciiDigit('+')); in TEST()463 EXPECT_FALSE(IsAsciiDigit('-')); in TEST()464 EXPECT_FALSE(IsAsciiDigit('.')); in TEST()465 EXPECT_FALSE(IsAsciiDigit('a')); in TEST()469 EXPECT_TRUE(IsAsciiDigit('0')); in TEST()470 EXPECT_TRUE(IsAsciiDigit('1')); in TEST()471 EXPECT_TRUE(IsAsciiDigit('5')); in TEST()472 EXPECT_TRUE(IsAsciiDigit('9')); in TEST()
470 EXPECT_FALSE(IsAsciiDigit('\0')); in TEST()471 EXPECT_FALSE(IsAsciiDigit(' ')); in TEST()472 EXPECT_FALSE(IsAsciiDigit('+')); in TEST()473 EXPECT_FALSE(IsAsciiDigit('-')); in TEST()474 EXPECT_FALSE(IsAsciiDigit('.')); in TEST()475 EXPECT_FALSE(IsAsciiDigit('a')); in TEST()479 EXPECT_TRUE(IsAsciiDigit('0')); in TEST()480 EXPECT_TRUE(IsAsciiDigit('1')); in TEST()481 EXPECT_TRUE(IsAsciiDigit('5')); in TEST()482 EXPECT_TRUE(IsAsciiDigit('9')); in TEST()
691 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function712 case 'd': return IsAsciiDigit(ch); in AtomMatchesChar()713 case 'D': return !IsAsciiDigit(ch); in AtomMatchesChar()
938 GTEST_API_ bool IsAsciiDigit(char ch);
776 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function797 case 'd': return IsAsciiDigit(ch); in AtomMatchesChar()798 case 'D': return !IsAsciiDigit(ch); in AtomMatchesChar()
954 GTEST_API_ bool IsAsciiDigit(char ch);
294 inline bool IsAsciiDigit(Char c) { in IsAsciiDigit() function
688 if (!IsAsciiDigit(c)) in ReadInt()
1343 GTEST_API_ bool IsAsciiDigit(char ch);9183 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function9204 case 'd': return IsAsciiDigit(ch); in AtomMatchesChar()9205 case 'D': return !IsAsciiDigit(ch); in AtomMatchesChar()