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

References

tools/clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp
  264   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("g(x)"));
  268   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  269   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("g(x)"));
  273   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  274   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("g(x)"));
  280   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  281   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("g<int>(x)"));
  285   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  286   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("g(x)"));
  290   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  291   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("g(x)"));
  295   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  296   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("x + 1"));
  299   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  300   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("x"));
  303   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  304   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("x"));
  309   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  310   EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre("A<0>::mf(x)"));