Home
last modified time | relevance | path

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

12

/external/clang/lib/Sema/
DScopeInfo.cpp37 static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) { in getBestPropertyDecl()
70 const ObjCPropertyRefExpr *BaseProp = in getBaseInfo()
71 dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm()); in getBaseInfo()
92 const ObjCPropertyRefExpr *PropE) in WeakObjectProfileTy()
156 if (const ObjCPropertyRefExpr *RefExpr = dyn_cast<ObjCPropertyRefExpr>(E)) in markSafeWeakUse()
DSemaPseudoObject.cpp132 typedef ObjCPropertyRefExpr specific_type;
133 Expr *rebuildSpecific(ObjCPropertyRefExpr *refExpr) { in rebuildSpecific()
140 ObjCPropertyRefExpr(refExpr->getExplicitProperty(), in rebuildSpecific()
146 ObjCPropertyRefExpr(refExpr->getImplicitPropertyGetter(), in rebuildSpecific()
255 ObjCPropertyRefExpr *RefExpr;
256 ObjCPropertyRefExpr *SyntacticRefExpr;
265 ObjCPropertyOpBuilder(Sema &S, ObjCPropertyRefExpr *refExpr) : in ObjCPropertyOpBuilder()
501 const ObjCPropertyRefExpr *PRE) { in LookupMethodInReceiverType()
654 if (ObjCPropertyRefExpr * in rebuildAndCaptureObject()
655 refE = dyn_cast<ObjCPropertyRefExpr>(syntacticBase->IgnoreParens())) in rebuildAndCaptureObject()
[all …]
DSemaFixItUtils.cpp83 isa<ObjCPropertyRefExpr>(Expr) || in tryToFixConversion()
DSemaExprObjC.cpp1435 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(RExpr)) { in DiagnoseARCUseOfWeakReceiver()
1512 return Owned(new (Context) ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, in HandleExprPropertyRefExpr()
1517 return Owned(new (Context) ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, in HandleExprPropertyRefExpr()
1530 return Owned(new (Context) ObjCPropertyRefExpr(PD, in HandleExprPropertyRefExpr()
1537 return Owned(new (Context) ObjCPropertyRefExpr(PD, in HandleExprPropertyRefExpr()
1588 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter, in HandleExprPropertyRefExpr()
1594 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter, in HandleExprPropertyRefExpr()
1738 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter, in ActOnClassPropertyRefExpr()
1745 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter, in ActOnClassPropertyRefExpr()
2890 ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) { in VisitObjCPropertyRefExpr()
DSemaExprMember.cpp1374 return Owned(new (Context) ObjCPropertyRefExpr(PD, in LookupMemberExpr()
1395 return Owned(new (Context) ObjCPropertyRefExpr(OMD, SMD, in LookupMemberExpr()
1450 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter, in LookupMemberExpr()
DSemaChecking.cpp6454 ObjCPropertyRefExpr *pre in findRetainCycleOwner()
6455 = dyn_cast<ObjCPropertyRefExpr>(pseudo->getSyntacticForm() in findRetainCycleOwner()
6700 ObjCPropertyRefExpr *PRE in checkUnsafeExprAssigns()
6701 = dyn_cast<ObjCPropertyRefExpr>(LHS->IgnoreParens()); in checkUnsafeExprAssigns()
/external/clang/lib/ARCMigrate/
DTransZeroOutPropsInDealloc.cpp200 ObjCPropertyRefExpr *PropRefExp = in isZeroingPropIvar()
201 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParens()); in isZeroingPropIvar()
/external/clang/lib/AST/
DExprClassification.cpp231 if (isa<ObjCPropertyRefExpr>(Op)) in ClassifyInternal()
461 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
487 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
585 if (const ObjCPropertyRefExpr *Expr = dyn_cast<ObjCPropertyRefExpr>(E)) { in IsModifiable()
DASTDumper.cpp291 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node);
1810 void ASTDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
DStmtProfile.cpp1092 void StmtProfiler::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *S) { in VisitObjCPropertyRefExpr()
DExpr.cpp2504 if (!isa<ObjCPropertyRefExpr>(E)) in isTemporaryObject()
3108 const ObjCPropertyRefExpr *Expr::getObjCProperty() const { in getObjCProperty()
3125 return cast<ObjCPropertyRefExpr>(E); in getObjCProperty()
DStmtPrinter.cpp689 void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
/external/clang/lib/StaticAnalyzer/Checkers/
DIvarInvalidationChecker.cpp136 void checkObjCPropertyRefExpr(const ObjCPropertyRefExpr *PA);
630 const ObjCPropertyRefExpr *PA) { in checkObjCPropertyRefExpr()
670 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) { in check()
DCheckObjCDealloc.cpp82 if (ObjCPropertyRefExpr *PRE = in scan_ivar_release()
83 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParenCasts())) in scan_ivar_release()
/external/clang/include/clang/AST/
DExprObjC.h524 class ObjCPropertyRefExpr : public Expr {
558 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t,
570 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t,
581 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
592 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
602 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
612 explicit ObjCPropertyRefExpr(EmptyShell Empty)
DExpr.h45 class ObjCPropertyRefExpr; variable
451 const ObjCPropertyRefExpr *getObjCProperty() const;
DRecursiveASTVisitor.h2324 DEF_TRAVERSE_STMT(ObjCPropertyRefExpr, { })
/external/clang/include/clang/Sema/
DScopeInfo.h41 class ObjCPropertyRefExpr; variable
175 WeakObjectProfileTy(const ObjCPropertyRefExpr *RE);
/external/clang/tools/libclang/
DIndexBody.cpp79 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
DCIndex.cpp3084 if (const ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(E)) { in getDeclFromExpr()
3136 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) in getLocationFromExpr()
DRecursiveASTVisitor.h2228 DEF_TRAVERSE_STMT(ObjCPropertyRefExpr, { })
/external/clang/test/SemaObjCXX/
Dinstantiate-expr.mm15 // ObjCIsaRefExpr, and ObjCPropertyRefExpr nodes.
/external/clang/include/clang/Basic/
DStmtNodes.td151 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.cpp987 void ASTStmtReader::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
2129 S = new (Context) ObjCPropertyRefExpr(Empty); in ReadStmtFromStream()

12