Searched refs:ArrayType (Results 1 - 25 of 162) sorted by relevance

1234567

/external/eigen/test/
H A Darray.cpp12 template<typename ArrayType> void array(const ArrayType& m)
14 typedef typename ArrayType::Index Index;
15 typedef typename ArrayType::Scalar Scalar;
17 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType;
18 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType;
23 ArrayType m1 = ArrayType::Random(rows, cols),
24 m2 = ArrayType::Random(rows, cols),
35 VERIFY_IS_APPROX(m1 + s1, ArrayType
[all...]
H A Dvectorwiseop.cpp14 template<typename ArrayType> void vectorwiseop_array(const ArrayType& m)
16 typedef typename ArrayType::Index Index;
17 typedef typename ArrayType::Scalar Scalar;
19 typedef Array<Scalar, ArrayType::RowsAtCompileTime, 1> ColVectorType;
20 typedef Array<Scalar, 1, ArrayType::ColsAtCompileTime> RowVectorType;
27 ArrayType m1 = ArrayType::Random(rows, cols),
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStdLibExtras.h179 template<typename ArrayElementType, typename KeyType, typename ArrayType, typename ExtractKey, BinarySearchMode mode>
180 inline ArrayElementType* binarySearchImpl(ArrayType& array, size_t size, KeyType key, const ExtractKey& extractKey = ExtractKey())
219 template<typename ArrayElementType, typename KeyType, typename ArrayType, typename ExtractKey>
220 inline ArrayElementType* binarySearch(ArrayType& array, size_t size, KeyType key, ExtractKey extractKey = ExtractKey())
222 return binarySearchImpl<ArrayElementType, KeyType, ArrayType, ExtractKey, KeyMustBePresentInArray>(array, size, key, extractKey);
226 template<typename ArrayElementType, typename KeyType, typename ArrayType, typename ExtractKey>
227 inline ArrayElementType* tryBinarySearch(ArrayType& array, size_t size, KeyType key, ExtractKey extractKey = ExtractKey())
229 return binarySearchImpl<ArrayElementType, KeyType, ArrayType, ExtractKey, KeyMightNotBePresentInArray>(array, size, key, extractKey);
233 template<typename ArrayElementType, typename KeyType, typename ArrayType, typename ExtractKey>
234 inline ArrayElementType* approximateBinarySearch(ArrayType
[all...]
/external/clang/test/Index/
H A Dprint-type.c9 typedef int ArrayType[5]; typedef
41 // CHECK: TypedefDecl=ArrayType:9:13 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
H A Dprint-type.cpp20 typedef int ArrayType[5]; typedef in struct:outer::inner::Bar
67 // CHECK: TypedefDecl=ArrayType:20:15 (Definition) [type=ArrayType] [typekind=Typedef] [canonicaltype=int [5]] [canonicaltypekind=ConstantArray] [isPOD=1]
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyPath.h52 ArrayType enumerator in enum:WebCore::IDBKeyPath::Type
59 ASSERT(m_type == ArrayType);
H A DIDBKey.cpp40 if (m_type == ArrayType) {
57 case ArrayType:
H A DIDBKey.h100 ArrayType, enumerator in enum:WebCore::IDBKey::Type
112 ASSERT(m_type == ArrayType);
152 IDBKey(const KeyArray& keyArray, size_t arraySize) : m_type(ArrayType), m_array(keyArray), m_number(0), m_sizeEstimate(OverheadSize + arraySize) { }
H A DIDBKeyPath.cpp203 : m_type(ArrayType)
221 case ArrayType:
244 case ArrayType:
/external/eigen/Eigen/src/Core/
H A DNumTraits.h127 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/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp61 static ArrayType *createLoweredType(Type *OriginalType) {
62 return ArrayType::get(OriginalType, MaxThreads);
66 createLoweredInitializer(ArrayType *NewType, Constant *OriginalInitializer) {
84 ArrayType *AT = dyn_cast<ArrayType>(Ty);
100 ArrayType *NewType = createLoweredType(GV->getType()->getElementType());
/external/clang/lib/CodeGen/
H A DCGVTT.cpp47 llvm::ArrayType *ArrayType = local
48 llvm::ArrayType::get(Int8PtrTy, Builder.getVTTComponents().size());
88 llvm::Constant *Init = llvm::ConstantArray::get(ArrayType, VTTComponents);
113 llvm::ArrayType *ArrayType = local
114 llvm::ArrayType::get(CGM.Int8PtrTy, Builder.getVTTComponents().size());
117 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
H A DMicrosoftVBTables.cpp178 llvm::ArrayType *VBTableType =
179 llvm::ArrayType::get(CGM.IntTy, 1 + ReusingBase->getNumVBases());
221 cast<llvm::ArrayType>(cast<llvm::PointerType>(GV->getType())
223 llvm::ArrayType *VBTableType =
224 llvm::ArrayType::get(CGM.IntTy, Offsets.size());
H A DCGVTables.cpp631 llvm::ArrayType *ArrayType = llvm::ArrayType::get(Int8PtrTy, NumComponents); local
632 return llvm::ConstantArray::get(ArrayType, Inits);
649 llvm::ArrayType *ArrayType = local
650 llvm::ArrayType::get(CGM.Int8PtrTy,
654 CGM.CreateOrReplaceCXXRuntimeVariable(Name, ArrayType,
705 llvm::ArrayType *ArrayType local
[all...]
/external/clang/lib/AST/
H A DStmtIterator.cpp22 while (const ArrayType *vt = dyn_cast<ArrayType>(t)) {
/external/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp49 ArrayType *AT = ArrayType::get(RuntimeCtorInit->getType(),
/external/llvm/include/llvm/IR/
H A DDerivedTypes.h142 /// CompositeType - Common super class of ArrayType, StructType, PointerType
330 /// ArrayType - Class to represent array types.
332 class ArrayType : public SequentialType { class in namespace:llvm
335 ArrayType(const ArrayType &) LLVM_DELETED_FUNCTION;
336 const ArrayType &operator=(const ArrayType &) LLVM_DELETED_FUNCTION;
337 ArrayType(Type *ElType, uint64_t NumEl);
339 /// ArrayType::get - This static method is the primary way to construct an
340 /// ArrayType
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebIDBKeyPath.cpp82 ASSERT(m_private->type() == IDBKeyPath::ArrayType);
/external/clang/unittests/AST/
H A DASTTypeTraitsTest.cpp42 EXPECT_FALSE(DNT<Expr>().isBaseOf(DNT<ArrayType>()));
/external/llvm/lib/Linker/
H A DLinkModules.cpp180 } else if (ArrayType *DATy = dyn_cast<ArrayType>(DstTy)) {
181 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
290 return *Entry = ArrayType::get(ElementTypes[0],
291 cast<ArrayType>(Ty)->getNumElements());
621 ArrayType *DAT = cast<ArrayType>(DGV->getType()->getElementType());
622 ArrayType *SAT = cast<ArrayType>(I->getType()->getElementType());
691 ArrayType *DstT
[all...]
/external/llvm/unittests/IR/
H A DTypeBuilderTest.cpp76 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/chromium_org/ppapi/tests/clang/
H A Dprint_names_and_sizes.cc70 } else if (const clang::ArrayType* array =
71 dyn_cast<clang::ArrayType>(&type)) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DIndexedDBModel.js53 ArrayType: "array"
59 ArrayType: "array"
85 key.type = WebInspector.IndexedDBModel.KeyTypes.ArrayType;
121 case WebInspector.IndexedDBModel.KeyPathTypes.ArrayType:
/external/compiler-rt/lib/ubsan/
H A Dubsan_handlers.h72 const TypeDescriptor &ArrayType; member in struct:__ubsan::OutOfBoundsData
/external/llvm/lib/Transforms/Instrumentation/
H A DEdgeProfiling.cpp77 Type *ATy = ArrayType::get(Type::getInt32Ty(M.getContext()), NumEdges);

Completed in 2003 milliseconds

1234567