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

/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprObjC.cpp1455 QualType ReceiverType,
1461 return Method->getSendResultType(ReceiverType);
1469 if (auto nullability = Method->getSendResultType(ReceiverType)
1490 Method->getSendResultType(ReceiverType));
1504 if (ReceiverType->getAsObjCInterfaceType())
1505 return transferNullability(Context.getObjCObjectPointerType(ReceiverType));
1508 if (ReceiverType->isObjCClassType() ||
1509 ReceiverType->isObjCQualifiedClassType())
1511 Method->getSendResultType(ReceiverType));
1516 return transferNullability(ReceiverType);
1454 getBaseMessageSendResultType(Sema &S, QualType ReceiverType, ObjCMethodDecl *Method, bool isClassMessage, bool isSuperMessage) argument
1519 getMessageSendResultType(const Expr *Receiver, QualType ReceiverType, ObjCMethodDecl *Method, bool isClassMessage, bool isSuperMessage) argument
1712 CheckMessageArgumentTypes( const Expr *Receiver, QualType ReceiverType, MultiExprArg Args, Selector Sel, ArrayRef<SourceLocation> SelectorLocs, ObjCMethodDecl *Method, bool isClassMessage, bool isSuperMessage, SourceLocation lbrac, SourceLocation rbrac, SourceRange RecRange, QualType &ReturnType, ExprValueKind &VK) argument
2284 getObjCMessageKind(Scope *S, IdentifierInfo *Name, SourceLocation NameLoc, bool IsSuper, bool HasTrailingDot, ParsedType &ReceiverType) argument
2433 BuildClassMessageImplicit(QualType ReceiverType, bool isSuperReceiver, SourceLocation Loc, Selector Sel, ObjCMethodDecl *Method, MultiExprArg Args) argument
2493 checkFoundationAPI(Sema &S, SourceLocation Loc, const ObjCMethodDecl *Method, ArrayRef<Expr *> Args, QualType ReceiverType, bool IsClassObjectCall) argument
2606 BuildClassMessage(TypeSourceInfo *ReceiverTypeInfo, QualType ReceiverType, SourceLocation SuperLoc, Selector Sel, ObjCMethodDecl *Method, SourceLocation LBracLoc, ArrayRef<SourceLocation> SelectorLocs, SourceLocation RBracLoc, MultiExprArg ArgsIn, bool isImplicit) argument
2768 QualType ReceiverType = GetTypeFromParser(Receiver, &ReceiverTypeInfo); local
2781 BuildInstanceMessageImplicit(Expr *Receiver, QualType ReceiverType, SourceLocation Loc, Selector Sel, ObjCMethodDecl *Method, MultiExprArg Args) argument
2839 BuildInstanceMessage(Expr *Receiver, QualType ReceiverType, SourceLocation SuperLoc, Selector Sel, ObjCMethodDecl *Method, SourceLocation LBracLoc, ArrayRef<SourceLocation> SelectorLocs, SourceLocation RBracLoc, MultiExprArg ArgsIn, bool isImplicit) argument
[all...]
H A DSemaCodeComplete.cpp7607 QualType ReceiverType = RecExpr local
7616 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) {
7618 if (ReceiverType->isObjCClassType())
7623 ReceiverType =
7630 ReceiverType = RecExpr->getType();
7639 ReceiverType, SelIdents));
7662 if (ReceiverType->isObjCClassType() ||
7663 ReceiverType->isObjCQualifiedClassType()) {
7672 ReceiverType
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseInit.cpp287 ParsedType ReceiverType; local
293 NextToken().is(tok::period), ReceiverType)) {
302 if (!ReceiverType) {
311 = parseObjCTypeArgsAndProtocolQualifiers(IILoc, ReceiverType,
319 ReceiverType = NewReceiverType.get();
324 ReceiverType,
H A DParseObjc.cpp3062 ParsedType ReceiverType; local
3066 ReceiverType)) {
3072 if (!ReceiverType) {
3083 = parseObjCTypeArgsAndProtocolQualifiers(NameLoc, ReceiverType,
3091 ReceiverType = NewReceiverType.get();
3095 ReceiverType, nullptr);
3119 /// target is represented by \p SuperLoc, \p ReceiverType, or \p
3128 /// \param ReceiverType If this is a class message, the type of the
3155 ParsedType ReceiverType,
3164 else if (ReceiverType)
3153 ParseObjCMessageExpressionBody(SourceLocation LBracLoc, SourceLocation SuperLoc, ParsedType ReceiverType, Expr *ReceiverExpr) argument
3165 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, None, local
3204 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, local
3242 Actions.CodeCompleteObjCClassMessage(getCurScope(), ReceiverType, local
[all...]
H A DParseExpr.cpp191 ParsedType ReceiverType,
195 ReceiverType, ReceiverExpr);
189 ParseAssignmentExprWithObjCMessageExprStart(SourceLocation LBracLoc, SourceLocation SuperLoc, ParsedType ReceiverType, Expr *ReceiverExpr) argument
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp746 QualType ReceiverType = MessageExpr->getReceiverType(); local
748 ReceiverType->getAs<ObjCObjectPointerType>();
757 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType() ||
/netbsd-current/external/apache2/llvm/dist/clang/lib/Analysis/
H A DRetainSummaryManager.cpp661 QualType ReceiverType) {
680 Summ = getInstanceMethodSummary(ME, ReceiverType);
1125 QualType ReceiverType) {
1130 if (!ReceiverType.isNull())
1131 if (const auto *PT = ReceiverType->getAs<ObjCObjectPointerType>())
658 getSummary(AnyCall C, bool HasNonZeroCallbackArg, bool IsReceiverUnconsumedSelf, QualType ReceiverType) argument
1123 getInstanceMethodSummary( const ObjCMessageExpr *ME, QualType ReceiverType) argument
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp354 QualType ReceiverType) {
360 isReceiverUnconsumedSelf(Call), ReceiverType);
368 QualType ReceiverType; local
374 ReceiverType = T->getType();
378 const RetainSummary *Summ = getSummary(Summaries, Call, ReceiverType);
352 getSummary(RetainSummaryManager &Summaries, const CallEvent &Call, QualType ReceiverType) argument
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DRetainSummaryManager.h663 QualType ReceiverType={});
681 getInstanceMethodSummary(const ObjCMessageExpr *ME, QualType ReceiverType);
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjC.cpp556 QualType ReceiverType = SubOME->getClassReceiver(); local
557 const ObjCObjectType *ObjTy = ReceiverType->castAs<ObjCObjectType>();
610 QualType ReceiverType; local
614 ReceiverType = E->getInstanceReceiver()->getType();
615 isClassMessage = ReceiverType->isObjCClassType();
626 ReceiverType = E->getClassReceiver();
627 OID = ReceiverType->castAs<ObjCObjectType>()->getInterface();
635 ReceiverType = E->getSuperType();
641 ReceiverType = E->getSuperType();
657 Receiver = EmitARCRetainAutorelease(ReceiverType, Receive
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h2032 ParsedType ReceiverType,
2036 ParsedType ReceiverType, Expr *ReceiverExpr);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h9735 ParsedType &ReceiverType);
9745 QualType ReceiverType,
9755 ExprResult BuildClassMessageImplicit(QualType ReceiverType,
9771 QualType ReceiverType,
9782 QualType ReceiverType,
11772 bool CheckMessageArgumentTypes(const Expr *Receiver, QualType ReceiverType,
11783 QualType getMessageSendResultType(const Expr *Receiver, QualType ReceiverType,

Completed in 483 milliseconds