| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | ScopeInfo.cpp | 89 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E); in getBaseInfo() 148 const ObjCIvarRefExpr *IvarE) in WeakObjectProfileTy() 193 else if (const ObjCIvarRefExpr *IvarE = dyn_cast<ObjCIvarRefExpr>(E)) in markSafeWeakUse()
|
| H A D | SemaObjC.cpp | 799 if (ObjCIvarRefExpr *ref = dyn_cast<ObjCIvarRefExpr>(e)) { in findRetainCycleOwner() 880 void VisitObjCIvarRefExpr(ObjCIvarRefExpr *ref) { in VisitObjCIvarRefExpr() 1139 } else if (ObjCIvarRefExpr *IvarRE = dyn_cast<ObjCIvarRefExpr>(Receiver)) { in CheckObjCCircularContainer() 1140 if (ObjCIvarRefExpr *IvarArgRE = dyn_cast<ObjCIvarRefExpr>(Arg)) { in CheckObjCCircularContainer()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DereferenceChecker.cpp | 94 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex); in AddDerefSource() 250 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S); in reportBug()
|
| H A D | ObjCUnusedIVarsChecker.cpp | 36 if (const ObjCIvarRefExpr *Ex = dyn_cast<ObjCIvarRefExpr>(S)) { in Scan()
|
| H A D | DirectIvarAssignment.cpp | 170 const ObjCIvarRefExpr *IvarRef = in VisitBinaryOperator() 171 dyn_cast<ObjCIvarRefExpr>(BO->getLHS()->IgnoreParenCasts()); in VisitBinaryOperator()
|
| H A D | ObjCSelfInitChecker.cpp | 58 check::PostStmt<ObjCIvarRefExpr>, 72 void checkPostStmt(const ObjCIvarRefExpr *E, CheckerContext &C) const; 194 void ObjCSelfInitChecker::checkPostStmt(const ObjCIvarRefExpr *E, in checkPostStmt()
|
| H A D | IvarInvalidationChecker.cpp | 130 void checkObjCIvarRefExpr(const ObjCIvarRefExpr *IvarRef); 584 const ObjCIvarRefExpr *IvarRef) { in checkObjCIvarRefExpr() 636 if (const ObjCIvarRefExpr *IvarRef = dyn_cast<ObjCIvarRefExpr>(E)) { in check()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ComputeDependence.h | 104 class ObjCIvarRefExpr; variable 202 ExprDependence computeDependence(ObjCIvarRefExpr *E);
|
| H A D | ExprObjC.h | 547 class ObjCIvarRefExpr : public Expr { 564 ObjCIvarRefExpr(ObjCIvarDecl *d, QualType t, SourceLocation l, 574 explicit ObjCIvarRefExpr(EmptyShell Empty) in ObjCIvarRefExpr() function
|
| H A D | TextNodeDumper.h | 320 void VisitObjCIvarRefExpr(const ObjCIvarRefExpr *Node);
|
| H A D | JSONNodeDumper.h | 327 void VisitObjCIvarRefExpr(const ObjCIvarRefExpr *OIRE);
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.h | 247 check::PostStmt<ObjCIvarRefExpr>, 301 void checkPostStmt(const ObjCIvarRefExpr *IRE, CheckerContext &C) const;
|
| H A D | RetainCountDiagnostics.cpp | 504 if (isa<ObjCIvarRefExpr>(S) && in VisitNode() 531 } else if (isa<ObjCIvarRefExpr>(S)) { in VisitNode()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 98 ObjCIvarRefExpr *makeObjCIvarRef(const Expr *Base, const ObjCIvarDecl *IVar); 207 ObjCIvarRefExpr *ASTMaker::makeObjCIvarRef(const Expr *Base, in makeObjCIvarRef() 209 return new (C) ObjCIvarRefExpr(const_cast<ObjCIvarDecl*>(IVar), in makeObjCIvarRef()
|
| H A D | ThreadSafetyCommon.cpp | 268 return translateObjCIVarRefExpr(cast<ObjCIvarRefExpr>(S), Ctx); in translate() 423 til::SExpr *SExprBuilder::translateObjCIVarRefExpr(const ObjCIvarRefExpr *IVRE, in translateObjCIVarRefExpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 50 class ObjCIvarRefExpr; variable 297 WeakObjectProfileTy(const ObjCIvarRefExpr *RE);
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngineObjC.cpp | 21 void ExprEngine::VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *Ex, in VisitLvalObjCIvarRefExpr()
|
| H A D | ExplodedGraph.cpp | 51 return isa<DeclRefExpr, MemberExpr, ObjCIvarRefExpr, ArraySubscriptExpr>(Ex); in isInterestingLValueExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | ASTUtils.cpp | 231 else if (auto *IVR = dyn_cast<ObjCIvarRefExpr>(E)) in isConstOwnerPtrMemberExpr()
|
| H A D | RetainPtrCtorAdoptChecker.cpp | 356 if (!isa<ObjCIvarRefExpr>(BO->getLHS())) in visitBinaryOperator()
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | ExprEngine.h | 66 class ObjCIvarRefExpr; variable 526 void VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *DR, ExplodedNode *Pred,
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyCommon.h | 423 til::SExpr *translateObjCIVarRefExpr(const ObjCIvarRefExpr *IVRE,
|
| /freebsd/contrib/llvm-project/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 902 isa<ObjCIvarRefExpr>(Expr) || in subscriptOperatorNeedsParens() 929 isa<ObjCIvarRefExpr>(Expr) || in castOperatorNeedsParens()
|
| /freebsd/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexBody.cpp | 225 bool VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { in VisitObjCIvarRefExpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 186 def ObjCIvarRefExpr : StmtNode<Expr>;
|