Home | History | Annotate | Download | only in test

Lines Matching refs:IsAsciiDigit

481   EXPECT_FALSE(IsAsciiDigit('\0'));
482 EXPECT_FALSE(IsAsciiDigit(' '));
483 EXPECT_FALSE(IsAsciiDigit('+'));
484 EXPECT_FALSE(IsAsciiDigit('-'));
485 EXPECT_FALSE(IsAsciiDigit('.'));
486 EXPECT_FALSE(IsAsciiDigit('a'));
490 EXPECT_TRUE(IsAsciiDigit('0'));
491 EXPECT_TRUE(IsAsciiDigit('1'));
492 EXPECT_TRUE(IsAsciiDigit('5'));
493 EXPECT_TRUE(IsAsciiDigit('9'));