reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
518 EXPECT_TRUE(matches("bool x = true;", BooleanStmt)); 519 EXPECT_FALSE(matches("bool x = false;", BooleanStmt)); 520 EXPECT_FALSE(matches("bool x = 0;", BooleanStmt)); 522 BooleanStmt = constructMatcher( 525 EXPECT_TRUE(matches("bool x = false;", BooleanStmt)); 526 EXPECT_FALSE(matches("bool x = true;", BooleanStmt)); 527 EXPECT_FALSE(matches("bool x = 0;", BooleanStmt));