HomeSort by relevance Sort by last modified time
    Searched refs:rowCount (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/skia/src/core/
SkConvertPixels.h 21 size_t bytesPerRow, int rowCount) {
25 memcpy(dst, src, bytesPerRow * rowCount);
29 for (int i = 0; i < rowCount; ++i) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
FreeformWorkspaceLayoutAlgorithm.java 89 int rowCount = 1;
94 if ((rowCount + 1) * rowScale > normalizedWorkspaceHeight) {
99 normalizedWorkspaceHeight / (rowCount + 1));
100 rowCount = 1;
106 rowCount++;
121 float rowTop = ((1f - (rowScale * rowCount)) * workspaceHeight) / 2f;
  /frameworks/base/core/java/android/database/
MatrixCursor.java 30 private int rowCount = 0;
72 if (mPos >= rowCount) {
86 final int row = rowCount++;
87 final int endIndex = rowCount * columnCount;
108 int start = rowCount++ * columnCount;
123 int start = rowCount * columnCount;
150 rowCount++;
161 rowCount++;
244 return rowCount;
  /external/guava/guava-gwt/src/com/google/common/collect/
ImmutableTable_CustomFieldSerializerBase.java 32 int rowCount = reader.readInt();
33 for (int i = 0; i < rowCount; i++) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAbstractCursor.java 26 protected int rowCount;
32 return rowCount;
73 if ((-1 == currentRowNumber) || (rowCount == currentRowNumber)) {
ShadowMatrixCursor.java 26 rowCount++;
83 if (currentRowNumber >= rowCount) {
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
FrequentContactsCursorBuilderTest.java 29 final int rowCount = expected.getCount();
31 assertEquals(rowCount, actual.getCount());
33 for (int i = 0; i < rowCount; i++) {
  /external/skia/gm/
drawminibitmaprect.cpp 93 int rowCount = 0;
122 ++rowCount;
123 if ((dstRect.width() + 2 * kPadX) * rowCount > gSize) {
127 rowCount = 0;
textblobmixedsizes.cpp 125 int rowCount = 0;
159 ++rowCount;
160 if ((bounds.width() + 2 * kPadX) * rowCount > kWidth) {
164 rowCount = 0;
drawbitmaprect.cpp 188 int rowCount = 0;
212 ++rowCount;
213 if ((dstRect.width() + kPadX) * rowCount > gSize) {
217 rowCount = 0;
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.h 24 int rowCount(const QModelIndex &parent = QModelIndex()) const;
eventhistory.cpp 15 int EventListModel::rowCount(const QModelIndex &) const
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintOptionsLayout.java 65 final int rowCount = childCount / mColumnCount + childCount % mColumnCount;
67 for (int row = 0; row < rowCount; row++) {
128 final int rowCount = childCount / mColumnCount + childCount % mColumnCount;
133 for (int row = 0; row < rowCount; row++) {
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastContentProvider.java 220 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME,
223 if (rowCount != 0) {
238 int rowCount = db.delete(CellBroadcastDatabaseHelper.TABLE_NAME, null, null);
239 if (rowCount != 0) {
265 int rowCount = db.update(CellBroadcastDatabaseHelper.TABLE_NAME, cv, whereClause, whereArgs);
266 if (rowCount != 0) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BigMatrixImpl.java 280 final int rowCount = getRowDimension();
282 final BigDecimal[][] outData = new BigDecimal[rowCount][columnCount];
283 for (int row = 0; row < rowCount; row++) {
306 final int rowCount = getRowDimension();
308 final BigDecimal[][] outData = new BigDecimal[rowCount][columnCount];
309 for (int row = 0; row < rowCount; row++) {
335 final int rowCount = getRowDimension();
337 final BigDecimal[][] outData = new BigDecimal[rowCount][columnCount];
338 for (int row = 0; row < rowCount; row++) {
361 final int rowCount = getRowDimension()
    [all...]
Array2DRowRealMatrix.java 196 final int rowCount = getRowDimension();
198 final double[][] outData = new double[rowCount][columnCount];
199 for (int row = 0; row < rowCount; row++) {
236 final int rowCount = getRowDimension();
238 final double[][] outData = new double[rowCount][columnCount];
239 for (int row = 0; row < rowCount; row++) {
RealMatrixImpl.java 197 final int rowCount = getRowDimension();
199 final double[][] outData = new double[rowCount][columnCount];
200 for (int row = 0; row < rowCount; row++) {
237 final int rowCount = getRowDimension();
239 final double[][] outData = new double[rowCount][columnCount];
240 for (int row = 0; row < rowCount; row++) {
AbstractFieldMatrix.java 175 final int rowCount = getRowDimension();
177 final FieldMatrix<T> out = createMatrix(rowCount, columnCount);
178 for (int row = 0; row < rowCount; ++row) {
194 final int rowCount = getRowDimension();
196 final FieldMatrix<T> out = createMatrix(rowCount, columnCount);
197 for (int row = 0; row < rowCount; ++row) {
210 final int rowCount = getRowDimension();
212 final FieldMatrix<T> out = createMatrix(rowCount, columnCount);
213 for (int row = 0; row < rowCount; ++row) {
226 final int rowCount = getRowDimension()
    [all...]
AbstractRealMatrix.java 83 final int rowCount = getRowDimension();
85 final RealMatrix out = createMatrix(rowCount, columnCount);
86 for (int row = 0; row < rowCount; ++row) {
102 final int rowCount = getRowDimension();
104 final RealMatrix out = createMatrix(rowCount, columnCount);
105 for (int row = 0; row < rowCount; ++row) {
118 final int rowCount = getRowDimension();
120 final RealMatrix out = createMatrix(rowCount, columnCount);
121 for (int row = 0; row < rowCount; ++row) {
134 final int rowCount = getRowDimension()
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRecyclerView.java 86 int rowCount = mAdapter.getItemCount();
87 float pos = rowCount * touchFraction;
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorTreeAdapterTest.java 157 * @param rowCount the row count
161 private Cursor createTestCursor(int colCount, int rowCount) {
168 MatrixCursor cursor = new MatrixCursor(columns, rowCount);
170 for (int i = 0; i < rowCount; i++) {
172 row[j] = "" + rowCount + "" + colCount;
ResourceCursorAdapterTest.java 165 * @param rowCount the row count
169 private Cursor createTestCursor(int colCount, int rowCount) {
176 MatrixCursor cursor = new MatrixCursor(columns, rowCount);
178 for (int i = 0; i < rowCount; i++) {
  /packages/apps/TV/src/com/android/tv/tuner/data/
Cea708Data.java 296 public final int rowCount;
304 int rowCount, int columnCount, int penStyle, int windowStyle) {
314 this.rowCount = rowCount;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyboardBuilder.java 89 final int rowCount = getRowCount();
90 for (int row = 1; row <= rowCount; row++) {
313 final int rowCount = getRowCount();
314 for (int row = 1; row <= rowCount; row++) {
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 196 int rowCount = mDb.delete(DATABASE_TABLE_NAME, ID + " = " + uri.getPathLeafId());
200 return rowCount;

Completed in 692 milliseconds

1 2 3 4 5