Searched refs:floatLiteral (Results 1 – 3 of 3) sorted by relevance
2348 StatementMatcher HasFloatLiteral = floatLiteral(); in TEST()2354 EXPECT_TRUE(matches("double i = 5.0;", floatLiteral(equals(5.0)))); in TEST()2355 EXPECT_TRUE(matches("double i = 5.0;", floatLiteral(equals(5.0f)))); in TEST()2357 matches("double i = 5.0;", floatLiteral(equals(llvm::APFloat(5.0))))); in TEST()2360 EXPECT_TRUE(notMatches("double i = 5.0;", floatLiteral(equals(6.0)))); in TEST()2361 EXPECT_TRUE(notMatches("double i = 5.0;", floatLiteral(equals(6.0f)))); in TEST()2363 notMatches("double i = 5.0;", floatLiteral(equals(llvm::APFloat(6.0))))); in TEST()
174 REGISTER_MATCHER(floatLiteral); in RegistryMaps()
1504 FloatingLiteral> floatLiteral; variable