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

1 2 3

  /external/chromium_org/third_party/angle_dx11/src/compiler/
VariablePacker.h 32 void fillColumns(int topRow, int numRows, int column, int numComponentsPerRow);
33 bool searchColumn(int column, int numRows, int* destRow, int* destSize);
VariablePacker.cpp 131 void VariablePacker::fillColumns(int topRow, int numRows, int column, int numComponentsPerRow)
134 for (int r = 0; r < numRows; ++r) {
141 bool VariablePacker::searchColumn(int column, int numRows, int* destRow, int* destSize)
153 if (bottomNonFullRow_ - topNonFullRow_ + 1 < numRows) {
173 if (size >= numRows && size < smallestGoodSize) {
246 int numRows = GetNumRows(variable.type) * variable.size;
247 if (numRows <= rowsAvailableInColumns01) {
248 rowsAvailableInColumns01 -= numRows;
249 } else if (numRows <= rowsAvailableInColumns23) {
250 rowsAvailableInColumns23 -= numRows;
    [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
HTMLTableSectionElement.h 42 int 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/libs/androidfw/
CursorWindow.cpp 66 "numRows=%d, numColumns=%d, mSize=%d, mData=%p",
68 window->mHeader->numRows,
108 "numRows=%d, numColumns=%d, mSize=%d, mData=%p",
110 window->mHeader->numRows,
139 mHeader->numRows = 0;
153 if ((cur > 0 || mHeader->numRows > 0) && cur != numColumns) {
176 mHeader->numRows--;
178 "from allocRowSlot %d", mHeader->numRows);
185 mHeader->numRows - 1, offsetFromPtr(rowSlot), fieldDirSize, fieldDirOffset);
195 if (mHeader->numRows > 0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
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...]
AccessibilityTableColumn.cpp 121 if (!section->numRows())
169 int numRows = parentTable->rowCount();
171 for (int i = 0; i < numRows; i++) {
AccessibilityTableCell.cpp 123 rowOffset += tableSection->numRows();
  /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/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++) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/bmp/
BMPImageReader.h 184 // Returns true if the current y-coordinate plus |numRows| would be past
187 inline bool pastEndOfImage(int numRows)
189 return m_isTopDown ? ((m_coord.y() + numRows) >= m_parent->size().height()) : ((m_coord.y() - numRows) < 0);
  /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)) +
  /development/samples/ApiDemos/src/com/example/android/apis/view/
InternalSelectionView.java 58 public InternalSelectionView(Context context, int numRows) {
59 this(context, numRows, "");
62 public InternalSelectionView(Context context, int numRows, String label) {
64 mNumRows = numRows;
  /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);
  /external/chromium_org/third_party/WebKit/PerformanceTests/DOM/resources/dom-perf/
gridsort.js 100 var numRows = table.rows.length;
102 for (var i = 0; i < numRows; i++)
  /frameworks/base/core/tests/coretests/src/android/util/
ScrollViewScenario.java 154 * @param numRows The number of rows in the internal selection view.
157 public Params addInternalSelectionView(final int numRows, float heightRatio) {
160 return new InternalSelectionView(context, numRows, "isv");
InternalSelectionView.java 65 public InternalSelectionView(Context context, int numRows, String label) {
67 mNumRows = numRows;
  /frameworks/base/include/androidfw/
CursorWindow.h 91 inline uint32_t getNumRows() { return mHeader->numRows; }
149 uint32_t numRows;
  /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 +
  /external/llvm/utils/Misc/
zkill 84 numRows = len(header)
101 fields = ln.split(None, numRows - 1)
102 if len(fields) != numRows:
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 340 * \param numRows the number of rows in the block
347 inline RowsBlockXpr middleRows(Index startRow, Index numRows)
349 return RowsBlockXpr(derived(), startRow, 0, numRows, cols());
353 inline ConstRowsBlockXpr middleRows(Index startRow, Index numRows) const
355 return ConstRowsBlockXpr(derived(), startRow, 0, numRows, cols());
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTileGrid.java 153 final int numRows = ((childCount - 1) / mColumnCount) + 1;
155 numRows*(imageSize + getChildAt(0).getPaddingBottom()));

Completed in 1111 milliseconds

1 2 3