Lines Matching refs:Composite1

7212   QualType Composite1 = T1;  in FindCompositePointerType()  local
7216 assert(!Composite1.isNull() && !Composite2.isNull()); in FindCompositePointerType()
7219 Composite1 = Context.getUnqualifiedArrayType(Composite1, Q1); in FindCompositePointerType()
7275 if ((Arr1 = Context.getAsArrayType(Composite1)) && in FindCompositePointerType()
7280 Composite1 = Arr1->getElementType(); in FindCompositePointerType()
7294 Composite1 = Arr1->getElementType(); in FindCompositePointerType()
7304 if ((Ptr1 = Composite1->getAs<PointerType>()) && in FindCompositePointerType()
7306 Composite1 = Ptr1->getPointeeType(); in FindCompositePointerType()
7313 if ((ObjPtr1 = Composite1->getAs<ObjCObjectPointerType>()) && in FindCompositePointerType()
7315 Composite1 = ObjPtr1->getPointeeType(); in FindCompositePointerType()
7322 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) && in FindCompositePointerType()
7324 Composite1 = MemPtr1->getPointeeType(); in FindCompositePointerType()
7353 if (Steps.empty() && ((Composite1->isVoidPointerType() && in FindCompositePointerType()
7355 (Composite1->isObjCObjectPointerType() && in FindCompositePointerType()
7357 Composite1 = Composite1->getPointeeType(); in FindCompositePointerType()
7398 if (auto *FPT1 = Composite1->getAs<FunctionProtoType>()) { in FindCompositePointerType()
7415 Composite1 = Context.getFunctionType(FPT1->getReturnType(), in FindCompositePointerType()
7425 !Context.hasSameType(Composite1, Composite2)) { in FindCompositePointerType()
7429 if (Composite1->isVoidType() && Composite2->isObjectType()) in FindCompositePointerType()
7430 Composite2 = Composite1; in FindCompositePointerType()
7431 else if (Composite2->isVoidType() && Composite1->isObjectType()) in FindCompositePointerType()
7432 Composite1 = Composite2; in FindCompositePointerType()
7440 else if (IsDerivedFrom(Loc, Composite1, Composite2)) in FindCompositePointerType()
7441 Composite1 = Composite2; in FindCompositePointerType()
7442 else if (IsDerivedFrom(Loc, Composite2, Composite1)) in FindCompositePointerType()
7443 Composite2 = Composite1; in FindCompositePointerType()
7448 if (!Context.hasSameType(Composite1, Composite2)) in FindCompositePointerType()
7457 QualType Composite = Context.getCommonSugaredType(Composite1, Composite2); in FindCompositePointerType()