Searched refs:ObjCIvarRefExpr (Results 1 - 25 of 53) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DScopeInfo.cpp86 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E);
145 const ObjCIvarRefExpr *IvarE)
190 else if (const ObjCIvarRefExpr *IvarE = dyn_cast<ObjCIvarRefExpr>(E))
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDirectIvarAssignment.cpp170 const ObjCIvarRefExpr *IvarRef =
171 dyn_cast<ObjCIvarRefExpr>(BO->getLHS()->IgnoreParenCasts());
H A DObjCUnusedIVarsChecker.cpp36 if (const ObjCIvarRefExpr *Ex = dyn_cast<ObjCIvarRefExpr>(S)) {
H A DDereferenceChecker.cpp80 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex);
171 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S);
H A DObjCSelfInitChecker.cpp58 check::PostStmt<ObjCIvarRefExpr>,
72 void checkPostStmt(const ObjCIvarRefExpr *E, CheckerContext &C) const;
196 void ObjCSelfInitChecker::checkPostStmt(const ObjCIvarRefExpr *E,
H A DIvarInvalidationChecker.cpp131 void checkObjCIvarRefExpr(const ObjCIvarRefExpr *IvarRef);
599 const ObjCIvarRefExpr *IvarRef) {
651 if (const ObjCIvarRefExpr *IvarRef = dyn_cast<ObjCIvarRefExpr>(E)) {
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DClangForward.h82 class ObjCIvarRefExpr;
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp169 if (ObjCIvarRefExpr *IV = dyn_cast<ObjCIvarRefExpr>(LHS)) {
H A DTransProperties.cpp292 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(lhs)) {
H A DTransRetainReleaseDealloc.cpp309 if (ObjCIvarRefExpr *IRE = dyn_cast<ObjCIvarRefExpr>(E))
H A DTransUnbridgedCasts.cpp184 if (isa<ObjCIvarRefExpr>(base) &&
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h248 check::PostStmt<ObjCIvarRefExpr>,
302 void checkPostStmt(const ObjCIvarRefExpr *IRE, CheckerContext &C) const;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp21 void ExprEngine::VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *Ex,
33 // Perform the post-condition check of the ObjCIvarRefExpr and store
H A DExplodedGraph.cpp55 isa<ObjCIvarRefExpr>(Ex);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h50 class ObjCIvarRefExpr;
271 WeakObjectProfileTy(const ObjCIvarRefExpr *RE);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h62 class ObjCIvarRefExpr;
485 void VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *DR, ExplodedNode *Pred,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp93 ObjCIvarRefExpr *makeObjCIvarRef(const Expr *Base, const ObjCIvarDecl *IVar);
195 ObjCIvarRefExpr *ASTMaker::makeObjCIvarRef(const Expr *Base,
197 return new (C) ObjCIvarRefExpr(const_cast<ObjCIvarDecl*>(IVar),
H A DThreadSafetyCommon.cpp215 return translateObjCIVarRefExpr(cast<ObjCIvarRefExpr>(S), Ctx);
360 til::SExpr *SExprBuilder::translateObjCIVarRefExpr(const ObjCIvarRefExpr *IVRE,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExprObjC.h545 /// ObjCIvarRefExpr - A reference to an ObjC instance variable.
546 class ObjCIvarRefExpr : public Expr { class in namespace:clang
561 ObjCIvarRefExpr(ObjCIvarDecl *d, QualType t, function in class:clang::ObjCIvarRefExpr
573 explicit ObjCIvarRefExpr(EmptyShell Empty) function in class:clang::ObjCIvarRefExpr
H A DJSONNodeDumper.h295 void VisitObjCIvarRefExpr(const ObjCIvarRefExpr *OIRE);
H A DTextNodeDumper.h274 void VisitObjCIvarRefExpr(const ObjCIvarRefExpr *Node);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h399 til::SExpr *translateObjCIVarRefExpr(const ObjCIvarRefExpr *IVRE,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexBody.cpp209 bool VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp905 isa<ObjCIvarRefExpr>(Expr) ||
932 isa<ObjCIvarRefExpr>(Expr) ||
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp343 virtual Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) = 0;
540 Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) override;
3751 } else if (const ObjCIvarRefExpr *IRE = dyn_cast<ObjCIvarRefExpr>(BlockExp)) {
4572 } else if (ObjCIvarRefExpr *IvarRefExpr = dyn_cast<ObjCIvarRefExpr>(S)) {
5796 Stmt *RewriteObjCFragileABI::RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) {

Completed in 167 milliseconds

123