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

1 2 3

  /external/webkit/Source/WebCore/html/
HTMLTableSectionElement.cpp 67 int numRows = children ? (int)children->length() : 0;
68 if (index < -1 || index > numRows)
72 if (numRows == index || index == -1)
89 int numRows = children ? (int)children->length() : 0;
91 index = numRows - 1;
92 if (index >= 0 && index < numRows) {
99 int HTMLTableSectionElement::numRows() const
HTMLTableSectionElement.h 40 int numRows() const;
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 62 int numRows = getSession().executeForCursorWindow(getSql(), getBindArgs(),
65 return numRows;
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.cpp 125 int numRows = firstBody->numRows();
128 if (numRows == 1 && numCols == 1)
150 for (int row = 0; row < numRows; ++row) {
220 if (headersInFirstColumnCount == numRows && numRows > 1)
315 unsigned numRows = tableSection->numRows();
317 for (unsigned rowIndex = 0; rowIndex < numRows; ++rowIndex) {
429 int numRows = m_rows.size()
    [all...]
AccessibilityTableColumn.cpp 133 if (!section->numRows())
184 int numRows = m_parentTable->rowCount();
186 for (int i = 0; i < numRows; i++) {
AccessibilityTableCell.cpp 124 rowOffset += tableSection->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) {
  /external/webkit/Source/WebCore/platform/image-decoders/openvg/
ImageDecoderOpenVG.cpp 53 const int numRows = tiledImage->numRows();
55 for (int yIndex = 0; yIndex < numRows; ++yIndex) {
  /frameworks/base/libs/androidfw/
CursorWindow.cpp 65 "numRows=%d, numColumns=%d, mSize=%d, mData=%p",
67 window->mHeader->numRows,
107 "numRows=%d, numColumns=%d, mSize=%d, mData=%p",
109 window->mHeader->numRows,
138 mHeader->numRows = 0;
152 if ((cur > 0 || mHeader->numRows > 0) && cur != numColumns) {
175 mHeader->numRows--;
177 "from allocRowSlot %d", mHeader->numRows);
184 mHeader->numRows - 1, offsetFromPtr(rowSlot), fieldDirSize, fieldDirOffset);
194 if (mHeader->numRows > 0)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
TiledImageOpenVG.h 47 int numRows() const;
  /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/webkit/Source/WebCore/platform/image-decoders/bmp/
BMPImageReader.h 182 // Returns true if the current y-coordinate plus |numRows| would be past
185 inline bool pastEndOfImage(int numRows)
187 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)) +
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 216 int numRows = endY - originY;
218 if (numRows <= 0)
226 srcDevice.readPixels(SkIRect::MakeXYWH(originX, originY, numColumns, numRows), &srcBitmap);
231 for (int y = 0; y < numRows; ++y) {
297 int numRows = endY - destY;
309 destBitmap.setConfig(SkBitmap::kARGB_8888_Config, numColumns, numRows, srcBytesPerRow);
313 deviceBitmap.extractSubset(&destBitmap, SkIRect::MakeXYWH(destX, destY, numColumns, numRows));
318 for (int y = 0; y < numRows; ++y) {
  /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;
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageBufferAndroid.cpp 168 int numRows = endy - originy;
175 for (int y = 0; y < numRows; ++y) {
228 int numRows = endy - desty;
235 for (int y = 0; y < numRows; ++y) {
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageBufferQt.cpp 229 int numRows = endy - originy;
242 for (int y = 0; y < numRows; ++y) {
264 for (int y = 0; y < numRows; ++y) {
332 int numRows = endy - desty;
337 QImage image(numColumns, numRows, QImage::Format_ARGB32_Premultiplied);
344 for (int y = 0; y < numRows; ++y) {
354 for (int y = 0; y < numRows; ++y) {
  /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);
  /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");
  /frameworks/base/include/androidfw/
CursorWindow.h 91 inline uint32_t getNumRows() { return mHeader->numRows; }
149 uint32_t numRows;
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 191 int numRows = endy - originy;
197 for (int y = 0; y < numRows; ++y) {
259 int numRows = endy - desty;
265 for (int y = 0; y < numRows; ++y) {
283 numColumns, numRows);
  /external/llvm/utils/Misc/
zkill 84 numRows = len(header)
101 fields = ln.split(None, numRows - 1)
102 if len(fields) != numRows:
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.h 107 int numRows() const { return m_gridRows; }

Completed in 620 milliseconds

1 2 3