Home
last modified time | relevance | path

Searched refs:ObjCIvarRefExpr (Results 1 – 25 of 58) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DScopeInfo.cpp87 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E); in getBaseInfo()
146 const ObjCIvarRefExpr *IvarE) in WeakObjectProfileTy()
191 else if (const ObjCIvarRefExpr *IvarE = dyn_cast<ObjCIvarRefExpr>(E)) in markSafeWeakUse()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DDereferenceChecker.cpp84 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex); in AddDerefSource()
185 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S); in reportBug()
H A DObjCUnusedIVarsChecker.cpp36 if (const ObjCIvarRefExpr *Ex = dyn_cast<ObjCIvarRefExpr>(S)) { in Scan()
H A DDirectIvarAssignment.cpp170 const ObjCIvarRefExpr *IvarRef = in VisitBinaryOperator()
171 dyn_cast<ObjCIvarRefExpr>(BO->getLHS()->IgnoreParenCasts()); in VisitBinaryOperator()
H A DObjCSelfInitChecker.cpp58 check::PostStmt<ObjCIvarRefExpr>,
72 void checkPostStmt(const ObjCIvarRefExpr *E, CheckerContext &C) const;
196 void ObjCSelfInitChecker::checkPostStmt(const ObjCIvarRefExpr *E, in checkPostStmt()
H A DIvarInvalidationChecker.cpp131 void checkObjCIvarRefExpr(const ObjCIvarRefExpr *IvarRef);
599 const ObjCIvarRefExpr *IvarRef) { in checkObjCIvarRefExpr()
651 if (const ObjCIvarRefExpr *IvarRef = dyn_cast<ObjCIvarRefExpr>(E)) { in check()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp167 if (ObjCIvarRefExpr *IV = dyn_cast<ObjCIvarRefExpr>(LHS)) { in isZeroingPropIvar()
H A DTransProperties.cpp294 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(lhs)) { in VisitBinaryOperator()
H A DTransRetainReleaseDealloc.cpp309 if (ObjCIvarRefExpr *IRE = dyn_cast<ObjCIvarRefExpr>(E)) in getReferencedDecl()
H A DTransUnbridgedCasts.cpp184 if (isa<ObjCIvarRefExpr>(base) && in transformNonObjCToObjCCast()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DComputeDependence.h98 class ObjCIvarRefExpr; variable
188 ExprDependence computeDependence(ObjCIvarRefExpr *E);
H A DExprObjC.h548 class ObjCIvarRefExpr : public Expr {
563 ObjCIvarRefExpr(ObjCIvarDecl *d, QualType t, SourceLocation l,
573 explicit ObjCIvarRefExpr(EmptyShell Empty) in ObjCIvarRefExpr() function
H A DTextNodeDumper.h294 void VisitObjCIvarRefExpr(const ObjCIvarRefExpr *Node);
H A DJSONNodeDumper.h299 void VisitObjCIvarRefExpr(const ObjCIvarRefExpr *OIRE);
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h248 check::PostStmt<ObjCIvarRefExpr>,
302 void checkPostStmt(const ObjCIvarRefExpr *IRE, CheckerContext &C) const;
H A DRetainCountDiagnostics.cpp510 if (isa<ObjCIvarRefExpr>(S) && in VisitNode()
537 } else if (isa<ObjCIvarRefExpr>(S)) { in VisitNode()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DBodyFarm.cpp93 ObjCIvarRefExpr *makeObjCIvarRef(const Expr *Base, const ObjCIvarDecl *IVar);
191 ObjCIvarRefExpr *ASTMaker::makeObjCIvarRef(const Expr *Base, in makeObjCIvarRef()
193 return new (C) ObjCIvarRefExpr(const_cast<ObjCIvarDecl*>(IVar), in makeObjCIvarRef()
H A DThreadSafetyCommon.cpp215 return translateObjCIVarRefExpr(cast<ObjCIvarRefExpr>(S), Ctx); in translate()
360 til::SExpr *SExprBuilder::translateObjCIVarRefExpr(const ObjCIvarRefExpr *IVRE, in translateObjCIVarRefExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DScopeInfo.h50 class ObjCIvarRefExpr; variable
280 WeakObjectProfileTy(const ObjCIvarRefExpr *RE);
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp21 void ExprEngine::VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *Ex, in VisitLvalObjCIvarRefExpr()
H A DExplodedGraph.cpp54 isa<ObjCIvarRefExpr>(Ex) || isa<ArraySubscriptExpr>(Ex); in isInterestingLValueExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h65 class ObjCIvarRefExpr; variable
516 void VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *DR, ExplodedNode *Pred,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h399 til::SExpr *translateObjCIVarRefExpr(const ObjCIvarRefExpr *IVRE,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp905 isa<ObjCIvarRefExpr>(Expr) || in subscriptOperatorNeedsParens()
932 isa<ObjCIvarRefExpr>(Expr) || in castOperatorNeedsParens()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexBody.cpp209 bool VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { in VisitObjCIvarRefExpr()

123