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

References

tools/clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp
  316       match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  317   EXPECT_FALSE(isMutated(Results, AST.get()));
  319   AST = buildASTFromCode("typedef const int& CIntRef;"
  321   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  322   EXPECT_FALSE(isMutated(Results, AST.get()));
  324   AST = buildASTFromCode("template <class T> using CTRef = const T&;"
  326   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  327   EXPECT_FALSE(isMutated(Results, AST.get()));
  329   AST =
  334   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  335   EXPECT_FALSE(isMutated(Results, AST.get()));
  337   AST = buildASTFromCode(
  339   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  340   EXPECT_FALSE(isMutated(Results, AST.get()));
  342   AST = buildASTFromCode(
  344   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  345   EXPECT_FALSE(isMutated(Results, AST.get()));
  347   AST = buildASTFromCode(
  349   Results = match(withEnclosingCompound(declRefTo("x")), AST->getASTContext());
  350   EXPECT_FALSE(isMutated(Results, AST.get()));