HomeSort by relevance Sort by last modified time
    Searched defs:numRows (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityTableColumn.cpp 121 if (!section->numRows())
169 int numRows = parentTable->rowCount();
171 for (int i = 0; i < numRows; i++) {
AccessibilityTable.cpp 135 int numRows = firstBody->numRows();
138 if (numRows == 1 && numCols == 1)
142 if (numRows >= 20)
168 for (int row = 0; row < numRows; ++row) {
253 if (headersInFirstColumnCount == numRows && numRows > 1)
346 unsigned numRows = tableSection->numRows();
347 for (unsigned rowIndex = 0; rowIndex < numRows; ++rowIndex)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableSectionElement.cpp 63 int numRows = children ? (int)children->length() : 0;
64 if (index < -1 || index > numRows)
68 if (numRows == index || index == -1)
85 int numRows = children ? (int)children->length() : 0;
87 index = numRows - 1;
88 if (index >= 0 && index < numRows) {
96 int HTMLTableSectionElement::numRows() const
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 62 int numRows = getSession().executeForCursorWindow(getSql(), getBindArgs(),
65 return numRows;
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
FocusChangeWithInterestingRectHintTest.java 72 final int numRows = mLeftColumn.getNumRows();
73 for (int row = 0; row < numRows; row++) {
89 if (row < numRows - 1) {
106 if (row < numRows - 1) {
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 117 int numRows = (height - rowIndex) / 2;
118 if (numRows > 8) numRows = 8;
119 for (int row = 0; row < numRows; ++row) {
192 int numRows = height - rowIndex;
193 if (numRows > 16) numRows = 16;
194 for (int row = 0; row < numRows; ++row) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsBackupHelper.java 102 int numRows = dataInput.readInt();
103 ContentValues[] values = new ContentValues[numRows];
104 for (int i = 0; i < numRows; i++) {
  /frameworks/base/include/androidfw/
CursorWindow.h 91 inline uint32_t getNumRows() { return mHeader->numRows; }
149 uint32_t numRows;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettingsContainerView.java 97 int numRows = (int) Math.ceil((float) cursor / mNumColumns);
98 int newHeight = (int) ((numRows * cellHeight) + ((numRows - 1) * mCellGap)) +
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTileGrid.java 153 final int numRows = ((childCount - 1) / mColumnCount) + 1;
155 numRows*(imageSize + getChildAt(0).getPaddingBottom()));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AutoTableLayout.cpp 60 unsigned numRows = section->numRows();
61 for (unsigned i = 0; i < numRows; i++) {
    [all...]
RenderTableSection.h 186 unsigned numRows() const { return m_grid.size(); }
  /external/chromium_org/third_party/icu/source/common/
rbbitblb.cpp     [all...]
  /external/icu4c/common/
rbbitblb.cpp     [all...]
  /frameworks/base/core/java/android/content/
ContentProviderOperation.java 221 int numRows;
223 numRows = provider.delete(mUri, mSelection, selectionArgs);
225 numRows = provider.update(mUri, values, mSelection, selectionArgs);
239 numRows = cursor.getCount();
263 if (mExpectedCount != null && mExpectedCount != numRows) {
265 throw new OperationApplicationException("wrong number of rows: " + numRows);
268 return new ContentProviderResult(numRows);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysKeyboard.java 84 final int numRows = (numKeys + maxColumns - 1) / maxColumns;
85 mNumRows = numRows;
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 313 int numRows = (height + TILE_SIZE - 1) / TILE_SIZE;
318 for (int j = 0; j < numRows; ++j) {
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 614 int numRows = rows.size();
615 for (int rowIndex = 0; rowIndex < numRows; ++rowIndex) {
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuView.java 215 * @param numRows The total number of rows for the menu view
220 private void layoutItemsUsingGravity(int numRows, int numItems) {
221 int numBaseItemsPerRow = numItems / numRows;
222 int numLeftoverItems = numItems % numRows;
229 int rowsThatGetALeftoverItem = numRows - numLeftoverItems;
232 for (int i = 0; i < numRows; i++) {
241 mLayoutNumRows = numRows;
255 int numRows = mLayoutNumRows;
256 for (int row = 0; row < numRows; row++) {
331 final int numRows = mLayoutNumRows
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 458 int numRows;
594 numRows = numYDivs + 1;
596 numRows--;
599 numRows--;
604 if (numRows * numCols > 0x7F) {
609 numColors = numRows * numCols;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayout.java 260 int numRows = (int) Math.ceil((float) getPageChildCount() / getCellCountX());
261 if (numRows < getCellCountY()) {
  /packages/apps/Launcher3/src/com/android/launcher3/
DynamicGrid.java 58 float numRows;
109 numRows = r;
140 points.add(new DeviceProfileQuery(p.minWidthDps, p.minHeightDps, p.numRows));
142 numRows = Math.round(invDistWeightedInterpolate(minWidth, minHeight, points));
202 int h = (int) (numRows * cellHeightPx) + padding.top + padding.bottom;
205 int deltaPx = (int) Math.ceil(delta / numRows);
244 allAppsNumRows = (int) numRows + 1;
555 " [r: " + mProfile.numRows + ", c: " + mProfile.numColumns +
PagedViewCellLayout.java 65 mCellCountY = (int) grid.numRows;
254 int numRows = (int) Math.ceil((float) getPageChildCount() / getCellCountX());
255 if (numRows < getCellCountY()) {
  /external/opencv/cvaux/src/
cvtrifocal.cpp 475 int numRows;
476 numRows = srcMatr->rows;
479 if( numRows != dstMatr->rows )
492 for( i = 0; i < numRows; i++ )
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ContactsSyncParser.java     [all...]

Completed in 874 milliseconds

1 2