Searched refs:HasFloatLiteral (Results 1 – 1 of 1) sorted by relevance
667 StatementMatcher HasFloatLiteral = floatLiteral(); in TEST() local668 EXPECT_TRUE(matches("float i = 10.0;", HasFloatLiteral)); in TEST()669 EXPECT_TRUE(matches("float i = 10.0f;", HasFloatLiteral)); in TEST()670 EXPECT_TRUE(matches("double i = 10.0;", HasFloatLiteral)); in TEST()671 EXPECT_TRUE(matches("double i = 10.0L;", HasFloatLiteral)); in TEST()672 EXPECT_TRUE(matches("double i = 1e10;", HasFloatLiteral)); in TEST()678 EXPECT_TRUE(notMatches("float i = 10;", HasFloatLiteral)); in TEST()