Home
last modified time | relevance | path

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

12

/external/clang/lib/Sema/
DScopeInfo.cpp43 static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) { in getBestPropertyDecl()
76 const ObjCPropertyRefExpr *BaseProp = in getBaseInfo()
77 dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm()); in getBaseInfo()
97 const ObjCPropertyRefExpr *PropE) in WeakObjectProfileTy()
161 if (const ObjCPropertyRefExpr *RefExpr = dyn_cast<ObjCPropertyRefExpr>(E)) { in markSafeWeakUse()
DSemaPseudoObject.cpp133 typedef ObjCPropertyRefExpr specific_type;
134 Expr *rebuildSpecific(ObjCPropertyRefExpr *refExpr) { in rebuildSpecific()
141 ObjCPropertyRefExpr(refExpr->getExplicitProperty(), in rebuildSpecific()
147 ObjCPropertyRefExpr(refExpr->getImplicitPropertyGetter(), in rebuildSpecific()
259 ObjCPropertyRefExpr *RefExpr;
260 ObjCPropertyRefExpr *SyntacticRefExpr;
269 ObjCPropertyOpBuilder(Sema &S, ObjCPropertyRefExpr *refExpr) : in ObjCPropertyOpBuilder()
507 const ObjCPropertyRefExpr *PRE) { in LookupMethodInReceiverType()
672 if (ObjCPropertyRefExpr * in rebuildAndCaptureObject()
673 refE = dyn_cast<ObjCPropertyRefExpr>(syntacticBase->IgnoreParens())) in rebuildAndCaptureObject()
[all …]
DSemaExprObjC.cpp1511 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(RExpr)) { in DiagnoseARCUseOfWeakReceiver()
1589 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1593 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1604 return new (Context) ObjCPropertyRefExpr( in HandleExprPropertyRefExpr()
1609 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1657 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1661 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1794 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in ActOnClassPropertyRefExpr()
1798 return new (Context) ObjCPropertyRefExpr( in ActOnClassPropertyRefExpr()
2988 ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) { in VisitObjCPropertyRefExpr()
[all …]
DSemaFixItUtils.cpp83 isa<ObjCPropertyRefExpr>(Expr) || in tryToFixConversion()
DSemaExprMember.cpp1426 ObjCPropertyRefExpr(PD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
1445 ObjCPropertyRefExpr(OMD, SMD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
1498 return new (S.Context) ObjCPropertyRefExpr( in LookupMemberExpr()
DSemaChecking.cpp7323 ObjCPropertyRefExpr *pre in findRetainCycleOwner()
7324 = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm() in findRetainCycleOwner()
7586 ObjCPropertyRefExpr *PRE in checkUnsafeExprAssigns()
7587 = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens()); in checkUnsafeExprAssigns()
/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp198 ObjCPropertyRefExpr *PropRefExp = in isZeroingPropIvar()
199 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParens()); in isZeroingPropIvar()
/external/clang/lib/AST/
DExprClassification.cpp230 if (isa<ObjCPropertyRefExpr>(Op)) in ClassifyInternal()
460 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
486 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
595 if (const ObjCPropertyRefExpr *Expr = dyn_cast<ObjCPropertyRefExpr>(E)) { in IsModifiable()
DASTDumper.cpp352 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node);
1942 void ASTDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
DExpr.cpp2587 if (!isa<ObjCPropertyRefExpr>(E)) in isTemporaryObject()
3207 const ObjCPropertyRefExpr *Expr::getObjCProperty() const { in getObjCProperty()
3224 return cast<ObjCPropertyRefExpr>(E); in getObjCProperty()
DStmtProfile.cpp1191 void StmtProfiler::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *S) { in VisitObjCPropertyRefExpr()
DStmtPrinter.cpp875 void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
/external/clang/lib/StaticAnalyzer/Checkers/
DCheckObjCDealloc.cpp82 if (ObjCPropertyRefExpr *PRE = in scan_ivar_release()
83 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/include/clang/AST/
DExprObjC.h525 class ObjCPropertyRefExpr : public Expr {
559 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t,
571 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t,
582 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
593 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
603 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
613 explicit ObjCPropertyRefExpr(EmptyShell Empty)
DExpr.h45 class ObjCPropertyRefExpr; variable
451 const ObjCPropertyRefExpr *getObjCProperty() const;
DDataRecursiveASTVisitor.h2202 DEF_TRAVERSE_STMT(ObjCPropertyRefExpr, {})
/external/lldb/include/lldb/Core/
DClangForward.h89 class ObjCPropertyRefExpr; variable
/external/clang/tools/libclang/
DIndexBody.cpp79 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
DCIndex.cpp3228 if (const ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(E)) { in getDeclFromExpr()
3280 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) in getLocationFromExpr()
/external/clang/include/clang/Sema/
DScopeInfo.h47 class ObjCPropertyRefExpr; variable
196 WeakObjectProfileTy(const ObjCPropertyRefExpr *RE);
/external/clang/test/SemaObjCXX/
Dinstantiate-expr.mm15 // ObjCIsaRefExpr, and ObjCPropertyRefExpr nodes.
/external/clang/include/clang/Basic/
DStmtNodes.td149 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.cpp993 void ASTStmtReader::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
2357 S = new (Context) ObjCPropertyRefExpr(Empty); in ReadStmtFromStream()

12