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

1 2 3

  /external/eigen/test/
meta.cpp 23 VERIFY(( internal::is_same<float,internal::remove_all<const float&>::type >::value));
24 VERIFY(( internal::is_same<float,internal::remove_all<const float*>::type >::value));
25 VERIFY(( internal::is_same<float,internal::remove_all<const float*&>::type >::value));
26 VERIFY(( internal::is_same<float,internal::remove_all<float**>::type >::value));
27 VERIFY(( internal::is_same<float,internal::remove_all<float**&>::type >::value));
28 VERIFY(( internal::is_same<float,internal::remove_all<float* const *&>::type >::value));
29 VERIFY(( internal::is_same<float,internal::remove_all<float* const>::type >::value));
  /external/chromium_org/chrome/installer/setup/
uninstall.h 52 // remove_all: Remove all shared files, registry entries as well.
62 bool remove_all,
  /external/eigen/Eigen/src/Core/
Product.h 33 typedef typename remove_all<Lhs>::type LhsCleaned;
34 typedef typename remove_all<Rhs>::type RhsCleaned;
66 typedef typename internal::remove_all<LhsNested>::type LhsNestedCleaned;
67 typedef typename internal::remove_all<RhsNested>::type RhsNestedCleaned;
CwiseUnaryView.h 38 typedef typename remove_all<MatrixTypeNested>::type _MatrixTypeNested;
78 const typename internal::remove_all<typename MatrixType::Nested>::type&
82 typename internal::remove_all<typename MatrixType::Nested>::type&
Select.h 47 CoeffReadCost = traits<typename remove_all<ConditionMatrixNested>::type>::CoeffReadCost
48 + EIGEN_SIZE_MAX(traits<typename remove_all<ThenMatrixNested>::type>::CoeffReadCost,
49 traits<typename remove_all<ElseMatrixNested>::type>::CoeffReadCost)
CwiseUnaryOp.h 77 const typename internal::remove_all<typename XprType::Nested>::type&
81 typename internal::remove_all<typename XprType::Nested>::type&
NoAlias.h 50 typedef typename internal::remove_all<OtherDerivedNested>::type _OtherDerivedNested;
62 typedef typename internal::remove_all<OtherDerivedNested>::type _OtherDerivedNested;
ArrayWrapper.h 29 : public traits<typename remove_all<typename ExpressionType::Nested>::type >
118 const typename internal::remove_all<NestedExpressionType>::type&
142 : public traits<typename remove_all<typename ExpressionType::Nested>::type >
228 const typename internal::remove_all<NestedExpressionType>::type&
ProductBase.h 25 typedef typename remove_all<_Lhs>::type Lhs;
26 typedef typename remove_all<_Rhs>::type Rhs;
70 typedef typename internal::remove_all<LhsNested>::type _LhsNested;
73 typedef typename internal::remove_all<ActualLhsType>::type _ActualLhsType;
77 typedef typename internal::remove_all<RhsNested>::type _RhsNested;
80 typedef typename internal::remove_all<ActualRhsType>::type _ActualRhsType;
CwiseBinaryOp.h 42 typedef typename remove_all<Lhs>::type Ancestor;
136 if (internal::traits<typename internal::remove_all<LhsNested>::type>::RowsAtCompileTime==Dynamic)
143 if (internal::traits<typename internal::remove_all<LhsNested>::type>::ColsAtCompileTime==Dynamic)
  /external/llvm/unittests/Support/
LockFileManagerTest.cpp 45 sys::fs::remove_all(StringRef(TmpDir));
  /external/eigen/Eigen/src/Core/util/
Meta.h 49 template<typename T> struct remove_all { typedef T type; }; struct in namespace:Eigen::internal
50 template<typename T> struct remove_all<const T> { typedef typename remove_all<T>::type type; }; struct in namespace:Eigen::internal
51 template<typename T> struct remove_all<T const&> { typedef typename remove_all<T>::type type; }; struct in namespace:Eigen::internal
52 template<typename T> struct remove_all<T&> { typedef typename remove_all<T>::type type; }; struct in namespace:Eigen::internal
53 template<typename T> struct remove_all<T const*> { typedef typename remove_all<T>::type type; }; struct in namespace:Eigen::internal
54 template<typename T> struct remove_all<T*> { typedef typename remove_all<T>::type type; } struct in namespace:Eigen::internal
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseDenseProduct.h 46 typedef typename remove_all<LhsNested>::type _LhsNested;
47 typedef typename remove_all<RhsNested>::type _RhsNested;
148 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
149 typedef typename internal::remove_all<DenseRhsType>::type Rhs;
150 typedef typename internal::remove_all<DenseResType>::type Res;
172 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
173 typedef typename internal::remove_all<DenseRhsType>::type Rhs;
174 typedef typename internal::remove_all<DenseResType>::type Res;
194 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
195 typedef typename internal::remove_all<DenseRhsType>::type Rhs
    [all...]
