Searched defs:cols (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Terminal/src/com/android/terminal/
H A DTerminalLineView.java35 public int cols; field in class:TerminalLineView
64 for (int col = 0; col < cols;) {
H A DTerminal.java144 public void resize(int rows, int cols, int scrollRows) { argument
145 if (nativeResize(mNativePtr, rows, cols, scrollRows) != 0) {
197 private static native int nativeResize(long ptr, int rows, int cols, int scrollRows); argument
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
H A Ddb_utilities.cpp167 void db_PrintDoubleMatrix(double *a,long rows,long cols) argument
172 for(long j=0;j<cols;j++) printf("%lf ",a[i*cols+j]);
H A Ddb_utilities_indexing.h35 inline void db_SetupMatrixRefs(double **ar,long rows,long cols,double *a) argument
38 for(i=0;i<rows;i++) ar[i]=&a[i*cols];
41 inline void db_SymmetricExtendUpperToLower(double **A,int rows,int cols) argument
/packages/apps/Terminal/jni/
H A Dcom_android_terminal_Terminal.cpp76 inline ScrollbackLine(dimen_t _cols) : cols(_cols) {
77 mCells = new VTermScreenCell[cols];
83 inline dimen_t copyFrom(dimen_t cols, const VTermScreenCell* cells) { argument
84 dimen_t n = this->cols > cols ? cols : this->cols;
89 inline dimen_t copyTo(dimen_t cols, VTermScreenCell* cells) { argument
90 dimen_t n = cols > this->cols
99 const dimen_t cols; member in class:android::ScrollbackLine
236 term_sb_pushline(int cols, const VTermScreenCell *cells, void *user) argument
245 term_sb_popline(int cols, VTermScreenCell *cells, void *user) argument
416 resize(dimen_t rows, dimen_t cols, dimen_t scrollRows) argument
434 onPushline(dimen_t cols, const VTermScreenCell* cells) argument
463 onPopline(dimen_t cols, VTermScreenCell* cells) argument
566 com_android_terminal_Terminal_nativeResize(JNIEnv* env, jclass clazz, jlong ptr, jint rows, jint cols, jint scrollRows) argument
[all...]
/packages/apps/Music/src/com/android/music/
H A DTrackBrowserActivity.java462 String[] cols = new String[] {MediaStore.Audio.Playlists.NAME};
466 cols, null, null, null);
476 String[] cols = new String[] {MediaStore.Audio.Genres.NAME};
480 cols, null, null, null);
1068 public NowPlayingCursor(IMediaPlaybackService service, String[] cols) { argument
1069 mCols = cols;

Completed in 240 milliseconds