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

References

tools/clang/tools/extra/clang-tidy/google/NonConstReferences.cpp
   52   if (Function == nullptr || Function->isImplicit())
   52   if (Function == nullptr || Function->isImplicit())
   55   if (Function->getLocation().isMacroID())
   58   if (!Function->isCanonicalDecl())
   61   if (const auto *Method = dyn_cast<CXXMethodDecl>(Function)) {
   89   if (Function->isOverloadedOperator()) {
   90     switch (Function->getOverloadedOperator()) {
  106         if (Function->getParamDecl(0) == Parameter)
  117         if (isNonConstRef(Function->getParamDecl(0)->getType()) &&
  118             (Function->getNumParams() < 2 || // E.g. member operator>>.
  119              isNonConstRef(Function->getParamDecl(1)->getType())) &&
  120             isNonConstRef(Function->getReturnType()))
  130   if (Function->getDeclName().isIdentifier() && Function->getName() == "swap")
  130   if (Function->getDeclName().isIdentifier() && Function->getName() == "swap")