SparseSparseProductWithPruning.h 24 typedef typename remove_all<Lhs>::type::Scalar Scalar;
25 typedef typename remove_all<Lhs>::type::Index Index;
85 typedef typename traits<typename remove_all<Lhs>::type>::Scalar Scalar;
90 typename remove_all<ResultType>::type _res(res.rows(), res.cols());
117 typename remove_all<ResultType>::type _res(res.rows(), res.cols());
SparseDot.h 54 typedef typename internal::remove_all<Nested>::type NestedCleaned;
55 typedef typename internal::remove_all<OtherNested>::type OtherNestedCleaned;
SparseDiagonalProduct.h 32 typedef typename remove_all<Lhs>::type _Lhs;
33 typedef typename remove_all<Rhs>::type _Rhs;
66 typedef typename internal::remove_all<LhsNested>::type _LhsNested;
67 typedef typename internal::remove_all<RhsNested>::type _RhsNested;
SparseTranspose.h 18 typedef typename internal::remove_all<typename MatrixType::Nested>::type _MatrixTypeNested;
ConservativeSparseSparseProduct.h 20 typedef typename remove_all<Lhs>::type::Scalar Scalar;
21 typedef typename remove_all<Lhs>::type::Index Index;
132 typedef typename remove_all<Lhs>::type LhsCleaned;
189 typedef typename traits<typename remove_all<Lhs>::type>::Scalar Scalar;
SparseView.h 34 typedef typename internal::remove_all<MatrixTypeNested>::type _MatrixTypeNested;
  /external/eigen/Eigen/src/Core/products/
SelfadjointRank2Update.h 65 typedef typename internal::remove_all<ActualUType>::type _ActualUType;
70 typedef typename internal::remove_all<ActualVType>::type _ActualVType;
83 typename internal::remove_all<typename internal::conj_expr_if<IsRowMajor ^ UBlasTraits::NeedToConjugate,_ActualUType>::type>::type,
84 typename internal::remove_all<typename internal::conj_expr_if<IsRowMajor ^ VBlasTraits::NeedToConjugate,_ActualVType>::type>::type,
GeneralMatrixMatrixTriangular.h 187 typedef typename internal::remove_all<typename ProductDerived::LhsNested>::type Lhs;
190 typedef typename internal::remove_all<ActualLhs>::type _ActualLhs;
193 typedef typename internal::remove_all<typename ProductDerived::RhsNested>::type Rhs;
196 typedef typename internal::remove_all<ActualRhs>::type _ActualRhs;
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineProduct.h 26 typedef typename internal::remove_all<LhsNested>::type _LhsNested;
27 typedef typename internal::remove_all<RhsNested>::type _RhsNested;
123 typedef typename remove_all<Lhs>::type _Lhs;
124 typedef typename remove_all<Rhs>::type _Rhs;
186 typedef typename remove_all<Lhs>::type _Lhs;
187 typedef typename remove_all<Rhs>::type _Rhs;
254 typedef typename traits<typename remove_all<Lhs>::type>::Scalar Scalar;
263 typedef typename traits<typename remove_all<Lhs>::type>::Scalar Scalar;
275 // typedef typename internal::remove_all<Lhs>::type _Lhs;
276 // internal::skyline_product_selector<typename internal::remove_all<Lhs>::type
    [all...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 62 <_DerType, !internal::is_same<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar,
63 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value>
67 <_DerType, !internal::is_same<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar,
68 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value> Base;
69 typedef typename internal::remove_all<_DerType>::type DerType;
187 inline const AutoDiffScalar<CwiseBinaryOp<internal::scalar_sum_op<Scalar>,const DerType,const typename internal::remove_all<OtherDerType>::type> >
191 return AutoDiffScalar<CwiseBinaryOp<internal::scalar_sum_op<Scalar>,const DerType,const typename internal::remove_all<OtherDerType>::type> >(
223 inline const AutoDiffScalar<CwiseBinaryOp<internal::scalar_difference_op<Scalar>, const DerType,const typename internal::remove_all<OtherDerType>::type> >
227 return AutoDiffScalar<CwiseBinaryOp<internal::scalar_difference_op<Scalar>, const DerType,const typename internal::remove_all<OtherDerType>::type> >(
316 const CwiseUnaryOp<internal::scalar_multiple_op<Scalar>, const typename internal::remove_all<OtherDerType>::type > > >
    [all...]
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 222 typedef typename remove_all<MatrixType>::type MatrixTypeCleaned;
223 typedef typename remove_all<LhsMatrixType>::type LhsMatrixTypeCleaned;
238 typedef typename remove_all<LhsMatrixType>::type LhsMatrixTypeCleaned;
239 typedef typename remove_all<typename LhsMatrixTypeCleaned::Nested>::type LhsMatrixTypeNested;
279 typedef typename remove_all<typename Rhs::Nested>::type RhsNested;
  /external/eigen/Eigen/src/misc/
Solve.h 35 typedef typename remove_all<typename Rhs::Nested>::type RhsNestedCleaned;

Completed in 345 milliseconds

1 2 3