Home
last modified time | relevance | path

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

12

/external/clang/lib/Sema/
DScopeInfo.cpp50 static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) { in getBestPropertyDecl()
83 const ObjCPropertyRefExpr *BaseProp = in getBaseInfo()
84 dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm()); in getBaseInfo()
119 const ObjCPropertyRefExpr *PropE) in WeakObjectProfileTy()
183 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()
706 if (ObjCPropertyRefExpr * in rebuildAndCaptureObject()
707 refE = dyn_cast<ObjCPropertyRefExpr>(syntacticBase->IgnoreParens())) in rebuildAndCaptureObject()
[all …]
DSemaFixItUtils.cpp83 isa<ObjCPropertyRefExpr>(Expr) || in tryToFixConversion()
DSemaExprObjC.cpp1789 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1793 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1804 return new (Context) ObjCPropertyRefExpr( in HandleExprPropertyRefExpr()
1809 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()
2009 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in ActOnClassPropertyRefExpr()
2013 return new (Context) ObjCPropertyRefExpr( in ActOnClassPropertyRefExpr()
3293 ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) { in VisitObjCPropertyRefExpr()
3777 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(castExpr)) { in CheckObjCBridgeRelatedCast()
DSemaExprMember.cpp1471 ObjCPropertyRefExpr(PD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
1490 ObjCPropertyRefExpr(OMD, SMD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
1543 return new (S.Context) ObjCPropertyRefExpr( in LookupMemberExpr()
DSemaChecking.cpp8797 ObjCPropertyRefExpr *pre in findRetainCycleOwner()
8798 = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm() in findRetainCycleOwner()
9227 ObjCPropertyRefExpr *PRE in checkUnsafeExprAssigns()
9228 = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens()); in checkUnsafeExprAssigns()
/external/clang/lib/AST/
DExprClassification.cpp237 if (isa<ObjCPropertyRefExpr>(Op)) in ClassifyInternal()
471 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
497 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
606 if (const ObjCPropertyRefExpr *Expr = dyn_cast<ObjCPropertyRefExpr>(E)) { in IsModifiable()
DExprObjC.cpp115 QualType ObjCPropertyRefExpr::getReceiverType(const ASTContext &ctx) const { in getReceiverType()
DASTDumper.cpp536 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node);
2095 void ASTDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
DExpr.cpp2682 if (!isa<ObjCPropertyRefExpr>(E)) in isTemporaryObject()
3391 const ObjCPropertyRefExpr *Expr::getObjCProperty() const { in getObjCProperty()
3408 return cast<ObjCPropertyRefExpr>(E); in getObjCProperty()
DStmtProfile.cpp1468 void StmtProfiler::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *S) { in VisitObjCPropertyRefExpr()
DStmtPrinter.cpp1124 void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
/external/clang/lib/StaticAnalyzer/Checkers/
DCheckObjCDealloc.cpp61 if (ObjCPropertyRefExpr *PRE = in scan_ivar_release()
62 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParenCasts())) in scan_ivar_release()
DIvarInvalidationChecker.cpp139 void checkObjCPropertyRefExpr(const ObjCPropertyRefExpr *PA);
620 const ObjCPropertyRefExpr *PA) { in checkObjCPropertyRefExpr()
660 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) { in check()
/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp198 ObjCPropertyRefExpr *PropRefExp = in isZeroingPropIvar()
199 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParens()); in isZeroingPropIvar()
/external/clang/include/clang/AST/
DExprObjC.h544 class ObjCPropertyRefExpr : public Expr {
578 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t,
590 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t,
601 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
612 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
622 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
632 explicit ObjCPropertyRefExpr(EmptyShell Empty)
DExpr.h46 class ObjCPropertyRefExpr; variable
449 const ObjCPropertyRefExpr *getObjCProperty() const;
/external/lldb/include/lldb/Core/
DClangForward.h89 class ObjCPropertyRefExpr; variable
/external/clang/tools/libclang/
DIndexBody.cpp79 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
DCIndex.cpp3554 if (const ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(E)) { in getDeclFromExpr()
3606 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) in getLocationFromExpr()
/external/clang/include/clang/Sema/
DScopeInfo.h46 class ObjCPropertyRefExpr; variable
214 WeakObjectProfileTy(const ObjCPropertyRefExpr *RE);
/external/clang/test/SemaObjCXX/
Dinstantiate-expr.mm15 // ObjCIsaRefExpr, and ObjCPropertyRefExpr nodes.
/external/clang/include/clang/Basic/
DStmtNodes.td162 def ObjCPropertyRefExpr : DStmt<Expr>;
/external/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp900 isa<ObjCPropertyRefExpr>(Expr) || in subscriptOperatorNeedsParens()
927 isa<ObjCPropertyRefExpr>(Expr) || in castOperatorNeedsParens()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1034 void ASTStmtReader::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
2875 S = new (Context) ObjCPropertyRefExpr(Empty); in ReadStmtFromStream()

12