Home
last modified time | relevance | path

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

12

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDScopeInfo.cpp60 static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) { in getBestPropertyDecl()
93 const ObjCPropertyRefExpr *BaseProp = in getBaseInfo()
94 dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm()); in getBaseInfo()
116 const ObjCPropertyRefExpr *PropE) in WeakObjectProfileTy()
180 if (const ObjCPropertyRefExpr *RefExpr = dyn_cast<ObjCPropertyRefExpr>(E)) { in markSafeWeakUse()
HDSemaPseudoObject.cpp55 Expr *rebuildObjCPropertyRefExpr(ObjCPropertyRefExpr *refExpr) { in rebuildObjCPropertyRefExpr()
62 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()
272 ObjCPropertyRefExpr *RefExpr;
273 ObjCPropertyRefExpr *SyntacticRefExpr;
282 ObjCPropertyOpBuilder(Sema &S, ObjCPropertyRefExpr *refExpr, bool IsUnique) in ObjCPropertyOpBuilder()
556 const ObjCPropertyRefExpr *PRE) { in LookupMethodInReceiverType()
720 if (ObjCPropertyRefExpr * in rebuildAndCaptureObject()
721 refE = dyn_cast<ObjCPropertyRefExpr>(syntacticBase->IgnoreParens())) in rebuildAndCaptureObject()
[all …]
HDSemaFixItUtils.cpp82 isa<ObjCPropertyRefExpr>(Expr) || in tryToFixConversion()
HDSemaExprObjC.cpp1881 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1885 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1897 return new (Context) ObjCPropertyRefExpr( in HandleExprPropertyRefExpr()
1902 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1967 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1971 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
2123 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in ActOnClassPropertyRefExpr()
2127 return new (Context) ObjCPropertyRefExpr( in ActOnClassPropertyRefExpr()
3548 ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) { in VisitObjCPropertyRefExpr()
4041 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(castExpr)) { in CheckObjCBridgeRelatedCast()
HDSemaExprMember.cpp1517 ObjCPropertyRefExpr(PD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
1533 ObjCPropertyRefExpr(OMD, SMD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
1589 return new (S.Context) ObjCPropertyRefExpr( in LookupMemberExpr()
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
HDTransZeroOutPropsInDealloc.cpp197 ObjCPropertyRefExpr *PropRefExp = in isZeroingPropIvar()
198 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParens()); in isZeroingPropIvar()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDExprObjC.h614 class ObjCPropertyRefExpr : public Expr {
648 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t, in ObjCPropertyRefExpr() function
659 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t, in ObjCPropertyRefExpr() function
670 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() function
681 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() function
691 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, in ObjCPropertyRefExpr() function
701 explicit ObjCPropertyRefExpr(EmptyShell Empty) in ObjCPropertyRefExpr() function
799 auto Children = const_cast<ObjCPropertyRefExpr *>(this)->children(); in children()
HDStmtDataCollectors.td173 class ObjCPropertyRefExpr {
HDTextNodeDumper.h272 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node);
HDJSONNodeDumper.h293 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *OPRE);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDIvarInvalidationChecker.cpp135 void checkObjCPropertyRefExpr(const ObjCPropertyRefExpr *PA);
616 const ObjCPropertyRefExpr *PA) { in checkObjCPropertyRefExpr()
656 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) { in check()
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDExprClassification.cpp255 if (isa<ObjCPropertyRefExpr>(Op)) in ClassifyInternal()
496 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
522 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr()
630 if (const auto *Expr = dyn_cast<ObjCPropertyRefExpr>(E)) { in IsModifiable()
HDExprObjC.cpp112 QualType ObjCPropertyRefExpr::getReceiverType(const ASTContext &ctx) const { in getReceiverType()
HDExpr.cpp3104 if (!isa<ObjCPropertyRefExpr>(E)) in isTemporaryObject()
3862 const ObjCPropertyRefExpr *Expr::getObjCProperty() const { in getObjCProperty()
3879 return cast<ObjCPropertyRefExpr>(E); in getObjCProperty()
HDTextNodeDumper.cpp1012 void TextNodeDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
HDJSONNodeDumper.cpp1100 void JSONNodeDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *OPRE) { in VisitObjCPropertyRefExpr()
HDStmtProfile.cpp2031 void StmtProfiler::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *S) { in VisitObjCPropertyRefExpr()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDClangForward.h85 class ObjCPropertyRefExpr; variable
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/Extract/
HDExtract.cpp86 if (const auto *PRE = dyn_cast<ObjCPropertyRefExpr>(Code[0])) { in initiate()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Index/
HDIndexBody.cpp238 const auto *PRE = dyn_cast<ObjCPropertyRefExpr>(E); in VisitObjCMessageExpr()
288 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
HDScopeInfo.h53 class ObjCPropertyRefExpr; variable
268 WeakObjectProfileTy(const ObjCPropertyRefExpr *RE);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Edit/
HDRewriteObjCFoundationAPI.cpp902 isa<ObjCPropertyRefExpr>(Expr) || in subscriptOperatorNeedsParens()
929 isa<ObjCPropertyRefExpr>(Expr) || in castOperatorNeedsParens()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
HDStmtNodes.td179 def ObjCPropertyRefExpr : StmtNode<Expr>;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDCallEvent.cpp1089 auto *RefExpr = cast<ObjCPropertyRefExpr>(Syntactic); in getAccessedProperty()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReaderStmt.cpp1366 void ASTStmtReader::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
2967 S = new (Context) ObjCPropertyRefExpr(Empty); in ReadStmtFromStream()

12