/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 | 73 * \param cCols the number of columns in the corner 80 inline Block<Derived> topRightCorner(Index cRows, Index cCols) 82 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols); 86 inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const 88 return Block<const Derived>(derived(), 0, cols() - cCols, cRows, cCols); 94 * \tparam CCols the number of columns in the corner 101 template<int CRows, int CCols> 102 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/Eigen/src/Core/ |
DenseBase.h | 487 Block<Derived> corner(CornerType type, Index cRows, Index cCols); 488 const Block<Derived> corner(CornerType type, Index cRows, Index cCols) const; 489 template<int CRows, int CCols> 490 Block<Derived, CRows, CCols> corner(CornerType type); 491 template<int CRows, int CCols> 492 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...] |