Home | History | Annotate | Download | only in Basic

Lines Matching refs:isPreprocessingNumberBody

341 TEST(CharInfoTest, isPreprocessingNumberBody) {
342 EXPECT_TRUE(isPreprocessingNumberBody('0'));
343 EXPECT_TRUE(isPreprocessingNumberBody('9'));
345 EXPECT_TRUE(isPreprocessingNumberBody('a'));
346 EXPECT_TRUE(isPreprocessingNumberBody('A'));
348 EXPECT_TRUE(isPreprocessingNumberBody('z'));
349 EXPECT_TRUE(isPreprocessingNumberBody('Z'));
350 EXPECT_TRUE(isPreprocessingNumberBody('.'));
351 EXPECT_TRUE(isPreprocessingNumberBody('_'));
353 EXPECT_FALSE(isPreprocessingNumberBody('/'));
354 EXPECT_FALSE(isPreprocessingNumberBody('('));
355 EXPECT_FALSE(isPreprocessingNumberBody('\0'));
357 EXPECT_FALSE(isPreprocessingNumberBody('\x80'));
358 EXPECT_FALSE(isPreprocessingNumberBody('\xc2'));
359 EXPECT_FALSE(isPreprocessingNumberBody('\xff'));