Searched refs:Array2 (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DASTStructuralEquivalence.cpp366 const ArrayType *Array2) {
368 Array2->getElementType()))
370 if (Array1->getSizeModifier() != Array2->getSizeModifier())
372 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
532 const auto *Array2 = cast<ConstantArrayType>(T2); local
533 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
536 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
549 const auto *Array2 = cast<VariableArrayType>(T2); local
551 Array2->getSizeExpr()))
554 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
364 IsArrayStructurallyEquivalent(StructuralEquivalenceContext &Context, const ArrayType *Array1, const ArrayType *Array2) argument
562 const auto *Array2 = cast<DependentSizedArrayType>(T2); local
[all...]
H A DExpr.cpp4037 const auto *Array2 = dyn_cast<ArraySubscriptExpr>(E2); local
4038 if (Array1 && Array2) {
4039 if (!isSameComparisonOperand(Array1->getBase(), Array2->getBase()))
4043 auto Idx2 = Array2->getIdx();

Completed in 206 milliseconds