Searched refs:IsAsciiDigit (Results 1 – 16 of 16) sorted by relevance
193 return IsIdentifierFirstChar(c) || base::IsAsciiDigit(c); in IsIdentifierContinuingChar()203 if (base::IsAsciiDigit(next_char)) in ClassifyToken()242 if (base::IsAsciiDigit(following_char)) in ClassifyToken()263 } while (!at_end() && base::IsAsciiDigit(cur_char())); in AdvanceToEndOfToken()
16 ASSERT_TRUE(base::IsAsciiAlpha(guid[i]) || base::IsAsciiDigit(guid[i])); in TEST()
30 if (base::IsAsciiAlpha(c) || base::IsAsciiDigit(c)) in CharNeedEscaping()
474 EXPECT_FALSE(IsAsciiDigit('\0')); in TEST()475 EXPECT_FALSE(IsAsciiDigit(' ')); in TEST()476 EXPECT_FALSE(IsAsciiDigit('+')); in TEST()477 EXPECT_FALSE(IsAsciiDigit('-')); in TEST()478 EXPECT_FALSE(IsAsciiDigit('.')); in TEST()479 EXPECT_FALSE(IsAsciiDigit('a')); in TEST()483 EXPECT_TRUE(IsAsciiDigit('0')); in TEST()484 EXPECT_TRUE(IsAsciiDigit('1')); in TEST()485 EXPECT_TRUE(IsAsciiDigit('5')); in TEST()486 EXPECT_TRUE(IsAsciiDigit('9')); in TEST()
81 while (IsAsciiDigit()) { in ReadUnsignedNumeral()117 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); } in IsAsciiDigit() function
185 if (in_->IsAsciiDigit()) { in Scan()
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()
959 GTEST_API_ bool IsAsciiDigit(char ch);
737 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function759 return IsAsciiDigit(ch); in AtomMatchesChar()761 return !IsAsciiDigit(ch); in AtomMatchesChar()
975 GTEST_API_ bool IsAsciiDigit(char ch);
732 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function754 return IsAsciiDigit(ch); in AtomMatchesChar()756 return !IsAsciiDigit(ch); in AtomMatchesChar()
974 GTEST_API_ bool IsAsciiDigit(char ch);
294 inline bool IsAsciiDigit(Char c) { in IsAsciiDigit() function
688 if (!IsAsciiDigit(c)) in ReadInt()
1368 GTEST_API_ bool IsAsciiDigit(char ch);11109 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function11130 case 'd': return IsAsciiDigit(ch); in AtomMatchesChar()11131 case 'D': return !IsAsciiDigit(ch); in AtomMatchesChar()
115165 static bool IsAsciiDigit(char16_t aChar) { return NS_IsAsciiDigit(aChar); } in IsAsciiDigit() function in nsCRT