Home | History | Annotate | Download | only in test

Lines Matching refs:IsAsciiDigit

444   EXPECT_FALSE(IsAsciiDigit('\0'));
445 EXPECT_FALSE(IsAsciiDigit(' '));
446 EXPECT_FALSE(IsAsciiDigit('+'));
447 EXPECT_FALSE(IsAsciiDigit('-'));
448 EXPECT_FALSE(IsAsciiDigit('.'));
449 EXPECT_FALSE(IsAsciiDigit('a'));
453 EXPECT_TRUE(IsAsciiDigit('0'));
454 EXPECT_TRUE(IsAsciiDigit('1'));
455 EXPECT_TRUE(IsAsciiDigit('5'));
456 EXPECT_TRUE(IsAsciiDigit('9'));