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

References

tools/clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp
  357       match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  358   EXPECT_THAT(mutatedBy(Results, AST.get()),
  361   AST = buildASTFromCode("struct A {}; A operator+(A&&, int);"
  363   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  364   EXPECT_THAT(mutatedBy(Results, AST.get()),
  367   AST = buildASTFromCode("void f() { struct A { A(int&&); }; "
  369   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  370   EXPECT_THAT(mutatedBy(Results, AST.get()),
  373   AST = buildASTFromCode("void f() { struct A { A(); A(A&&); }; "
  375   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  376   EXPECT_THAT(mutatedBy(Results, AST.get()),