reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/unittests/ASTMatchers/Dynamic/RegistryTest.cpp
  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));