Searched refs:row (Results 1 – 10 of 10) sorted by relevance
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | TableLayout8.java | 55 TableRow row = new TableRow(this); in appendRow() local 66 row.addView(label, new TableRow.LayoutParams(1)); in appendRow() 67 row.addView(shortcut, new TableRow.LayoutParams()); in appendRow() 69 table.addView(row, new TableLayout.LayoutParams()); in appendRow()
|
D | TableLayout7.java | 64 TableRow row = new TableRow(this); in appendRow() local 75 row.addView(label, new TableRow.LayoutParams(1)); in appendRow() 76 row.addView(shortcut, new TableRow.LayoutParams()); in appendRow() 78 table.addView(row, new TableLayout.LayoutParams()); in appendRow()
|
D | InternalSelectionView.java | 183 public void getRectForRow(Rect rect, int row) { in getRectForRow() argument 185 final int top = getPaddingTop() + row * rowHeight; in getRectForRow()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | UnicodeChart.java | 67 for (int row = 0; row < 16; row++) { in SampleView() 69 pos[index++] = row * YMUL + YBASE; in SampleView()
|
/development/samples/BrowserPlugin/jni/ |
D | RenderingThread.cpp | 185 int row, col; in updateNativeWindow() local 190 for (row = 0 ; row < bitmap.height(); row ++) { in updateNativeWindow() 191 uint8_t* dst = &(img[(buffer.stride * (row + 0) + 0) * bpp]); in updateNativeWindow() 192 uint8_t* src = &(bitmapOrigin[bitmap.width() * row * bpp]); in updateNativeWindow()
|
/development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/ |
D | GameActivity.java | 192 int row = -1; in checkGameFinished() local 198 row = j; in checkGameFinished() 221 if (col != -1 || row != -1 || diag != -1) { in checkGameFinished() 222 setFinished(player, col, row, diag); in checkGameFinished() 234 private void setFinished(State player, int col, int row, int diagonal) { in setFinished() argument 239 mGameView.setFinished(col, row, diagonal); in setFinished()
|
D | GameView.java | 194 public void setFinished(int col, int row, int diagonal) { in setFinished() argument 196 mWinRow = row; in setFinished()
|
/development/samples/ApiDemos/src/com/example/android/apis/media/ |
D | AudioFxDemo.java | 121 LinearLayout row = new LinearLayout(this); in setupEqualizerFxAndUI() local 122 row.setOrientation(LinearLayout.HORIZONTAL); in setupEqualizerFxAndUI() 155 row.addView(minDbTextView); in setupEqualizerFxAndUI() 156 row.addView(bar); in setupEqualizerFxAndUI() 157 row.addView(maxDbTextView); in setupEqualizerFxAndUI() 159 mLinearLayout.addView(row); in setupEqualizerFxAndUI()
|
/development/samples/Spinner/src/com/android/example/spinner/ |
D | SpinnerActivity.java | 190 public void onItemSelected(AdapterView<?> parent, View v, int pos, long row) { in onItemSelected() argument
|
/development/ndk/platforms/android-4/samples/san-angeles/jni/ |
D | demo.c | 669 #define M(row,col) m[col*4+row] in gluLookAt() argument
|