| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | ScopeInfo.cpp | 71 const ObjCIvarRefExpr *IE = cast<ObjCIvarRefExpr>(E); in getBaseInfo() 143 const ObjCIvarRefExpr *IvarE) in WeakObjectProfileTy() 188 else if (const ObjCIvarRefExpr *IvarE = dyn_cast<ObjCIvarRefExpr>(E)) in markSafeWeakUse()
|
| H A D | SemaExprMember.cpp | 1383 ObjCIvarRefExpr *Result = new (S.Context) ObjCIvarRefExpr( in LookupMemberExpr()
|
| H A D | SemaExpr.cpp | 494 static void DiagnoseDirectIsaAccess(Sema &S, const ObjCIvarRefExpr *OIRE, in DiagnoseDirectIsaAccess() 603 else if (const ObjCIvarRefExpr *OIRE = in DefaultLvalueConversion() 604 dyn_cast<ObjCIvarRefExpr>(E->IgnoreParenCasts())) in DefaultLvalueConversion() 2403 ObjCIvarRefExpr *Result = new (Context) in LookupInObjCMethod() 2404 ObjCIvarRefExpr(IV, IV->getType(), Loc, IV->getLocation(), in LookupInObjCMethod() 7972 if (ObjCIvarRefExpr* Ivar = dyn_cast<ObjCIvarRefExpr>(E)) { in getCompareDecl() 8739 ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr); in CheckIdentityFieldAssignment() 8740 ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr); in CheckIdentityFieldAssignment() 9463 if (auto *IRE = dyn_cast<ObjCIvarRefExpr>(E)) in getDeclFromExpr() 9642 else if (const ObjCIvarRefExpr *OIRE = in CreateBuiltinBinOp() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DereferenceChecker.cpp | 80 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(Ex); in AddDerefSource() 151 const ObjCIvarRefExpr *IV = cast<ObjCIvarRefExpr>(S); in reportBug()
|
| H A D | DirectIvarAssignment.cpp | 170 const ObjCIvarRefExpr *IvarRef = in VisitBinaryOperator() 171 dyn_cast<ObjCIvarRefExpr>(BO->getLHS()->IgnoreParenCasts()); in VisitBinaryOperator()
|
| H A D | ObjCUnusedIVarsChecker.cpp | 37 if (const ObjCIvarRefExpr *Ex = dyn_cast<ObjCIvarRefExpr>(S)) { in Scan()
|
| H A D | CheckObjCDealloc.cpp | 42 if (ObjCIvarRefExpr *E = dyn_cast<ObjCIvarRefExpr>(Receiver)) in scan_ivar_release()
|
| H A D | ObjCSelfInitChecker.cpp | 59 check::PostStmt<ObjCIvarRefExpr>, 73 void checkPostStmt(const ObjCIvarRefExpr *E, CheckerContext &C) const; 198 void ObjCSelfInitChecker::checkPostStmt(const ObjCIvarRefExpr *E, in checkPostStmt()
|
| H A D | IvarInvalidationChecker.cpp | 135 void checkObjCIvarRefExpr(const ObjCIvarRefExpr *IvarRef); 603 const ObjCIvarRefExpr *IvarRef) { in checkObjCIvarRefExpr() 655 if (const ObjCIvarRefExpr *IvarRef = dyn_cast<ObjCIvarRefExpr>(E)) { in check()
|
| /minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/ |
| H A D | TransZeroOutPropsInDealloc.cpp | 170 if (ObjCIvarRefExpr *IV = dyn_cast<ObjCIvarRefExpr>(LHS)) { in isZeroingPropIvar()
|
| H A D | TransRetainReleaseDealloc.cpp | 315 if (ObjCIvarRefExpr *IRE = dyn_cast<ObjCIvarRefExpr>(E)) in getReferencedDecl()
|
| H A D | TransProperties.cpp | 311 if (ObjCIvarRefExpr *RE = dyn_cast<ObjCIvarRefExpr>(lhs)) { in VisitBinAssign()
|
| H A D | TransUnbridgedCasts.cpp | 185 if (isa<ObjCIvarRefExpr>(base) && in transformNonObjCToObjCCast()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 79 ObjCIvarRefExpr *makeObjCIvarRef(const Expr *Base, const ObjCIvarDecl *IVar); 153 ObjCIvarRefExpr *ASTMaker::makeObjCIvarRef(const Expr *Base, in makeObjCIvarRef() 155 return new (C) ObjCIvarRefExpr(const_cast<ObjCIvarDecl*>(IVar), in makeObjCIvarRef()
|
| /minix3/external/bsd/llvm/dist/clang/tools/libclang/ |
| H A D | IndexBody.cpp | 64 bool VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { in VisitObjCIvarRefExpr()
|
| /minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngineObjC.cpp | 22 void ExprEngine::VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *Ex, in VisitLvalObjCIvarRefExpr()
|
| H A D | ExplodedGraph.cpp | 64 isa<ObjCIvarRefExpr>(Ex); in isInterestingLValueExpr()
|
| H A D | BugReporterVisitors.cpp | 70 else if (const ObjCIvarRefExpr *IvarRef = dyn_cast<ObjCIvarRefExpr>(E)) { in getDerefExpr()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 45 class ObjCIvarRefExpr; variable 200 WeakObjectProfileTy(const ObjCIvarRefExpr *RE);
|
| /minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/ |
| H A D | instantiate-expr.mm | 14 // Test instantiation of value-dependent ObjCIvarRefExpr,
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 149 def ObjCIvarRefExpr : DStmt<Expr>;
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | ExprObjC.h | 474 class ObjCIvarRefExpr : public Expr { 485 ObjCIvarRefExpr(ObjCIvarDecl *d, QualType t, 497 explicit ObjCIvarRefExpr(EmptyShell Empty)
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | ExprEngine.h | 389 void VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *DR, ExplodedNode *Pred,
|
| /minix3/external/bsd/llvm/dist/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 903 isa<ObjCIvarRefExpr>(Expr) || in subscriptOperatorNeedsParens() 930 isa<ObjCIvarRefExpr>(Expr) || in castOperatorNeedsParens()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 342 virtual Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) = 0; 541 Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) override; 3772 } else if (const ObjCIvarRefExpr *IRE = dyn_cast<ObjCIvarRefExpr>(BlockExp)) { in SynthesizeBlockCall() 4610 } else if (ObjCIvarRefExpr *IvarRefExpr = dyn_cast<ObjCIvarRefExpr>(S)) { in RewriteFunctionBodyOrGlobalInitializer() 5840 Stmt *RewriteObjCFragileABI::RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) { in RewriteObjCIvarRefExpr()
|