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

1 2 3

  /external/eigen/test/
meta.cpp 20 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/
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 52 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<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;
  /external/pdfium/core/src/fxge/agg/agg23/
agg_conv_adaptor_vcgen.h 22 void remove_all() {} function in struct:agg::null_markers
91 m_markers.remove_all();
98 m_generator.remove_all();
agg_vcgen_dash.h 51 void remove_all();
agg_shorten_path.h 39 vs.remove_all();
agg_vcgen_stroke.h 97 void remove_all();
fx_agg_vcgen_dash.cpp 76 void vcgen_dash::remove_all() function in class:agg::vcgen_dash
79 m_src_vertices.remove_all();
fx_agg_vcgen_stroke.cpp 46 void vcgen_stroke::remove_all() function in class:agg::vcgen_stroke
48 m_src_vertices.remove_all();
  /external/chromium_org/chrome/installer/setup/
uninstall.h 67 // remove_all: Remove all shared files, registry entries as well.
77 bool remove_all,
  /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 198 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/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/Eigen/src/Core/
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&
149 : public traits<typename remove_all<typename ExpressionType::Nested>::type >
235 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;
  /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;

Completed in 308 milliseconds

1 2 3