HomeSort by relevance Sort by last modified time
    Searched refs:ArrayType (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/eigen/test/
array.cpp 12 template<typename ArrayType> void array(const ArrayType& m)
14 typedef typename ArrayType::Index Index;
15 typedef typename ArrayType::Scalar Scalar;
16 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType;
17 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType;
22 ArrayType m1 = ArrayType::Random(rows, cols),
23 m2 = ArrayType::Random(rows, cols),
34 VERIFY_IS_APPROX(m1 + s1, ArrayType::Constant(rows,cols,s1) + m1)
    [all...]
vectorwiseop.cpp 14 template<typename ArrayType> void vectorwiseop_array(const ArrayType& m)
16 typedef typename ArrayType::Index Index;
17 typedef typename ArrayType::Scalar Scalar;
18 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType;
19 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType;
26 ArrayType m1 = ArrayType::Random(rows, cols),
109 if(ArrayType::RowsAtCompileTime>2 || ArrayType::RowsAtCompileTime==Dynamic
    [all...]
  /external/clang/test/Index/
print-type.c 9 typedef int ArrayType[5];
43 // CHECK: TypedefDecl=ArrayType:9:13 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
print-type.cpp 26 typedef int ArrayType[5];
96 // CHECK: TypedefDecl=ArrayType:26:15 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
  /external/eigen/Eigen/src/Core/
NumTraits.h 127 typedef Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> ArrayType;
132 typedef ArrayType & Nested;
139 ReadCost = ArrayType::SizeAtCompileTime==Dynamic ? Dynamic : ArrayType::SizeAtCompileTime * NumTraits<Scalar>::ReadCost,
140 AddCost = ArrayType::SizeAtCompileTime==Dynamic ? Dynamic : ArrayType::SizeAtCompileTime * NumTraits<Scalar>::AddCost,
141 MulCost = ArrayType::SizeAtCompileTime==Dynamic ? Dynamic : ArrayType::SizeAtCompileTime * NumTraits<Scalar>::MulCost
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeArray.h 25 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::ArrayType)
  /external/clang/lib/CodeGen/
CGVTT.cpp 48 llvm::ArrayType *ArrayType =
49 llvm::ArrayType::get(Int8PtrTy, Builder.getVTTComponents().size());
90 llvm::Constant *Init = llvm::ConstantArray::get(ArrayType, VTTComponents);
118 llvm::ArrayType *ArrayType =
119 llvm::ArrayType::get(CGM.Int8PtrTy, Builder.getVTTComponents().size());
122 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
CGExprConstant.cpp 238 assert(isa<llvm::ArrayType>(LastElt->getType()) &&
240 llvm::ArrayType *AT = cast<llvm::ArrayType>(LastElt->getType());
310 Ty = llvm::ArrayType::get(Ty, PadSize.getQuantity());
346 Ty = llvm::ArrayType::get(Ty, NumChars.getQuantity());
666 Ty = llvm::ArrayType::get(Ty, NumPadBytes);
768 llvm::ArrayType *AType =
769 cast<llvm::ArrayType>(ConvertType(ILE->getType()));
846 llvm::ArrayType *AType = cast<llvm::ArrayType>(ConvertType(ExprType))
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationTypeUtil.java 25 import javax.lang.model.type.ArrayType;
77 final ArrayType arrayType = (ArrayType) typeMirror;
78 final String componentType = getDescription(arrayType.getComponentType());
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
NewInstanceDebuggee.java 26 package org.apache.harmony.jpda.tests.jdwp.ArrayType;
33 * exercises ArrayType.NewInstance command.
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 36 ArrayType *ATy = cast<ArrayType>(GVCtor->getType()->getElementType());
64 ArrayType *AT = ArrayType::get(EltTy, CurrentCtors.size());
CtorUtils.cpp 39 ArrayType *ATy =
40 ArrayType::get(OldCA->getType()->getElementType(), CAList.size());
  /system/tools/aidl/
type_cpp.h 52 const Type* ArrayType() const override { return array_type_.get(); }
90 class ArrayType : public Type {
92 ArrayType(int kind, // from ValidatableType
108 virtual ~ArrayType() = default;
type_cpp.cpp 212 class NullableParcelableArrayType : public ArrayType {
216 : ArrayType(ValidatableType::KIND_PARCELABLE,
232 class ParcelableArrayType : public ArrayType {
236 : ArrayType(ValidatableType::KIND_PARCELABLE,
437 new ArrayType(ValidatableType::KIND_BUILT_IN, "java.lang", "String[]",
442 Type* string_array_type = new ArrayType(ValidatableType::KIND_BUILT_IN,
466 Type* nullable_cpp_utf8_string_array = new ArrayType(
472 Type* cpp_utf8_string_array = new ArrayType(
500 Type* fd_vector_type = new ArrayType(
  /external/clang/lib/AST/
StmtIterator.cpp 22 while (const ArrayType *vt = dyn_cast<ArrayType>(t)) {