Searched refs:ArrType (Results 1 - 4 of 4) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/util/
H A DCXX11Meta.h485 template<class InstType, typename ArrType, std::size_t N, bool Reverse, typename... Ps>
488 template<class InstType, typename ArrType, std::size_t N, typename... Ps>
489 struct h_instantiate_by_c_array<InstType, ArrType, N, false, Ps...>
491 static InstType run(ArrType* arr, Ps... args)
493 return h_instantiate_by_c_array<InstType, ArrType, N - 1, false, Ps..., ArrType>::run(arr + 1, args..., arr[0]);
497 template<class InstType, typename ArrType, std::size_t N, typename... Ps>
498 struct h_instantiate_by_c_array<InstType, ArrType, N, true, Ps...>
500 static InstType run(ArrType* arr, Ps... args)
502 return h_instantiate_by_c_array<InstType, ArrType,
[all...]
/external/eigen/unsupported/test/
H A Dcxx11_tensor_symmetry.cpp50 template<typename ArrType>
51 static inline int doCheck_(ArrType e, int flags, int dummy, std::set<uint64_t>& found, std::map<uint64_t, int> const& expected)
/external/clang/lib/Sema/
H A DSemaType.cpp2271 const QualType ArrType = Context.getBaseElementType(T); local
2272 if (ArrType->isBlockPointerType() || ArrType->isPipeType() ||
2273 ArrType->isSamplerT() || ArrType->isImageType()) {
2274 Diag(Loc, diag::err_opencl_invalid_type_array) << ArrType;
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp3528 auto *ArrType = llvm::ArrayType::get(PtrType, Classes.size() + 1); local
3530 new llvm::GlobalVariable(Module, ArrType,
3542 BCA->setInitializer(llvm::ConstantArray::get(ArrType, BaseClassArrayData));

Completed in 147 milliseconds