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

1 2 3 4 5

  /external/skia/src/core/
SkConfig8888.h 38 size_t bytesPerRow, int rowCount) {
41 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 92 int rowCount = 0;
121 ++rowCount;
122 if ((dstRect.width() + 2 * kPadX) * rowCount > gSize) {
126 rowCount = 0;
textblobmixedsizes.cpp 116 int rowCount = 0;
151 ++rowCount;
152 if ((bounds.width() + 2 * kPadX) * rowCount > kWidth) {
156 rowCount = 0;
drawbitmaprect.cpp 169 int rowCount = 0;
193 ++rowCount;
194 if ((dstRect.width() + kPadX) * rowCount > gSize) {
198 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++) {
  /frameworks/support/compat/api21/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatApi21.java 42 public static Object obtainCollectionInfo(int rowCount, int columnCount,
44 return AccessibilityNodeInfo.CollectionInfo.obtain(rowCount, columnCount, hierarchical,
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
WidgetsRecyclerView.java 100 int rowCount = mWidgets.getPackageSize();
101 float pos = rowCount * touchFraction;
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorTreeAdapterTest.java 147 * @param rowCount the row count
151 private Cursor createTestCursor(int colCount, int rowCount) {
158 MatrixCursor cursor = new MatrixCursor(columns, rowCount);
160 for (int i = 0; i < rowCount; i++) {
162 row[j] = "" + rowCount + "" + colCount;
  /frameworks/support/compat/kitkat/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatKitKat.java 67 public static Object obtainCollectionInfo(int rowCount, int columnCount,
69 return AccessibilityNodeInfo.CollectionInfo.obtain(rowCount, columnCount, hierarchical);
72 public static Object obtainCollectionInfo(int rowCount, int columnCount, boolean hierarchical) {
73 return AccessibilityNodeInfo.CollectionInfo.obtain(rowCount, columnCount, hierarchical);
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/data/
Cea708Data.java 289 public final int rowCount;
297 int rowCount, int columnCount, int penStyle, int windowStyle) {
307 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;
  /external/opencv3/modules/cudaimgproc/src/cuda/
mean_shift.cu 79 int rowCount = 0;
88 sx += x; rowCount++;
91 count += rowCount;
92 sy += y*rowCount;

Completed in 2608 milliseconds

1 2 3 4 5