Home
last modified time | relevance | path

Searched refs:ReceiverType (Results 1 – 12 of 12) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp1508 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 DSemaCodeComplete.cpp7610 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 DParseInit.cpp287 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 DParseObjc.cpp3062 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 DParseExpr.cpp191 ParsedType ReceiverType, in ParseAssignmentExprWithObjCMessageExprStart() argument
195 ReceiverType, ReceiverExpr); in ParseAssignmentExprWithObjCMessageExprStart()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp746 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 DRetainSummaryManager.cpp669 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 DRetainCountChecker.cpp354 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 DRetainSummaryManager.h663 QualType ReceiverType={});
681 getInstanceMethodSummary(const ObjCMessageExpr *ME, QualType ReceiverType);
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp556 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 DParser.h2034 ParsedType ReceiverType,
2038 ParsedType ReceiverType, Expr *ReceiverExpr);
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h9804 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,