Searched refs:remove_all (Results 1 - 25 of 72) sorted by relevance

123

/external/eigen/test/
H A Dmeta.cpp20 VERIFY(( internal::is_same<float,internal::remove_all<const float&>::type >::value));
21 VERIFY(( internal::is_same<float,internal::remove_all<const float*>::type >::value));
22 VERIFY(( internal::is_same<float,internal::remove_all<const float*&>::type >::value));
23 VERIFY(( internal::is_same<float,internal::remove_all<float**>::type >::value));
24 VERIFY(( internal::is_same<float,internal::remove_all<float**&>::type >::value));
25 VERIFY(( internal::is_same<float,internal::remove_all<float* const *&>::type >::value));
26 VERIFY(( internal::is_same<float,internal::remove_all<float* const>::type >::value));
/external/eigen/Eigen/src/Core/util/
H A DMeta.h49 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< struct in namespace:Eigen::internal
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseDenseProduct.h52 typedef typename remove_all<LhsNested>::type _LhsNested;
53 typedef typename remove_all<RhsNested>::type _RhsNested;
168 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
169 typedef typename internal::remove_all<DenseRhsType>::type Rhs;
170 typedef typename internal::remove_all<DenseResType>::type Res;
192 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
193 typedef typename internal::remove_all<DenseRhsType>::type Rhs;
194 typedef typename internal::remove_all<DenseResType>::type Res;
214 typedef typename internal::remove_all<SparseLhsType>::type Lhs;
215 typedef typename internal::remove_all<DenseRhsTyp
[all...]
H A DSparseSparseProductWithPruning.h24 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());
H A DSparseDot.h54 typedef typename internal::remove_all<Nested>::type NestedCleaned;
55 typedef typename internal::remove_all<OtherNested>::type OtherNestedCleaned;
H A DSparseDiagonalProduct.h32 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;
H A DConservativeSparseSparseProduct.h20 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;
H A DSparseTranspose.h18 typedef typename internal::remove_all<typename MatrixType::Nested>::type _MatrixTypeNested;
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_conv_adaptor_vcgen.h22 void remove_all() {} function in struct:agg::null_markers
91 m_markers.remove_all();
98 m_generator.remove_all();
H A Dagg_shorten_path.h39 vs.remove_all();
H A Dagg_vcgen_dash.h51 void remove_all();
H A Dfx_agg_vcgen_dash.cpp76 void vcgen_dash::remove_all() function in class:agg::vcgen_dash
79 m_src_vertices.remove_all();
H A Dfx_agg_vcgen_stroke.cpp46 void vcgen_stroke::remove_all() function in class:agg::vcgen_stroke
48 m_src_vertices.remove_all();
/external/chromium_org/chrome/installer/setup/
H A Duninstall.h67 // remove_all: Remove all shared files, registry entries as well.
77 bool remove_all,
/external/eigen/Eigen/src/Core/products/
H A DSelfadjointRank2Update.h65 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,
H A DGeneralMatrixMatrixTriangular.h198 typedef typename internal::remove_all<typename ProductType::LhsNested>::type Lhs;
201 typedef typename internal::remove_all<ActualLhs>::type _ActualLhs;
204 typedef typename internal::remove_all<typename ProductType::RhsNested>::type Rhs;
207 typedef typename internal::remove_all<ActualRhs>::type _ActualRhs;
243 typedef typename internal::remove_all<typename ProductType::LhsNested>::type Lhs;
246 typedef typename internal::remove_all<ActualLhs>::type _ActualLhs;
249 typedef typename internal::remove_all<typename ProductType::RhsNested>::type Rhs;
252 typedef typename internal::remove_all<ActualRhs>::type _ActualRhs;
/external/eigen/Eigen/src/Core/
H A DCwiseUnaryView.h38 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&
H A DSelect.h47 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)
H A DArrayWrapper.h29 : public traits<typename remove_all<typename ExpressionType::Nested>::type >
118 const typename internal::remove_all<NestedExpressionType>::type&
149 : public traits<typename remove_all<typename ExpressionType::Nested>::type >
235 const typename internal::remove_all<NestedExpressionType>::type&
H A DProductBase.h25 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;
H A DCwiseUnaryOp.h77 const typename internal::remove_all<typename XprType::Nested>::type&
81 typename internal::remove_all<typename XprType::Nested>::type&
H A DNoAlias.h50 typedef typename internal::remove_all<OtherDerivedNested>::type _OtherDerivedNested;
62 typedef typename internal::remove_all<OtherDerivedNested>::type _OtherDerivedNested;
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h62 <_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<OtherDerTyp
[all...]
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineProduct.h26 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<Lh
[all...]
/external/eigen/Eigen/src/misc/
H A DSolve.h35 typedef typename remove_all<typename Rhs::Nested>::type RhsNestedCleaned;

Completed in 1003 milliseconds

123