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

References

tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
  204     return "field '" + R->getDecl()->getNameAsString() + "' of " +
tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
 1021     return getDecl()->getType();
 1352     return getFieldRegion(FR->getDecl(), superRegion);
tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObject.h
  120     return FR->getDecl();
tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
  210                     PathDiagnosticLocation::create(Pair.first->getDecl(),
  246   assert((PointeeR || !isDereferencableType(FR->getDecl()->getType())) &&
  251           FR->getDecl()->getLocation()))
  254   if (Opts.IgnoreGuardedFields && !hasUnguardedAccess(FR->getDecl(), State))
tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
  143   assert((isDereferencableType(FR->getDecl()->getType()) ||
  233   bool NeedsCastBack = isVoidPointer(FR->getDecl()->getType()) ||
tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
  182   if (getDecl()->isBitField())
  509   os << superRegion << "." << *getDecl();
  630   os << "." << getDecl()->getName();
  639     os << "field " << "\'" << getDecl()->getName() << "'";
  705     return FR->getDecl()->getSourceRange();
 1431       const RecordDecl *RD = FR->getDecl()->getParent();
 1450         if (FR->getDecl() == *FI)
tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
  817   return FR->getDecl()->getParent()->isUnion();
  831         Fields.push_back(FR->getDecl());
  887     if (FR->getDecl()->isBitField())
  888       Length = FR->getDecl()->getBitWidthValue(SVB.getContext());
 1786   const FieldDecl *FD = R->getDecl();
tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
  789   const FieldDecl *LeftFD = LeftFR->getDecl();
  790   const FieldDecl *RightFD = RightFR->getDecl();