Home
last modified time | relevance | path

Searched refs:ObjCPropertyRefExpr (Results 1 – 25 of 33) sorted by relevance

12

/external/clang/lib/Sema/
DScopeInfo.cpp51 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()
DSemaPseudoObject.cpp56 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 …]
DSemaFixItUtils.cpp83 isa<ObjCPropertyRefExpr>(Expr) || in tryToFixConversion()
DSemaExprObjC.cpp1787 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()
DSemaExprMember.cpp1536 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/
DExprClassification.cpp237 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()
DExprObjC.cpp107 QualType ObjCPropertyRefExpr::getReceiverType(const ASTContext &ctx) const { in getReceiverType()
DASTDumper.cpp554 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node);
2244 void ASTDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
DExpr.cpp2529 if (!isa<ObjCPropertyRefExpr>(E)) in isTemporaryObject()
3250 const ObjCPropertyRefExpr *Expr::getObjCProperty() const { in getObjCProperty()
3267 return cast<ObjCPropertyRefExpr>(E); in getObjCProperty()
DStmtProfile.cpp1588 void StmtProfiler::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *S) { in VisitObjCPropertyRefExpr()
DStmtPrinter.cpp1246 void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp198 ObjCPropertyRefExpr *PropRefExp = in isZeroingPropIvar()
199 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParens()); in isZeroingPropIvar()
/external/clang/lib/StaticAnalyzer/Checkers/
DIvarInvalidationChecker.cpp136 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/
DExprObjC.h539 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)
DExpr.h47 class ObjCPropertyRefExpr; variable
450 const ObjCPropertyRefExpr *getObjCProperty() const;
/external/clang/include/clang/Sema/
DScopeInfo.h47 class ObjCPropertyRefExpr; variable
222 WeakObjectProfileTy(const ObjCPropertyRefExpr *RE);
/external/clang/test/SemaObjCXX/
Dinstantiate-expr.mm15 // ObjCIsaRefExpr, and ObjCPropertyRefExpr nodes.
/external/clang/lib/Index/
DIndexBody.cpp196 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
/external/clang/include/clang/Basic/
DStmtNodes.td163 def ObjCPropertyRefExpr : DStmt<Expr>;
/external/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp900 isa<ObjCPropertyRefExpr>(Expr) || in subscriptOperatorNeedsParens()
927 isa<ObjCPropertyRefExpr>(Expr) || in castOperatorNeedsParens()
/external/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp824 auto *RefExpr = cast<ObjCPropertyRefExpr>(Syntactic); in getAccessedProperty()
DBugReporterVisitors.cpp915 auto *PropRef = dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm()); in peelOffOuterExpr()
/external/clang/test/SemaObjC/
Darc-repeated-weak.mm443 // called on an ObjCPropertyRefExpr object whose receiver was an interface.
/external/clang/tools/libclang/
DCIndex.cpp3972 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/
DASTReaderStmt.cpp1041 void ASTStmtReader::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
3177 S = new (Context) ObjCPropertyRefExpr(Empty); in ReadStmtFromStream()

12