Lines Matching full:array2
338 const ArrayType *Array2) {
341 Array2->getElementType()))
343 if (Array1->getSizeModifier() != Array2->getSizeModifier())
345 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
441 const ConstantArrayType *Array2 = cast<ConstantArrayType>(T2);
442 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
445 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
459 const VariableArrayType *Array2 = cast<VariableArrayType>(T2);
461 Array1->getSizeExpr(), Array2->getSizeExpr()))
464 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
472 const DependentSizedArrayType *Array2 = cast<DependentSizedArrayType>(T2);
474 Array1->getSizeExpr(), Array2->getSizeExpr()))
477 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))