/packages/apps/Terminal/jni/ |
D | com_android_terminal_Terminal.cpp | 78 inline ScrollbackLine(dimen_t _cols) : cols(_cols) { in ScrollbackLine() 79 mCells = new VTermScreenCell[cols]; in ScrollbackLine() 85 inline dimen_t copyFrom(dimen_t cols, const VTermScreenCell* cells) { in copyFrom() argument 86 dimen_t n = this->cols > cols ? cols : this->cols; in copyFrom() 91 inline dimen_t copyTo(dimen_t cols, VTermScreenCell* cells) { in copyTo() argument 92 dimen_t n = cols > this->cols ? this->cols : cols; in copyTo() 101 const dimen_t cols; member in android::ScrollbackLine 123 status_t resize(dimen_t rows, dimen_t cols, dimen_t scrollRows); 125 status_t onPushline(dimen_t cols, const VTermScreenCell* cells); 126 status_t onPopline(dimen_t cols, VTermScreenCell* cells); [all …]
|
/packages/apps/Terminal/src/com/android/terminal/ |
D | TerminalView.java | 169 view.cols = mCols; 254 final int cols = w / mMetrics.charWidth; in onSizeChanged() local 257 final boolean sizeChanged = (rows != mRows || cols != mCols || scrollRows != mScrollRows); in onSizeChanged() 259 mTerm.resize(rows, cols, scrollRows); in onSizeChanged() 262 mCols = cols; in onSizeChanged()
|
D | Terminal.java | 144 public void resize(int rows, int cols, int scrollRows) { in resize() argument 145 if (nativeResize(mNativePtr, rows, cols, scrollRows) != 0) { in resize() 197 private static native int nativeResize(long ptr, int rows, int cols, int scrollRows); in nativeResize() argument
|
D | TerminalLineView.java | 35 public int cols; field in TerminalLineView 64 for (int col = 0; col < cols;) { in onDraw()
|
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
D | db_utilities.cpp | 167 void db_PrintDoubleMatrix(double *a,long rows,long cols) in db_PrintDoubleMatrix() argument 172 for(long j=0;j<cols;j++) printf("%lf ",a[i*cols+j]); in db_PrintDoubleMatrix()
|
D | db_utilities_indexing.h | 35 inline void db_SetupMatrixRefs(double **ar,long rows,long cols,double *a) in db_SetupMatrixRefs() argument 38 for(i=0;i<rows;i++) ar[i]=&a[i*cols]; in db_SetupMatrixRefs() 41 inline void db_SymmetricExtendUpperToLower(double **A,int rows,int cols) in db_SymmetricExtendUpperToLower() argument
|
D | db_utilities.h | 556 DB_API void db_PrintDoubleMatrix(double *a,long rows,long cols);
|
/packages/apps/Music/src/com/android/music/ |
D | VideoBrowserActivity.java | 90 String[] cols = new String[] { in MakeCursor() local 104 cols, mWhereClause , null, mSortOrder); in MakeCursor()
|
D | AlbumBrowserActivity.java | 452 String[] cols = new String[] { in getAlbumCursor() local 469 cols, null, null, MediaStore.Audio.Albums.DEFAULT_SORT_ORDER); in getAlbumCursor() 472 cols, null, null, MediaStore.Audio.Albums.DEFAULT_SORT_ORDER); in getAlbumCursor() 482 cols, null, null, MediaStore.Audio.Albums.DEFAULT_SORT_ORDER); in getAlbumCursor() 485 cols, null, null, MediaStore.Audio.Albums.DEFAULT_SORT_ORDER); in getAlbumCursor()
|
D | MusicUtils.java | 414 String[] cols = new String[] { in makePlaylistMenu() local 424 cols, whereclause, null, in makePlaylistMenu() 458 String [] cols = new String [] { MediaStore.Audio.Media._ID, in deleteTracks() local 469 Cursor c = query(context, MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, cols, in deleteTracks() 574 String[] cols = new String[] { in addToPlaylist() local 578 Cursor cur = resolver.query(uri, cols, null, null, null); in addToPlaylist() 1118 String[] cols = new String[] { in setRingtone() local 1126 cols, where , null, null); in setRingtone()
|
D | CreatePlaylist.java | 133 String[] cols = new String[] { in makePlaylistName() local 139 cols, whereclause, null, in makePlaylistName()
|
D | ArtistAlbumBrowserActivity.java | 525 String[] cols = new String[] { in getArtistCursor() local 540 cols, null , null, MediaStore.Audio.Artists.ARTIST_KEY); in getArtistCursor() 543 cols, null , null, MediaStore.Audio.Artists.ARTIST_KEY); in getArtistCursor() 765 String[] cols = new String[] { in getChildrenCursor() local 774 cols, null, null, MediaStore.Audio.Albums.DEFAULT_SORT_ORDER); in getChildrenCursor()
|
D | TrackBrowserActivity.java | 484 String [] cols = new String [] { in setTitle() local 489 cols, null, null, null); in setTitle() 499 String [] cols = new String [] { in setTitle() local 504 cols, null, null, null); in setTitle() 1097 public NowPlayingCursor(IMediaPlaybackService service, String [] cols) 1099 mCols = cols;
|
/packages/apps/Gallery/src/com/android/camera/ |
D | GridViewSpecial.java | 941 int cols = numColumns(row); in drawEmptyBlock() local 943 for (int i = 0; i < cols; i++) { in drawEmptyBlock() 1110 int cols = numColumns(mRow); in doDraw() local 1112 if (cols == mColumns) { in doDraw() 1122 + cols * (mSpec.mCellWidth + mSpec.mCellSpacing); in doDraw() 1130 int isEmpty = ((1 << cols) - 1) & ~mCompletedMask; in doDraw() 1136 for (int i = 0; i < cols; i++) { in doDraw()
|
/packages/apps/MusicFX/src/com/android/musicfx/ |
D | ControlPanelPicker.java | 53 String [] cols = new String [] { "_id", "title", "package", "name" }; in onCreate() local 54 MatrixCursor c = new MatrixCursor(cols); in onCreate()
|
/packages/apps/Music/tests/src/com/android/music/functional/ |
D | TestPlaylist.java | 130 String[] cols = new String[] { in verifyPlaylist() local 140 cols, whereclause, null, in verifyPlaylist()
|
D | TestSongs.java | 124 String[] cols = new String[] { in testAddPlaylist() local 133 cols, whereclause, null, in testAddPlaylist()
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | AllAppsContainerView.java | 109 int cols = sectionAppCount % numAppsPerRow; in continueMerging() local 118 return (0 < cols && cols < mMinAppsPerRow) && in continueMerging()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | DataRowHandler.java | 274 final String[] cols = new String[] { Data.IS_PRIMARY, Data.IS_SUPER_PRIMARY }; in handlePrimaryAndSuperPrimary() local 276 cols, Data._ID + "=?", mSelectionArgs1, null, null, null); in handlePrimaryAndSuperPrimary()
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
D | DownloadProvider.java | 1355 final String[] cols = cursor.getColumnNames(); 1360 for (int i = 0; i < cols.length; i++) { 1362 if (Downloads.Impl.COLUMN_COOKIE_DATA.equals(cols[i])) { 1365 pw.printPair(cols[i], cursor.getString(i));
|
/packages/apps/SoundRecorder/src/com/android/soundrecorder/ |
D | SoundRecorder.java | 536 String[] cols = new String[] { in addToPlaylist() local 540 Cursor cur = resolver.query(uri, cols, null, null, null); in addToPlaylist()
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaProvider.java | 2746 String [] cols; in doAudioSearch() local 2748 cols = mSearchColsFancy; in doAudioSearch() 2750 cols = mSearchColsBasic; in doAudioSearch() 2752 cols = mSearchColsLegacy; in doAudioSearch() 2754 return qb.query(db, cols, where, wildcardWords, null, null, null, limit); in doAudioSearch()
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
D | CalendarProvider2Test.java | 1050 String[] cols = cursor.getColumnNames(); in dumpCursor() local 1056 for (int i = 0; i < cols.length; i++) { in dumpCursor() 1057 Log.i(TAG, " " + cols[i] + '=' + cursor.getString(i)); in dumpCursor()
|
/packages/apps/Browser2/test/webexposed/ |
D | global-interface-listing-expected.txt | 2367 getter cols 2399 setter cols
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | en_US_wordlist.combined.gz |
|