| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprObjC.cpp | 1508 if (ReceiverType->isObjCClassType() || in getBaseMessageSendResultType() 1516 return transferNullability(ReceiverType); in getBaseMessageSendResultType() 2290 ReceiverType = nullptr; in getObjCMessageKind() 2440 if (!ReceiverType.isNull()) in BuildClassMessageImplicit() 2630 if (ReceiverType->isDependentType()) { in BuildClassMessage() 2647 << ReceiverType; in BuildClassMessage() 2769 if (ReceiverType.isNull()) in ActOnClassMessage() 2901 ReceiverType = Receiver->getType(); in BuildInstanceMessage() 2915 if (ReceiverType->isPointerType()) { in BuildInstanceMessage() 2926 ReceiverType = Receiver->getType(); in BuildInstanceMessage() [all …]
|
| H A D | SemaCodeComplete.cpp | 7610 QualType ReceiverType = RecExpr in CodeCompleteObjCInstanceMessage() local 7619 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) { in CodeCompleteObjCInstanceMessage() 7621 if (ReceiverType->isObjCClassType()) in CodeCompleteObjCInstanceMessage() 7626 ReceiverType = in CodeCompleteObjCInstanceMessage() 7633 ReceiverType = RecExpr->getType(); in CodeCompleteObjCInstanceMessage() 7642 ReceiverType, SelIdents)); in CodeCompleteObjCInstanceMessage() 7665 if (ReceiverType->isObjCClassType() || in CodeCompleteObjCInstanceMessage() 7666 ReceiverType->isObjCQualifiedClassType()) { in CodeCompleteObjCInstanceMessage() 7675 ReceiverType->getAsObjCQualifiedIdType()) { in CodeCompleteObjCInstanceMessage() 7683 ReceiverType->getAsObjCInterfacePointerType()) { in CodeCompleteObjCInstanceMessage() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseInit.cpp | 287 ParsedType ReceiverType; in ParseInitializerWithPotentialDesignator() local 293 NextToken().is(tok::period), ReceiverType)) { in ParseInitializerWithPotentialDesignator() 302 if (!ReceiverType) { in ParseInitializerWithPotentialDesignator() 311 = parseObjCTypeArgsAndProtocolQualifiers(IILoc, ReceiverType, in ParseInitializerWithPotentialDesignator() 319 ReceiverType = NewReceiverType.get(); in ParseInitializerWithPotentialDesignator() 324 ReceiverType, in ParseInitializerWithPotentialDesignator()
|
| H A D | ParseObjc.cpp | 3062 ParsedType ReceiverType; in ParseObjCMessageExpression() local 3066 ReceiverType)) { in ParseObjCMessageExpression() 3072 if (!ReceiverType) { in ParseObjCMessageExpression() 3091 ReceiverType = NewReceiverType.get(); in ParseObjCMessageExpression() 3095 ReceiverType, nullptr); in ParseObjCMessageExpression() 3155 ParsedType ReceiverType, in ParseObjCMessageExpressionBody() argument 3164 else if (ReceiverType) in ParseObjCMessageExpressionBody() 3203 else if (ReceiverType) in ParseObjCMessageExpressionBody() 3241 else if (ReceiverType) in ParseObjCMessageExpressionBody() 3312 else if (ReceiverType) in ParseObjCMessageExpressionBody() [all …]
|
| H A D | ParseExpr.cpp | 191 ParsedType ReceiverType, in ParseAssignmentExprWithObjCMessageExprStart() argument 195 ReceiverType, ReceiverExpr); in ParseAssignmentExprWithObjCMessageExprStart()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DynamicTypePropagation.cpp | 746 QualType ReceiverType = MessageExpr->getReceiverType(); in findMethodDecl() local 748 ReceiverType->getAs<ObjCObjectPointerType>(); in findMethodDecl() 757 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType() || in findMethodDecl()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | RetainSummaryManager.cpp | 669 QualType ReceiverType) { in getSummary() argument 688 Summ = getInstanceMethodSummary(ME, ReceiverType); in getSummary() 1133 QualType ReceiverType) { in getInstanceMethodSummary() argument 1138 if (!ReceiverType.isNull()) in getInstanceMethodSummary() 1139 if (const auto *PT = ReceiverType->getAs<ObjCObjectPointerType>()) in getInstanceMethodSummary()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.cpp | 354 QualType ReceiverType) { in getSummary() argument 360 isReceiverUnconsumedSelf(Call), ReceiverType); in getSummary() 368 QualType ReceiverType; in checkPostCall() local 374 ReceiverType = T->getType(); in checkPostCall() 378 const RetainSummary *Summ = getSummary(Summaries, Call, ReceiverType); in checkPostCall()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | RetainSummaryManager.h | 663 QualType ReceiverType={}); 681 getInstanceMethodSummary(const ObjCMessageExpr *ME, QualType ReceiverType);
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 556 QualType ReceiverType = SubOME->getClassReceiver(); in tryEmitSpecializedAllocInit() local 557 const ObjCObjectType *ObjTy = ReceiverType->castAs<ObjCObjectType>(); in tryEmitSpecializedAllocInit() 610 QualType ReceiverType; in EmitObjCMessageExpr() local 614 ReceiverType = E->getInstanceReceiver()->getType(); in EmitObjCMessageExpr() 615 isClassMessage = ReceiverType->isObjCClassType(); in EmitObjCMessageExpr() 626 ReceiverType = E->getClassReceiver(); in EmitObjCMessageExpr() 627 OID = ReceiverType->castAs<ObjCObjectType>()->getInterface(); in EmitObjCMessageExpr() 635 ReceiverType = E->getSuperType(); in EmitObjCMessageExpr() 641 ReceiverType = E->getSuperType(); in EmitObjCMessageExpr() 657 Receiver = EmitARCRetainAutorelease(ReceiverType, Receiver); in EmitObjCMessageExpr()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 2034 ParsedType ReceiverType, 2038 ParsedType ReceiverType, Expr *ReceiverExpr);
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 9804 ParsedType &ReceiverType); 9814 QualType ReceiverType, 9824 ExprResult BuildClassMessageImplicit(QualType ReceiverType, 9840 QualType ReceiverType, 9851 QualType ReceiverType, 11873 bool CheckMessageArgumentTypes(const Expr *Receiver, QualType ReceiverType, 11884 QualType getMessageSendResultType(const Expr *Receiver, QualType ReceiverType,
|