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

References

tools/clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp
  384       match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  385   EXPECT_FALSE(isMutated(Results, AST.get()));
  387   AST = buildASTFromCode("struct A {}; A operator+(const A&&, int);"
  389   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  390   EXPECT_FALSE(isMutated(Results, AST.get()));
  392   AST = buildASTFromCode("void f() { struct A { A(const int&&); }; "
  394   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  395   EXPECT_FALSE(isMutated(Results, AST.get()));
  397   AST = buildASTFromCode("void f() { struct A { A(); A(const A&&); }; "
  399   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  400   EXPECT_FALSE(isMutated(Results, AST.get()));