Searched defs:Array1 (Results 1 - 2 of 2) sorted by relevance

/external/llvm/unittests/ADT/
H A DArrayRefTest.cpp39 ArrayRef<uint16_t> Array1 = makeArrayRef(Words1, 4); local
42 ArrayRef<uint16_t> Array1c = Array1.copy(Alloc);
44 EXPECT_TRUE(Array1.equals(Array1c));
45 EXPECT_NE(Array1.data(), Array1c.data());
/external/clang/lib/AST/
H A DASTImporter.cpp451 const ArrayType *Array1,
454 Array1->getElementType(),
457 if (Array1->getSizeModifier() != Array2->getSizeModifier())
459 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
562 const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1); local
564 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
567 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
580 const VariableArrayType *Array1 = cast<VariableArrayType>(T1); local
583 Array1->getSizeExpr(), Array2->getSizeExpr()))
586 if (!IsArrayStructurallyEquivalent(Context, Array1, Array
450 IsArrayStructurallyEquivalent(StructuralEquivalenceContext &Context, const ArrayType *Array1, const ArrayType *Array2) argument
593 const DependentSizedArrayType *Array1 = cast<DependentSizedArrayType>(T1); local
[all...]

Completed in 75 milliseconds