Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExprObjC.cpp1453 QualType ReceiverType, in getBaseMessageSendResultType() argument
1459 return Method->getSendResultType(ReceiverType); in getBaseMessageSendResultType()
1468 Method->getSendResultType(ReceiverType)->getNullability()) { in getBaseMessageSendResultType()
1488 Method->getSendResultType(ReceiverType)); in getBaseMessageSendResultType()
1502 if (ReceiverType->getAsObjCInterfaceType()) in getBaseMessageSendResultType()
1503 return transferNullability(Context.getObjCObjectPointerType(ReceiverType)); in getBaseMessageSendResultType()
1506 if (ReceiverType->isObjCClassType() || in getBaseMessageSendResultType()
1507 ReceiverType->isObjCQualifiedClassType()) in getBaseMessageSendResultType()
1509 Method->getSendResultType(ReceiverType)); in getBaseMessageSendResultType()
1514 return transferNullability(ReceiverType); in getBaseMessageSendResultType()
[all …]
H A DSemaCodeComplete.cpp8151 QualType ReceiverType = RecExpr in CodeCompleteObjCInstanceMessage() local
8160 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) { in CodeCompleteObjCInstanceMessage()
8162 if (ReceiverType->isObjCClassType()) in CodeCompleteObjCInstanceMessage()
8167 ReceiverType = in CodeCompleteObjCInstanceMessage()
8174 ReceiverType = RecExpr->getType(); in CodeCompleteObjCInstanceMessage()
8183 ReceiverType, SelIdents)); in CodeCompleteObjCInstanceMessage()
8206 if (ReceiverType->isObjCClassType() || in CodeCompleteObjCInstanceMessage()
8207 ReceiverType->isObjCQualifiedClassType()) { in CodeCompleteObjCInstanceMessage()
8216 ReceiverType->getAsObjCQualifiedIdType()) { in CodeCompleteObjCInstanceMessage()
8224 ReceiverType->getAsObjCInterfacePointerType()) { in CodeCompleteObjCInstanceMessage()
[all …]
/openbsd-src/gnu/llvm/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.cpp3117 ParsedType ReceiverType; in ParseObjCMessageExpression() local
3121 ReceiverType)) { in ParseObjCMessageExpression()
3127 if (!ReceiverType) { in ParseObjCMessageExpression()
3138 = parseObjCTypeArgsAndProtocolQualifiers(NameLoc, ReceiverType, in ParseObjCMessageExpression()
3146 ReceiverType = NewReceiverType.get(); in ParseObjCMessageExpression()
3150 ReceiverType, nullptr); in ParseObjCMessageExpression()
3210 ParsedType ReceiverType, in ParseObjCMessageExpressionBody() argument
3219 else if (ReceiverType) in ParseObjCMessageExpressionBody()
3220 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, in ParseObjCMessageExpressionBody()
3258 else if (ReceiverType) in ParseObjCMessageExpressionBody()
[all …]
H A DParseExpr.cpp192 ParsedType ReceiverType, in ParseAssignmentExprWithObjCMessageExprStart() argument
196 ReceiverType, ReceiverExpr); in ParseAssignmentExprWithObjCMessageExprStart()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp744 QualType ReceiverType = MessageExpr->getReceiverType(); in findMethodDecl() local
746 ReceiverType->getAs<ObjCObjectPointerType>(); in findMethodDecl()
755 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType() || in findMethodDecl()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp355 QualType ReceiverType) { in getSummary() argument
361 isReceiverUnconsumedSelf(Call), ReceiverType); in getSummary()
369 QualType ReceiverType; in checkPostCall() local
375 ReceiverType = T->getType(); in checkPostCall()
379 const RetainSummary *Summ = getSummary(Summaries, Call, ReceiverType); in checkPostCall()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DRetainSummaryManager.h665 QualType ReceiverType={});
683 getInstanceMethodSummary(const ObjCMessageExpr *ME, QualType ReceiverType);
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGObjC.cpp558 QualType ReceiverType = SubOME->getClassReceiver(); in tryEmitSpecializedAllocInit() local
559 const ObjCObjectType *ObjTy = ReceiverType->castAs<ObjCObjectType>(); in tryEmitSpecializedAllocInit()
612 QualType ReceiverType; in EmitObjCMessageExpr() local
616 ReceiverType = E->getInstanceReceiver()->getType(); in EmitObjCMessageExpr()
617 isClassMessage = ReceiverType->isObjCClassType(); in EmitObjCMessageExpr()
628 ReceiverType = E->getClassReceiver(); in EmitObjCMessageExpr()
629 OID = ReceiverType->castAs<ObjCObjectType>()->getInterface(); in EmitObjCMessageExpr()
637 ReceiverType = E->getSuperType(); in EmitObjCMessageExpr()
643 ReceiverType = E->getSuperType(); in EmitObjCMessageExpr()
659 Receiver = EmitARCRetainAutorelease(ReceiverType, Receiver); in EmitObjCMessageExpr()
/openbsd-src/gnu/llvm/clang/include/clang/Parse/
H A DParser.h2071 ParsedType ReceiverType,
2075 ParsedType ReceiverType, Expr *ReceiverExpr);
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h10453 ParsedType &ReceiverType);
10463 QualType ReceiverType,
10473 ExprResult BuildClassMessageImplicit(QualType ReceiverType,
10489 QualType ReceiverType,
10500 QualType ReceiverType,
12764 bool CheckMessageArgumentTypes(const Expr *Receiver, QualType ReceiverType,
12775 QualType getMessageSendResultType(const Expr *Receiver, QualType ReceiverType,