Home
last modified time | relevance | path

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

12

/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DScopeInfo.cpp61 static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) { in getBestPropertyDecl()
94 const ObjCPropertyRefExpr *BaseProp = in getBaseInfo()
95 dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm()); in getBaseInfo()
117 const ObjCPropertyRefExpr *PropE) in WeakObjectProfileTy()
181 if (const ObjCPropertyRefExpr *RefExpr = dyn_cast<ObjCPropertyRefExpr>(E)) { in markSafeWeakUse()
H A DSemaPseudoObject.cpp62 return new (S.Context) ObjCPropertyRefExpr( in rebuildObjCPropertyRefExpr()
67 return new (S.Context) ObjCPropertyRefExpr( in rebuildObjCPropertyRefExpr()
108 if (auto *PRE = dyn_cast<ObjCPropertyRefExpr>(e)) in rebuild()
265 ObjCPropertyRefExpr *RefExpr;
266 ObjCPropertyRefExpr *SyntacticRefExpr;
712 if (ObjCPropertyRefExpr * in rebuildAndCaptureObject()
1529 if (ObjCPropertyRefExpr *refExpr in checkPseudoObjectRValue()
1530 = dyn_cast<ObjCPropertyRefExpr>(opaqueRef)) { in checkPseudoObjectRValue()
1562 if (ObjCPropertyRefExpr *refExpr in checkPseudoObjectIncDec()
1563 = dyn_cast<ObjCPropertyRefExpr>(opaqueRef)) { in checkPseudoObjectIncDec()
[all …]
H A DSemaFixItUtils.cpp82 isa<ObjCPropertyRefExpr>(Expr) || in tryToFixConversion()
H A DSemaExprObjC.cpp2007 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
2011 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
2023 return new (Context) ObjCPropertyRefExpr( in HandleExprPropertyRefExpr()
2028 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
2094 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
2098 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
2250 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in ActOnClassPropertyRefExpr()
2254 return new (Context) ObjCPropertyRefExpr( in ActOnClassPropertyRefExpr()
3700 ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) { in VisitObjCPropertyRefExpr()
4192 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(castExpr)) { in CheckObjCBridgeRelatedCast()
H A DSemaExprMember.cpp1502 ObjCPropertyRefExpr(PD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
1518 ObjCPropertyRefExpr(OMD, SMD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
1574 return new (S.Context) ObjCPropertyRefExpr( in LookupMemberExpr()
H A DSemaAvailability.cpp695 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *PRE) { in VisitObjCPropertyRefExpr()
/netbsd/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp195 ObjCPropertyRefExpr *PropRefExp = in isZeroingPropIvar()
196 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParens()); in isZeroingPropIvar()
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprObjC.h614 class ObjCPropertyRefExpr : public Expr {
648 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t, ExprValueKind VK, in ObjCPropertyRefExpr() function
656 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t, ExprValueKind VK, in ObjCPropertyRefExpr() function
665 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() function
675 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() function
686 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() function
697 explicit ObjCPropertyRefExpr(EmptyShell Empty) in ObjCPropertyRefExpr() function
795 auto Children = const_cast<ObjCPropertyRefExpr *>(this)->children(); in children()
H A DComputeDependence.h99 class ObjCPropertyRefExpr; variable
189 ExprDependence computeDependence(ObjCPropertyRefExpr *E);
H A DStmtDataCollectors.td173 class ObjCPropertyRefExpr {
H A DTextNodeDumper.h292 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node);
H A DJSONNodeDumper.h297 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *OPRE);
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DIvarInvalidationChecker.cpp135 void checkObjCPropertyRefExpr(const ObjCPropertyRefExpr *PA);
616 const ObjCPropertyRefExpr *PA) { in checkObjCPropertyRefExpr()
656 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) { in check()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DExprClassification.cpp262 if (isa<ObjCPropertyRefExpr>(Op)) in ClassifyInternal()
505 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
531 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
639 if (const auto *Expr = dyn_cast<ObjCPropertyRefExpr>(E)) { in IsModifiable()
H A DExprObjC.cpp96 QualType ObjCPropertyRefExpr::getReceiverType(const ASTContext &ctx) const { in getReceiverType()
H A DComputeDependence.cpp376 ExprDependence clang::computeDependence(ObjCPropertyRefExpr *E) { in computeDependence()
H A DExpr.cpp2999 if (!isa<ObjCPropertyRefExpr>(E)) in isTemporaryObject()
3804 const ObjCPropertyRefExpr *Expr::getObjCProperty() const { in getObjCProperty()
3821 return cast<ObjCPropertyRefExpr>(E); in getObjCProperty()
/netbsd/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
H A DExtract.cpp86 if (const auto *PRE = dyn_cast<ObjCPropertyRefExpr>(Code[0])) { in initiate()
/netbsd/external/apache2/llvm/dist/clang/lib/Index/
H A DIndexBody.cpp238 const auto *PRE = dyn_cast<ObjCPropertyRefExpr>(E); in VisitObjCMessageExpr()
288 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DScopeInfo.h53 class ObjCPropertyRefExpr; variable
277 WeakObjectProfileTy(const ObjCPropertyRefExpr *RE);
/netbsd/external/apache2/llvm/dist/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp902 isa<ObjCPropertyRefExpr>(Expr) || in subscriptOperatorNeedsParens()
929 isa<ObjCPropertyRefExpr>(Expr) || in castOperatorNeedsParens()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td183 def ObjCPropertyRefExpr : StmtNode<Expr>;
/netbsd/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXCursor.cpp1662 if (auto *PropRefE = dyn_cast<ObjCPropertyRefExpr>(E)) { in clang_Cursor_isDynamicCall()
1692 if (auto *PropRefE = dyn_cast<ObjCPropertyRefExpr>(E)) { in clang_Cursor_getReceiverType()
/netbsd/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCalledOnceCheck.cpp446 bool VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp1083 auto *RefExpr = cast<ObjCPropertyRefExpr>(Syntactic); in getAccessedProperty()

12