/external/eigen/Eigen/src/Eigen2Support/ |
Block.h | 21 * \param cCols the number of columns in the corner 34 ::corner(CornerType type, Index cRows, Index cCols) 41 return Block<Derived>(derived(), 0, 0, cRows, cCols); 43 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols); 45 return Block<Derived>(derived(), rows() - cRows, 0, cRows, cCols); 47 return Block<Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols); 54 DenseBase<Derived>::corner(CornerType type, Index cRows, Index cCols) const 61 return Block<Derived>(derived(), 0, 0, cRows, cCols); [all...] |
/external/eigen/Eigen/src/plugins/ |
BlockMethods.h | 71 * \param cCols the number of columns in the corner 78 inline Block<Derived> topRightCorner(Index cRows, Index cCols) 80 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols); 84 inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const 86 return Block<const Derived>(derived(), 0, cols() - cCols, cRows, cCols); 91 * The template parameters CRows and CCols are the number of rows and columns in the corner. 98 template<int CRows, int CCols> 99 inline Block<Derived, CRows, CCols> topRightCorner( [all...] |
/external/eigen/test/ |
corners.cpp | 46 template<typename MatrixType, int CRows, int CCols, int SRows, int SCols> void corners_fixedsize() 55 c = CCols,
|
/external/eigen/unsupported/Eigen/src/KroneckerProduct/ |
KroneckerTensorProduct.h | 90 template<typename A,typename B,typename CScalar,int CRows,int CCols, int COptions, int CMaxRows, int CMaxCols> 91 void kroneckerProduct(const MatrixBase<A>& a, const MatrixBase<B>& b, Matrix<CScalar,CRows,CCols,COptions,CMaxRows,CMaxCols>& c)
|
/external/eigen/Eigen/src/Core/ |
DenseBase.h | 495 Block<Derived> corner(CornerType type, Index cRows, Index cCols); 496 const Block<Derived> corner(CornerType type, Index cRows, Index cCols) const; 497 template<int CRows, int CCols> 498 Block<Derived, CRows, CCols> corner(CornerType type); 499 template<int CRows, int CCols> 500 const Block<Derived, CRows, CCols> corner(CornerType type) const;
|
/packages/apps/Music/src/com/android/music/ |
QueryBrowserActivity.java | 322 String[] ccols = new String[] { local 337 async.startQuery(0, null, search, ccols, null, null, null); 339 ret = MusicUtils.query(this, search, ccols, null, null, null);
|
PlaylistBrowserActivity.java | 414 final String[] ccols = new String[] { MediaStore.Audio.Media._ID}; local 417 ccols, where, null, MediaStore.Audio.Media.DEFAULT_SORT_ORDER); 439 final String[] ccols = new String[] { MediaStore.Audio.Media._ID}; local 441 ccols, MediaStore.Audio.Media.IS_PODCAST + "=1",
|
MusicUtils.java | 330 final String[] ccols = new String[] { MediaStore.Audio.Media._ID }; local 334 ccols, where, null, 346 final String[] ccols = new String[] { MediaStore.Audio.Media._ID }; local 350 ccols, where, null, MediaStore.Audio.Media.TRACK); 361 final String[] ccols = new String[] { MediaStore.Audio.Playlists.Members.AUDIO_ID }; local 363 ccols, null, null, MediaStore.Audio.Playlists.Members.DEFAULT_SORT_ORDER); [all...] |