/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)) {
|
/external/llvm/lib/Target/XCore/ |
XCoreLowerThreadLocal.cpp | 64 static ArrayType *createLoweredType(Type *OriginalType) { 65 return ArrayType::get(OriginalType, MaxThreads); 69 createLoweredInitializer(ArrayType *NewType, Constant *OriginalInitializer) { 176 ArrayType *AT = dyn_cast<ArrayType>(Ty); 192 ArrayType *NewType = createLoweredType(GV->getType()->getElementType());
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSGlobalInfoPass.cpp | 197 llvm::ArrayType *VoidPtrArrayTy = llvm::ArrayType::get(VoidPtrTy, 200 llvm::ArrayType *SizeArrayTy = llvm::ArrayType::get(SizeTy, NumGlobals); 203 llvm::ArrayType *Int32ArrayTy = llvm::ArrayType::get(Int32Ty, NumGlobals);
|
/external/llvm/include/llvm/IR/ |
DerivedTypes.h | 146 /// CompositeType - Common super class of ArrayType, StructType, PointerType 328 /// ArrayType - Class to represent array types. 330 class ArrayType : public SequentialType { 333 ArrayType(const ArrayType &) = delete; 334 const ArrayType &operator=(const ArrayType &) = delete; 335 ArrayType(Type *ElType, uint64_t NumEl); 338 /// ArrayType::get - This static method is the primary way to construct an 339 /// ArrayType [all...] |
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
TypeNames.java | 21 import javax.lang.model.type.ArrayType; 64 public ArrayTypeName visitArray(ArrayType t, Void p) {
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
is_pod.hpp | 86 template <typename ArrayType> 89 enum { is_pod = ::boost::is_POD<ArrayType>::value }; // MSVC workaround
|
/external/llvm/unittests/IR/ |
TypeBuilderTest.cpp | 76 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 7), 78 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 0), 83 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 7), 85 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 0), 90 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 7), 92 EXPECT_EQ(ArrayType::get(Type::getInt8Ty(getGlobalContext()), 0),
|
/external/llvm/lib/Target/ |
TargetLoweringObjectFile.cpp | 98 return cast<ArrayType>(C->getType())->getNumElements() == 1; 181 if (ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) {
|
/external/llvm/tools/llvm-pdbdump/ |
VariableDumper.cpp | 130 if (auto *ArrayType = dyn_cast<PDBSymbolTypeArray>(&Type)) { 133 std::unique_ptr<PDBSymbol> ElementType = ArrayType->getElementType(); 140 IndexStream << "[" << ArrayType->getCount() << "]";
|
/external/llvm/lib/IR/ |
Type.cpp | 98 if (auto *ATy = dyn_cast<ArrayType>(this)) { 156 if (auto *ATy = dyn_cast<ArrayType>(this)) 202 return cast<ArrayType>(this)->getNumElements(); 672 // ArrayType Implementation 675 ArrayType::ArrayType(Type *ElType, uint64_t NumEl) 680 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) { 684 ArrayType *&Entry = 688 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements) [all...] |
/external/llvm/lib/CodeGen/ |
Analysis.cpp | 60 else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { 102 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { 378 if (ArrayType *AT = dyn_cast<ArrayType>(T))
|