Home | History | Annotate | Download | only in test

Lines Matching refs:IsAsciiDigit

449   EXPECT_FALSE(IsAsciiDigit('\0'));
450 EXPECT_FALSE(IsAsciiDigit(' '));
451 EXPECT_FALSE(IsAsciiDigit('+'));
452 EXPECT_FALSE(IsAsciiDigit('-'));
453 EXPECT_FALSE(IsAsciiDigit('.'));
454 EXPECT_FALSE(IsAsciiDigit('a'));
458 EXPECT_TRUE(IsAsciiDigit('0'));
459 EXPECT_TRUE(IsAsciiDigit('1'));
460 EXPECT_TRUE(IsAsciiDigit('5'));
461 EXPECT_TRUE(IsAsciiDigit('9'));