HomeSort by relevance Sort by last modified time
    Searched refs:Array1 (Results 1 - 7 of 7) sorted by null

  /external/dbus/test/data/valid-messages/
recursive-types.message 23 LENGTH Array1
24 START_LENGTH Array1
39 END_LENGTH Array1
  /external/llvm/unittests/ADT/
ArrayRefTest.cpp 39 ArrayRef<uint16_t> Array1 = makeArrayRef(Words1, 4);
42 ArrayRef<uint16_t> Array1c = Array1.copy(Alloc);
44 EXPECT_TRUE(Array1.equals(Array1c));
45 EXPECT_NE(Array1.data(), Array1c.data());
  /frameworks/rs/api/
rs_for_each.spec 69 field: uint32_t array1Start, "Starting index in the Array1 dimension."
70 field: uint32_t array1End, "Ending index (exclusive) in the Array1 dimension."
262 summary: Index in the Array1 dimension for the specified kernel context
264 Returns the index in the Array1 dimension of the cell being processed, as specified
267 Returns 0 if the Array1 dimension is not present.
317 summary: Size of the Array1 dimension for the specified kernel context
319 Returns the size of the Array1 dimension for the specified kernel context.
322 Returns 0 if the Array1 dimension is not present.
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/otvalid/
otvgpos.c 112 FT_UInt Array1, Array2;
124 Array1 = FT_NEXT_USHORT( p );
130 otv_MarkArray_validate( table + Array1, otvalid );
  /external/v8/test/cctest/
types-fuzz.h 189 Type* Array1(Type* element) { return Type::Array(element, zone_); }
test-types.cc 432 Type* array = T.Array1(type);
439 Type* array = T.Array1(type);
448 Type* array1 = T.Array1(type1); local
449 Type* array2 = T.Array1(type2);
450 CHECK(Equal(array1, array2) == Equal(type1, type2));
    [all...]
  /external/clang/lib/AST/
ASTImporter.cpp 396 const ArrayType *Array1,
399 Array1->getElementType(),
402 if (Array1->getSizeModifier() != Array2->getSizeModifier())
404 if (Array1->getIndexTypeQualifiers() != Array2->getIndexTypeQualifiers())
507 const ConstantArrayType *Array1 = cast<ConstantArrayType>(T1);
509 if (!llvm::APInt::isSameValue(Array1->getSize(), Array2->getSize()))
512 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2))
525 const VariableArrayType *Array1 = cast<VariableArrayType>(T1);
528 Array1->getSizeExpr(), Array2->getSizeExpr()))
531 if (!IsArrayStructurallyEquivalent(Context, Array1, Array2)
    [all...]

Completed in 415 milliseconds