/external/clang/lib/Sema/ |
D | ScopeInfo.cpp | 51 static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) { in getBestPropertyDecl() 84 const ObjCPropertyRefExpr *BaseProp = in getBaseInfo() 85 dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm()); in getBaseInfo() 122 const ObjCPropertyRefExpr *PropE) in WeakObjectProfileTy() 186 if (const ObjCPropertyRefExpr *RefExpr = dyn_cast<ObjCPropertyRefExpr>(E)) { in markSafeWeakUse()
|
D | SemaPseudoObject.cpp | 56 Expr *rebuildObjCPropertyRefExpr(ObjCPropertyRefExpr *refExpr) { in rebuildObjCPropertyRefExpr() 63 return new (S.Context) ObjCPropertyRefExpr( in rebuildObjCPropertyRefExpr() 68 return new (S.Context) ObjCPropertyRefExpr( in rebuildObjCPropertyRefExpr() 109 if (auto *PRE = dyn_cast<ObjCPropertyRefExpr>(e)) in rebuild() 266 ObjCPropertyRefExpr *RefExpr; 267 ObjCPropertyRefExpr *SyntacticRefExpr; 276 ObjCPropertyOpBuilder(Sema &S, ObjCPropertyRefExpr *refExpr) : in ObjCPropertyOpBuilder() 543 const ObjCPropertyRefExpr *PRE) { in LookupMethodInReceiverType() 707 if (ObjCPropertyRefExpr * in rebuildAndCaptureObject() 708 refE = dyn_cast<ObjCPropertyRefExpr>(syntacticBase->IgnoreParens())) in rebuildAndCaptureObject() [all …]
|
D | SemaFixItUtils.cpp | 83 isa<ObjCPropertyRefExpr>(Expr) || in tryToFixConversion()
|
D | SemaExprObjC.cpp | 1787 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 1791 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 1803 return new (Context) ObjCPropertyRefExpr( in HandleExprPropertyRefExpr() 1808 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 1873 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 1877 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 2024 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in ActOnClassPropertyRefExpr() 2028 return new (Context) ObjCPropertyRefExpr( in ActOnClassPropertyRefExpr() 3322 ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) { in VisitObjCPropertyRefExpr() 3808 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(castExpr)) { in CheckObjCBridgeRelatedCast()
|
D | SemaExprMember.cpp | 1536 ObjCPropertyRefExpr(PD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr() 1555 ObjCPropertyRefExpr(OMD, SMD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr() 1608 return new (S.Context) ObjCPropertyRefExpr( in LookupMemberExpr()
|
/external/clang/lib/AST/ |
D | ExprClassification.cpp | 237 if (isa<ObjCPropertyRefExpr>(Op)) in ClassifyInternal() 472 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr() 498 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr() 607 if (const ObjCPropertyRefExpr *Expr = dyn_cast<ObjCPropertyRefExpr>(E)) { in IsModifiable()
|
D | ExprObjC.cpp | 107 QualType ObjCPropertyRefExpr::getReceiverType(const ASTContext &ctx) const { in getReceiverType()
|
D | ASTDumper.cpp | 554 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node); 2244 void ASTDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
|
D | Expr.cpp | 2529 if (!isa<ObjCPropertyRefExpr>(E)) in isTemporaryObject() 3250 const ObjCPropertyRefExpr *Expr::getObjCProperty() const { in getObjCProperty() 3267 return cast<ObjCPropertyRefExpr>(E); in getObjCProperty()
|
D | StmtProfile.cpp | 1588 void StmtProfiler::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *S) { in VisitObjCPropertyRefExpr()
|
D | StmtPrinter.cpp | 1246 void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
|
/external/clang/lib/ARCMigrate/ |
D | TransZeroOutPropsInDealloc.cpp | 198 ObjCPropertyRefExpr *PropRefExp = in isZeroingPropIvar() 199 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParens()); in isZeroingPropIvar()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | IvarInvalidationChecker.cpp | 136 void checkObjCPropertyRefExpr(const ObjCPropertyRefExpr *PA); 617 const ObjCPropertyRefExpr *PA) { in checkObjCPropertyRefExpr() 657 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) { in check()
|
/external/clang/include/clang/AST/ |
D | ExprObjC.h | 539 class ObjCPropertyRefExpr : public Expr { 573 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t, 585 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t, 596 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 607 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 617 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 627 explicit ObjCPropertyRefExpr(EmptyShell Empty)
|
D | Expr.h | 47 class ObjCPropertyRefExpr; variable 450 const ObjCPropertyRefExpr *getObjCProperty() const;
|
/external/clang/include/clang/Sema/ |
D | ScopeInfo.h | 47 class ObjCPropertyRefExpr; variable 222 WeakObjectProfileTy(const ObjCPropertyRefExpr *RE);
|
/external/clang/test/SemaObjCXX/ |
D | instantiate-expr.mm | 15 // ObjCIsaRefExpr, and ObjCPropertyRefExpr nodes.
|
/external/clang/lib/Index/ |
D | IndexBody.cpp | 196 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 163 def ObjCPropertyRefExpr : DStmt<Expr>;
|
/external/clang/lib/Edit/ |
D | RewriteObjCFoundationAPI.cpp | 900 isa<ObjCPropertyRefExpr>(Expr) || in subscriptOperatorNeedsParens() 927 isa<ObjCPropertyRefExpr>(Expr) || in castOperatorNeedsParens()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | CallEvent.cpp | 824 auto *RefExpr = cast<ObjCPropertyRefExpr>(Syntactic); in getAccessedProperty()
|
D | BugReporterVisitors.cpp | 915 auto *PropRef = dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm()); in peelOffOuterExpr()
|
/external/clang/test/SemaObjC/ |
D | arc-repeated-weak.mm | 443 // called on an ObjCPropertyRefExpr object whose receiver was an interface.
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 3972 if (const ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(E)) { in getDeclFromExpr() 4027 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) in getLocationFromExpr()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1041 void ASTStmtReader::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr() 3177 S = new (Context) ObjCPropertyRefExpr(Empty); in ReadStmtFromStream()
|