Lines Matching refs:Composite1
6526 QualType Composite1 = T1; in FindCompositePointerType() local
6530 assert(!Composite1.isNull() && !Composite2.isNull()); in FindCompositePointerType()
6533 Composite1 = Context.getUnqualifiedArrayType(Composite1, Q1); in FindCompositePointerType()
6581 if ((Ptr1 = Composite1->getAs<PointerType>()) && in FindCompositePointerType()
6583 Composite1 = Ptr1->getPointeeType(); in FindCompositePointerType()
6590 if ((ObjPtr1 = Composite1->getAs<ObjCObjectPointerType>()) && in FindCompositePointerType()
6592 Composite1 = ObjPtr1->getPointeeType(); in FindCompositePointerType()
6599 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) && in FindCompositePointerType()
6601 Composite1 = MemPtr1->getPointeeType(); in FindCompositePointerType()
6630 if (Steps.empty() && ((Composite1->isVoidPointerType() && in FindCompositePointerType()
6632 (Composite1->isObjCObjectPointerType() && in FindCompositePointerType()
6634 Composite1 = Composite1->getPointeeType(); in FindCompositePointerType()
6677 if (auto *FPT1 = Composite1->getAs<FunctionProtoType>()) { in FindCompositePointerType()
6694 Composite1 = Context.getFunctionType(FPT1->getReturnType(), in FindCompositePointerType()
6704 !Context.hasSameType(Composite1, Composite2)) { in FindCompositePointerType()
6708 if (Composite1->isVoidType() && Composite2->isObjectType()) in FindCompositePointerType()
6709 Composite2 = Composite1; in FindCompositePointerType()
6710 else if (Composite2->isVoidType() && Composite1->isObjectType()) in FindCompositePointerType()
6711 Composite1 = Composite2; in FindCompositePointerType()
6719 else if (IsDerivedFrom(Loc, Composite1, Composite2)) in FindCompositePointerType()
6720 Composite1 = Composite2; in FindCompositePointerType()
6721 else if (IsDerivedFrom(Loc, Composite2, Composite1)) in FindCompositePointerType()
6722 Composite2 = Composite1; in FindCompositePointerType()
6727 if (!Context.hasSameType(Composite1, Composite2)) in FindCompositePointerType()
6736 QualType Composite = Composite1; in FindCompositePointerType()