| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | ScopeInfo.cpp | 61 static const NamedDecl *getBestPropertyDecl(const ObjCPropertyRefExpr *PropE) { in getBestPropertyDecl() 94 const ObjCPropertyRefExpr *BaseProp = in getBaseInfo() 95 dyn_cast<ObjCPropertyRefExpr>(POE->getSyntacticForm()); in getBaseInfo() 132 const ObjCPropertyRefExpr *PropE) in WeakObjectProfileTy() 196 if (const ObjCPropertyRefExpr *RefExpr = dyn_cast<ObjCPropertyRefExpr>(E)) { in markSafeWeakUse()
|
| H A D | SemaPseudoObject.cpp | 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() 274 ObjCPropertyRefExpr *RefExpr; 275 ObjCPropertyRefExpr *SyntacticRefExpr; 722 if (ObjCPropertyRefExpr * in rebuildAndCaptureObject() 1539 if (ObjCPropertyRefExpr *refExpr in checkPseudoObjectRValue() 1540 = dyn_cast<ObjCPropertyRefExpr>(opaqueRef)) { in checkPseudoObjectRValue() 1571 if (ObjCPropertyRefExpr *refExpr in checkPseudoObjectIncDec() 1572 = dyn_cast<ObjCPropertyRefExpr>(opaqueRef)) { in checkPseudoObjectIncDec() [all …]
|
| H A D | SemaFixItUtils.cpp | 83 isa<ObjCPropertyRefExpr>(Expr) || in tryToFixConversion()
|
| H A D | SemaExprObjC.cpp | 1829 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 1833 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 1845 return new (Context) ObjCPropertyRefExpr( in HandleExprPropertyRefExpr() 1850 ObjCPropertyRefExpr(PD, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 1915 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 1919 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 2072 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in ActOnClassPropertyRefExpr() 2076 return new (Context) ObjCPropertyRefExpr( in ActOnClassPropertyRefExpr() 3474 ACCResult VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *e) { in VisitObjCPropertyRefExpr() 3967 if (ObjCPropertyRefExpr *PRE = dyn_cast<ObjCPropertyRefExpr>(castExpr)) { in CheckObjCBridgeRelatedCast()
|
| H A D | SemaExprMember.cpp | 1488 ObjCPropertyRefExpr(PD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr() 1504 ObjCPropertyRefExpr(OMD, SMD, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr() 1560 return new (S.Context) ObjCPropertyRefExpr( in LookupMemberExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/ |
| H A D | TransZeroOutPropsInDealloc.cpp | 198 ObjCPropertyRefExpr *PropRefExp = in isZeroingPropIvar() 199 dyn_cast<ObjCPropertyRefExpr>(BO->getLHS()->IgnoreParens()); in isZeroingPropIvar()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IvarInvalidationChecker.cpp | 136 void checkObjCPropertyRefExpr(const ObjCPropertyRefExpr *PA); 617 const ObjCPropertyRefExpr *PA) { in checkObjCPropertyRefExpr() 657 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) { in check()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | ExprObjC.h | 577 class ObjCPropertyRefExpr : public Expr { 611 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t, 622 ObjCPropertyRefExpr(ObjCPropertyDecl *PD, QualType t, 633 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 644 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 654 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 664 explicit ObjCPropertyRefExpr(EmptyShell Empty)
|
| H A D | StmtDataCollectors.td | 173 class ObjCPropertyRefExpr {
|
| H A D | TextNodeDumper.h | 267 void VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node);
|
| H A D | Expr.h | 49 class ObjCPropertyRefExpr; variable 459 const ObjCPropertyRefExpr *getObjCProperty() const;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | ExprClassification.cpp | 253 if (isa<ObjCPropertyRefExpr>(Op)) in ClassifyInternal() 489 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr() 515 if (isa<ObjCPropertyRefExpr>(Base)) in ClassifyMemberExpr() 623 if (const auto *Expr = dyn_cast<ObjCPropertyRefExpr>(E)) { in IsModifiable()
|
| H A D | ExprObjC.cpp | 113 QualType ObjCPropertyRefExpr::getReceiverType(const ASTContext &ctx) const { in getReceiverType()
|
| H A D | TextNodeDumper.cpp | 956 void TextNodeDumper::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
|
| H A D | Expr.cpp | 2809 if (!isa<ObjCPropertyRefExpr>(E)) in isTemporaryObject() 3557 const ObjCPropertyRefExpr *Expr::getObjCProperty() const { in getObjCProperty() 3574 return cast<ObjCPropertyRefExpr>(E); in getObjCProperty()
|
| H A D | StmtProfile.cpp | 1913 void StmtProfiler::VisitObjCPropertyRefExpr(const ObjCPropertyRefExpr *S) { in VisitObjCPropertyRefExpr()
|
| H A D | StmtPrinter.cpp | 970 void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) { in VisitObjCPropertyRefExpr()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | ClangForward.h | 87 class ObjCPropertyRefExpr; variable
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/Refactoring/Extract/ |
| H A D | Extract.cpp | 87 if (const auto *PRE = dyn_cast<ObjCPropertyRefExpr>(Code[0])) { in initiate()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Index/ |
| H A D | IndexBody.cpp | 239 const auto *PRE = dyn_cast<ObjCPropertyRefExpr>(E); in VisitObjCMessageExpr() 289 bool VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 52 class ObjCPropertyRefExpr; variable 267 WeakObjectProfileTy(const ObjCPropertyRefExpr *RE);
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 171 def ObjCPropertyRefExpr : DStmt<Expr>;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 903 isa<ObjCPropertyRefExpr>(Expr) || in subscriptOperatorNeedsParens() 930 isa<ObjCPropertyRefExpr>(Expr) || in castOperatorNeedsParens()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | CallEvent.cpp | 1071 auto *RefExpr = cast<ObjCPropertyRefExpr>(Syntactic); in getAccessedProperty()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1151 void ASTStmtReader::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { in VisitObjCPropertyRefExpr() 2718 S = new (Context) ObjCPropertyRefExpr(Empty); in ReadStmtFromStream()
|