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

1 2 3

  /external/eigen/Eigen/src/Core/
ReturnByValue.h 25 : public traits<typename traits<Derived>::ReturnType>
31 Flags = (traits<typename traits<Derived>::ReturnType>::Flags
45 typedef typename traits<Derived>::ReturnType type;
54 typedef typename internal::traits<Derived>::ReturnType ReturnType;
VectorwiseOp.h 177 typename Scalar=typename internal::traits<ExpressionType>::Scalar> struct ReturnType
263 const typename ReturnType<internal::member_minCoeff>::Type minCoeff() const
273 const typename ReturnType<internal::member_maxCoeff>::Type maxCoeff() const
283 const typename ReturnType<internal::member_squaredNorm,RealScalar>::Type squaredNorm() const
293 const typename ReturnType<internal::member_norm,RealScalar>::Type norm() const
302 const typename ReturnType<internal::member_blueNorm,RealScalar>::Type blueNorm() const
311 const typename ReturnType<internal::member_stableNorm,RealScalar>::Type stableNorm() const
320 const typename ReturnType<internal::member_hypotNorm,RealScalar>::Type hypotNorm() const
330 const typename ReturnType<internal::member_sum>::Type sum() const
337 const typename ReturnType<internal::member_mean>::Type mean() cons
    [all...]
Dot.h 31 typedef typename scalar_product_traits<typename traits<T>::Scalar,typename traits<U>::Scalar>::ReturnType ResScalar;
41 typedef typename scalar_product_traits<typename traits<T>::Scalar,typename traits<U>::Scalar>::ReturnType ResScalar;
62 typename internal::scalar_product_traits<typename internal::traits<Derived>::Scalar,typename internal::traits<OtherDerived>::Scalar>::ReturnType
Product.h 35 typedef typename scalar_product_traits<typename traits<LhsCleaned>::Scalar, typename traits<RhsCleaned>::Scalar>::ReturnType Scalar;
DiagonalProduct.h 21 typedef typename scalar_product_traits<typename MatrixType::Scalar, typename DiagonalType::Scalar>::ReturnType Scalar;
  /external/eigen/Eigen/src/Geometry/
RotationBase.h 70 EIGEN_STRONG_INLINE typename internal::rotation_base_generic_product_selector<Derived,OtherDerived,OtherDerived::IsVectorAtCompileTime>::ReturnType
104 typedef Matrix<typename RotationDerived::Scalar,Dim,Dim> ReturnType;
105 static inline ReturnType run(const RotationDerived& r, const MatrixType& m)
112 typedef Transform<Scalar,Dim,Affine> ReturnType;
113 static inline ReturnType run(const RotationDerived& r, const DiagonalMatrix<Scalar,Dim,MaxDim>& m)
115 ReturnType res(r);
125 typedef Matrix<typename RotationDerived::Scalar,Dim,1> ReturnType;
126 static EIGEN_STRONG_INLINE ReturnType run(const RotationDerived& r, const OtherVectorType& v)
Homogeneous.h 230 MatrixTypeCleaned::MaxColsAtCompileTime>::type ReturnType;
272 Rhs::MaxColsAtCompileTime>::type ReturnType;
  /external/v8/src/
objects-visiting.h 222 template<typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
225 static inline ReturnType Visit(Map* map, HeapObject* object) {
232 return static_cast<ReturnType>(object_size);
236 static inline ReturnType VisitSpecialized(Map* map, HeapObject* object) {
243 return static_cast<ReturnType>(object_size);
248 template<typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
251 static inline ReturnType Visit(Map* map, HeapObject* object) {
257 return static_cast<ReturnType>(BodyDescriptor::kSize);
  /external/clang/lib/Sema/
SemaLambda.cpp 190 LSI->ReturnType = CallOperator->getResultType();
192 if (!LSI->ReturnType->isDependentType() &&
193 !LSI->ReturnType->isVoidType()) {
194 if (RequireCompleteType(CallOperator->getLocStart(), LSI->ReturnType,
197 } else if (LSI->ReturnType->isObjCObjectOrInterfaceType()) {
199 << LSI->ReturnType;
328 QualType returnType) {
333 if (S.Context.hasSameType(retValue->getType(), returnType))
337 assert(returnType->isIntegralOrUnscopedEnumerationType());
343 E = ImplicitCastExpr::Create(S.Context, returnType, CK_IntegralCast
    [all...]
SemaCodeComplete.cpp     [all...]
SemaExprObjC.cpp 155 QualType ReturnType = Method->getResultType();
156 if (!ReturnType->isObjCObjectPointerType()) {
160 << ReturnType;
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 143 const Type *ReturnType;
147 ReturnType(R), Params(P), isVarArg(V) {}
149 ReturnType(FT->getReturnType()),
153 if (ReturnType != that.ReturnType)
172 return hash_combine(Key.ReturnType,
Type.cpp 361 FunctionType *FunctionType::get(Type *ReturnType,
363 LLVMContextImpl *pImpl = ReturnType->getContext().pImpl;
364 FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg);
373 new (FT) FunctionType(ReturnType, Params, isVarArg);
  /external/eigen/Eigen/src/misc/
Kernel.h 34 > ReturnType;
SparseSolve.h 24 typedef SparseMatrix<typename Rhs::Scalar, Rhs::Options, typename Rhs::Index> ReturnType;
80 Rhs::MaxColsAtCompileTime> ReturnType;
Image.h 32 > ReturnType;
Solve.h 29 Rhs::MaxColsAtCompileTime> ReturnType;
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 494 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType;
499 typedef Matrix<A_Scalar, A_Rows, A_Cols, A_Options, A_MaxRows, A_MaxCols> ReturnType;
505 typedef AutoDiffScalar<DerType> ReturnType;
516 typedef AutoDiffScalar<CwiseUnaryOp<Eigen::internal::scalar_multiple_op<Scalar>, const typename Eigen::internal::remove_all<DerType>::type> > ReturnType; \
539 return ReturnType(abs(x.value()), x.derivatives() * (sign(x.value())));)
543 return ReturnType(abs2(x.value()), x.derivatives() * (Scalar(2)*x.value()));)
548 return ReturnType(sqrtx,x.derivatives() * (Scalar(0.5) / sqrtx));)
553 return ReturnType(cos(x.value()), x.derivatives() * (-sin(x.value())));)
558 return ReturnType(sin(x.value()),x.derivatives() * cos(x.value()));)
563 return ReturnType(expx,x.derivatives() * expx);
    [all...]
  /external/chromium/base/
id_map.h 116 template<class ReturnType>
143 ReturnType* GetCurrentValue() const {
  /external/eigen/Eigen/src/Core/util/
Meta.h 194 typedef T ReturnType;
200 typedef std::complex<T> ReturnType;
206 typedef std::complex<T> ReturnType;
212 // typedef typename scalar_product_traits<typename remove_all<ArgType0>::type, typename remove_all<ArgType1>::type>::ReturnType type;
  /external/eigen/test/
lu.cpp 45 typedef typename internal::kernel_retval_base<FullPivLU<MatrixType> >::ReturnType KernelMatrixType;
46 typedef typename internal::image_retval_base<FullPivLU<MatrixType> >::ReturnType ImageMatrixType;
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 22 typedef MatrixType ReturnType;
  /frameworks/compile/slang/
slang_rs_reflection.h 185 const char *ReturnType,
192 const char *ReturnType,
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrixTriangular.h 40 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
56 typedef typename scalar_product_traits<LhsScalar, RhsScalar>::ReturnType ResScalar;
  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 32 SparseMatrix<Scalar,int(SrcStorageOrder)==RowMajor?ColMajor:RowMajor,Index> >::type ReturnType;

Completed in 808 milliseconds

1 2 3