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

1 2

  /external/webkit/Source/WebCore/platform/graphics/openvg/
TiledImageOpenVG.cpp 78 int TiledImageOpenVG::numRows() const
PainterOpenVG.cpp     [all...]
  /external/webkit/Source/WebCore/platform/image-decoders/openvg/
ImageDecoderOpenVG.cpp 53 const int numRows = tiledImage->numRows();
55 for (int yIndex = 0; yIndex < numRows; ++yIndex) {
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableColumn.cpp 133 if (!section->numRows())
184 int numRows = m_parentTable->rowCount();
186 for (int i = 0; i < numRows; i++) {
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...]
  /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
  /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++) {
  /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/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/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) {
  /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) {
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.h 107 int numRows() const { return m_gridRows; }
AutoTableLayout.cpp 57 int numRows = section->numRows();
58 for (int i = 0; i < numRows; i++) {
    [all...]
  /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)) +
  /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 86 final int numRows = (numKeys + maxColumns - 1) / maxColumns;
87 mNumRows = numRows;
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 283 int numRows = (height + TILE_SIZE - 1) / TILE_SIZE;
288 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...]

Completed in 2776 milliseconds

1 2