HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 251 - 275 of 732) sorted by null

<<11121314151617181920>>

  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableSectionElement20.js 78 The insertRow() method inserts a new empty table row.
82 insertion of the new row is one therefore the new row is appended.
83 After the new row is inserted the number of rows in the TFOOT section
HTMLTableSectionElement21.js 78 The insertRow() method inserts a new empty table row.
82 insertion of the new row is two therefore the row is appended.
83 After the new row is inserted the number of rows in the TBODY section is
HTMLTableSectionElement31.js 78 The deleteRow() method deletes a row from this section. The index
81 the last row will be deleted.
85 the deletion of the row is two. After the row is deleted the number
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 742 n[ns[i].rows[0]] = { text: n[ns[i].rows[0]], row: os[i].rows[0] };
743 o[os[i].rows[0]] = { text: o[os[i].rows[0]], row: ns[i].rows[0] };
748 if (n[i].text != null && n[i + 1].text == null && n[i].row + 1 < o.length && o[n[i].row + 1].text == null && n[i + 1] == o[n[i].row + 1]) {
749 n[i + 1] = { text: n[i + 1], row: n[i].row + 1 };
750 o[n[i].row + 1] = { text: o[n[i].row + 1], row: i + 1 }
    [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
AccessibilityUIElementGtk.cpp 508 int row = -1; local
510 row = atk_table_get_row_at_index(ATK_TABLE(axTable), indexInParent);
513 // Get the actual values, if row and columns are valid values.
514 if (row != -1 && column != -1) {
518 base = row;
519 length = atk_table_get_row_extent_at(ATK_TABLE(axTable), row, column);
522 length = atk_table_get_column_extent_at(ATK_TABLE(axTable), row, column);
572 AccessibilityUIElement AccessibilityUIElement::cellForColumnAndRow(unsigned column, unsigned row)
579 AtkObject* foundCell = atk_table_ref_at(ATK_TABLE(m_element), row, column);
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_inter_prediction.c 220 /* set row bits 15:0 */
368 u32 row, col; local
378 row = mbNum / currImage->width;
379 col = mbNum - row * currImage->width;
380 row *= 16;
393 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
401 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
404 h264bsdPredictSamples(data, pMb->mv+8, &refImage, col, row, 0, 8,
412 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
415 h264bsdPredictSamples(data, pMb->mv+4, &refImage, col, row, 8, 0
    [all...]
h264bsd_image.c 182 u32 row, col; local
199 row = mbNum / picWidth;
203 lum = (image->data + row * picWidth * 256 + col * 16);
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 204 * @param row the row that this key belongs to. row's x-coordinate will be the right edge of
209 public Key(Resources res, KeyboardParams params, KeyboardBuilder.Row row,
212 final int keyHeight = row.mRowHeight;
229 final float keyXPos = row.getKeyX(keyAttr);
230 final float keyWidth = row.getKeyWidth(keyAttr, keyXPos);
231 final int keyYPos = row.getKeyY();
239 // Update row to have current x coordinate
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
BookmarkExpandableView.java 343 int mRowCount = 1; // assume at least 1 child fits in a row
392 LinearLayout row = (LinearLayout) convertView; local
393 if (row.getChildCount() > rowCount) {
394 row.removeViews(rowCount, row.getChildCount() - rowCount);
398 if (row.getChildCount() > i) {
399 cv = row.getChildAt(i);
403 View v = childAdapter.getView(realChildPosition, cv, row);
414 row.addView(v);
416 row.removeViewAt(i)
    [all...]
  /external/jpeg/
jquant2.c 120 * of a true 3-D array, we use a row of pointers to 2-D arrays. Each
123 * on 80x86 machines, the pointer row is in near memory but the actual
165 * We can get away with a single array (holding one row's worth of errors)
166 * by using it to store the current row's errors at pixel columns not yet
167 * processed, but the next row's errors at columns already processed. We
207 boolean on_odd_row; /* flag to remember which row we are on */
231 int row; local
235 for (row = 0; row < num_rows; row++)
924 int row; local
964 int row; local
    [all...]
  /external/webkit/Source/WebCore/editing/
DeleteSelectionCommand.cpp 58 static bool isTableRowEmpty(Node* row)
60 if (!isTableRow(row))
63 for (Node* child = row->firstChild(); child; child = child->nextSibling())
658 Node* row = m_endTableRow->previousSibling(); local
659 while (row && row != m_startTableRow) {
660 RefPtr<Node> previousRow = row->previousSibling();
661 if (isTableRowEmpty(row))
671 Node* row = m_startTableRow->nextSibling(); local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngvcrd.c 100 /* Combines the row recently read in with the previous row.
105 the row. The pattern always repeats every 8 pixels, so just 8
115 png_combine_row(png_structp png_ptr, png_bytep row, int mask)
133 png_memcpy(row, png_ptr->row_buf + 1,
155 dstptr = row;
263 dstptr = row + offset_table[png_ptr->pass]*pixel_bytes;
291 dstptr = row;
407 dstptr = row + offset_table[png_ptr->pass]*pixel_bytes;
440 dstptr = row;
1011 png_bytep row = png_ptr->row_buf + 1; local
    [all...]
  /external/opencv/cv/src/
cvcalibinit.cpp 102 int row; // Board row index member in struct:CvCBCorner
115 int row, col; // row and column of this quad member in struct:CvCBQuad
155 static int icvTrimRow(CvCBQuad **quads, int count, int row, int dir);
486 // Checks that each board row and column is pretty much monotonous curve:
487 // It analyzes each row and each column of the chessboard as following:
488 // for each corner c lying between end points in the same row/column it checks that
490 // of the neighbor corners in the same row/column.
573 start->row = 0
585 int row = q->row; local
693 int row = quads[i]->row; local
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java 181 // header row:
183 // coverage row:
216 HTMLTable.IRow row = statsTable.newRow (); local
217 row.newCell ().setText ("total packages:", true);
218 row.newCell ().setText ("" + item.getChildCount (), false);
222 row = statsTable.newRow ();
223 row.newCell ().setText ("total executable files:", true);
224 row.newCell ().setText ("" + item.getAggregate (IItem.TOTAL_SRCFILE_COUNT), false);
227 row = statsTable.newRow ();
228 row.newCell ().setText ("total classes:", true)
909 final HTMLTable.IRow row = table.newRow (); local
969 final HTMLTable.IRow row = table.newRow (); local
1033 final HTMLTable.IRow row = table.newRow (); local
1278 final HTMLTable.IRow row = srcTable.newTitleRow (); local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 181 * @param rowCount the row count
193 Object[] row = new Object[colCount + 1]; local
196 row[j] = "" + i + "" + j;
198 row[colCount] = i;
199 cursor.addRow(row);
ResourceCursorTreeAdapterTest.java 182 * @param rowCount the row count
194 Object[] row = new Object[colCount + 1]; local
197 row[j] = "" + rowCount + "" + colCount;
199 row[colCount] = i;
200 cursor.addRow(row);
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_mac.h 85 // Opens the URL corresponding to the given |row|. If |force_background| is
89 void OpenURLForRow(int row, bool force_background);
  /external/libpng/
example.c 349 for (row = 0; row < height; row++)
350 row_pointers[row] = NULL;
352 for (row = 0; row < height; row++)
353 row_pointers[row] = png_malloc(png_ptr, png_get_rowbytes(png_ptr,
365 #ifdef single /* Read the image a single row at a time */
474 * want to display any rows that were generated in the row
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
crc32.c 376 unsigned long row; local
386 row = 1;
388 odd[n] = row;
389 row <<= 1;
  /external/skia/src/utils/
SkColorMatrix.cpp 97 static void setrow(SkScalar row[], SkScalar r, SkScalar g, SkScalar b) {
98 row[0] = r;
99 row[1] = g;
100 row[2] = b;
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
WeightTest.java 48 mRow = activity.findViewById(R.id.row);
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
ResultActivity.java 179 TableRow row = new TableRow(this); local
180 row.addView(column0);
181 row.addView(column1);
182 table.addView(row);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java 93 * row flexibility (and as mentioned above, possibly layout_weight).
163 // row and/or a stretchable column in the layout.
164 // In a GridLayout, a row or column is stretchable if it defines a gravity (regardless
167 // in the row/column have to be stretchable for the overall row/column to be
170 // Map from row index to boolean for "is the row fixed/inflexible?"
218 int row = rowFixed.size(); local
238 sb.append(ATTR_LAYOUT_ROW).append('=').append('"').append(Integer.toString(row));
327 int row = view.getRow() local
754 int row; local
    [all...]
  /external/skia/src/core/
SkScan_AntiPath.cpp 372 uint8_t* row = fMask.fImage + iy * fMask.fRowBytes + (x >> SHIFT); local
384 SkASSERT(row >= fMask.fImage);
385 SkASSERT(row < fMask.fImage + kMAX_STORAGE + 1);
386 add_aa_span(row, coverage_to_alpha(fe - fb));
397 SkASSERT(row >= fMask.fImage);
398 SkASSERT(row + n + 1 < fMask.fImage + kMAX_STORAGE + 1);
399 add_aa_span(row, coverage_to_alpha(fb), n, coverage_to_alpha(fe),
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatchChunk.java 314 int[] row = null; local
319 row = GraphicsUtilities.getPixels(image, 1, 0, width, 1, row);
327 Pair<List<Pair<Integer>>> top = getPatches(row, result);
350 row = GraphicsUtilities.getPixels(image, 1, height + 1, width, 1, row);
353 top = getPatches(row, result);

Completed in 978 milliseconds

<<11121314151617181920>>