HomeSort by: relevance | last modified time | path
    Searched defs:ReceiverType (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseInit.cpp 287 ParsedType ReceiverType;
293 NextToken().is(tok::period), ReceiverType)) {
302 if (!ReceiverType) {
311 = parseObjCTypeArgsAndProtocolQualifiers(IILoc, ReceiverType,
319 ReceiverType = NewReceiverType.get();
324 ReceiverType,
ParseObjc.cpp 3062 ParsedType ReceiverType;
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)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 746 QualType ReceiverType = MessageExpr->getReceiverType();
748 ReceiverType->getAs<ObjCObjectPointerType>();
757 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType() ||
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountChecker.cpp 354 QualType ReceiverType) {
360 isReceiverUnconsumedSelf(Call), ReceiverType);
368 QualType ReceiverType;
374 ReceiverType = T->getType();
378 const RetainSummary *Summ = getSummary(Summaries, Call, ReceiverType);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjC.cpp 556 QualType ReceiverType = SubOME->getClassReceiver();
557 const ObjCObjectType *ObjTy = ReceiverType->castAs<ObjCObjectType>();
610 QualType ReceiverType;
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, Receiver)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 1455 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);
    [all...]
SemaCodeComplete.cpp 7607 QualType ReceiverType = RecExpr
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->getAsObjCQualifiedIdType())
    [all...]

Completed in 57 milliseconds