Home
last modified time | relevance | path

Searched refs:Array1 (Results 1 – 7 of 7) sorted by relevance

/external/llvm/unittests/ADT/
DArrayRefTest.cpp39 ArrayRef<uint16_t> Array1 = makeArrayRef(Words1, 4); in TEST() local
42 ArrayRef<uint16_t> Array1c = Array1.copy(Alloc); in TEST()
44 EXPECT_TRUE(Array1.equals(Array1c)); in TEST()
45 EXPECT_NE(Array1.data(), Array1c.data()); in TEST()
/external/dbus/test/data/valid-messages/
Drecursive-types.message23 LENGTH Array1
24 START_LENGTH Array1
39 END_LENGTH Array1
/external/llvm/test/Analysis/BasicAA/
Dfeaturetest.ll15 %Array1 = alloca i32, i32 100
18 call void @external(i32* %Array1)
21 %pointer = getelementptr i32, i32* %Array1, i64 %A
/external/clang/test/SemaObjC/
Dkindof.m307 @interface Array1<T> : NSObject interface
313 @interface Array1<__kindof I1*>(extensions1) // expected-error{{expected type parameter name}} interface in extensions1
/external/clang/lib/AST/
DASTImporter.cpp396 const ArrayType *Array1, in IsArrayStructurallyEquivalent() argument
399 Array1->getElementType(), in IsArrayStructurallyEquivalent()
402 if (Array1->getSizeModifier() != Array2->getSizeModifier()) in IsArrayStructurallyEquivalent()
404 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers()) in IsArrayStructurallyEquivalent()
507 const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1); in IsStructurallyEquivalent() local
509 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize())) in IsStructurallyEquivalent()
512 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) in IsStructurallyEquivalent()
525 const VariableArrayType *Array1 = cast<VariableArrayType>(T1); in IsStructurallyEquivalent() local
528 Array1->getSizeExpr(), Array2->getSizeExpr())) in IsStructurallyEquivalent()
531 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)) in IsStructurallyEquivalent()
[all …]
/external/v8/test/cctest/
Dtypes-fuzz.h200 TypeHandle Array1(TypeHandle element) { in Array1() function
Dtest-types.cc500 TypeHandle array = T.Array1(type); in Array()
507 TypeHandle array = T.Array1(type); in Array()
516 TypeHandle array1 = T.Array1(type1); in Array()
517 TypeHandle array2 = T.Array1(type2); in Array()
939 TypeHandle type1 = T.Array1(element1); in Is2()
940 TypeHandle type2 = T.Array1(element2); in Is2()