Lines Matching refs:Composite2
6852 QualType Composite2 = T2; in FindCompositePointerType() local
6855 assert(!Composite1.isNull() && !Composite2.isNull()); in FindCompositePointerType()
6859 Composite2 = Context.getUnqualifiedArrayType(Composite2, Q2); in FindCompositePointerType()
6915 (Arr2 = Context.getAsArrayType(Composite2))) { in FindCompositePointerType()
6920 Composite2 = Arr2->getElementType(); in FindCompositePointerType()
6934 Composite2 = Arr2->getElementType(); in FindCompositePointerType()
6944 (Ptr2 = Composite2->getAs<PointerType>())) { in FindCompositePointerType()
6946 Composite2 = Ptr2->getPointeeType(); in FindCompositePointerType()
6953 (ObjPtr2 = Composite2->getAs<ObjCObjectPointerType>())) { in FindCompositePointerType()
6955 Composite2 = ObjPtr2->getPointeeType(); in FindCompositePointerType()
6962 (MemPtr2 = Composite2->getAs<MemberPointerType>())) { in FindCompositePointerType()
6964 Composite2 = MemPtr2->getPointeeType(); in FindCompositePointerType()
6993 Composite2->isObjCObjectPointerType()) || in FindCompositePointerType()
6995 Composite2->isVoidPointerType()))) { in FindCompositePointerType()
6997 Composite2 = Composite2->getPointeeType(); in FindCompositePointerType()
7038 if (auto *FPT2 = Composite2->getAs<FunctionProtoType>()) { in FindCompositePointerType()
7056 Composite2 = Context.getFunctionType(FPT2->getReturnType(), in FindCompositePointerType()
7064 !Context.hasSameType(Composite1, Composite2)) { in FindCompositePointerType()
7068 if (Composite1->isVoidType() && Composite2->isObjectType()) in FindCompositePointerType()
7069 Composite2 = Composite1; in FindCompositePointerType()
7070 else if (Composite2->isVoidType() && Composite1->isObjectType()) in FindCompositePointerType()
7071 Composite1 = Composite2; in FindCompositePointerType()
7079 else if (IsDerivedFrom(Loc, Composite1, Composite2)) in FindCompositePointerType()
7080 Composite1 = Composite2; in FindCompositePointerType()
7081 else if (IsDerivedFrom(Loc, Composite2, Composite1)) in FindCompositePointerType()
7082 Composite2 = Composite1; in FindCompositePointerType()
7087 if (!Context.hasSameType(Composite1, Composite2)) in FindCompositePointerType()