HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 376 - 400 of 1110) sorted by null

<<11121314151617181920>>

  /external/guava/guava/src/com/google/common/collect/
ForwardingTable.java 115 public Map<C, V> row(R rowKey) { method in class:ForwardingTable
116 return delegate().row(rowKey);
  /external/guava/guava-tests/test/com/google/common/collect/
SingletonImmutableTableTest.java 57 assertEquals(ImmutableMap.of(), testTable.row('A'));
58 assertEquals(ImmutableMap.of(1, "blah"), testTable.row('a'));
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Eigen3f.java 116 // use the largest row to compute and order the eigen vectors.
198 int row = 0; local
206 row = 1;
210 if (row == 0) {
224 if (row == 0) {
237 row = 0;
245 row = 1;
249 if (row == 0) {
261 if (row == 0) {
274 * max row of the matrix in the Vector store.
    [all...]
  /external/libpng/contrib/gregbook/
rpng-win.c 539 ulg i, row, lastrow; local
555 for (lastrow = row = 0; row < image_height; ++row) {
556 src = image_data + row*image_rowbytes;
557 dest = wimage_data + row*wimage_rowbytes;
593 if (((row+1) & 0xf) == 0) {
600 lastrow = row + 1;
  /external/libvpx/libvpx/vp8/common/
debugmodes.c 119 fprintf(mvs, "%5d:%-5d", mi[mb_index].mbmi.mv.as_mv.row / 2, mi[mb_index].mbmi.mv.as_mv.col / 2);
146 fprintf(mvs, "%3d:%-3d ", mi[mb_index].bmi[bindex].mv.as_mv.row, mi[mb_index].bmi[bindex].mv.as_mv.col);
  /external/quake/quake/src/WinQuake/
vid_dos.cpp 575 int nummodes, i, j, column, row, dup; local
636 row = 36;
641 M_PrintWhite (column, row, modedescs[i].desc);
643 M_Print (column, row, modedescs[i].desc);
645 row += 8;
650 row = 36;
683 row = 36 + (vid_line % vid_column_size) * 8;
686 M_DrawCharacter (column, row, 12+((int)(realtime*4)&1));
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableElement28.js 78 The insertRow() method inserts a new empty table row.
81 with an index of 0. Currently the zero indexed row is in the THEAD
83 insertion of the new row is one. After the new row is inserted the number
HTMLTableElement29.js 78 The insertRow() method inserts a new empty table row.
81 with an index of two. Currently the 2nd indexed row is in the TBODY
83 insertion of the new row is two. After the new row is inserted the number
HTMLTableElement30.js 78 The insertRow() method inserts a new empty table row.
81 with an index of four. After the new row is inserted the number of rows
84 insertion of the new row is one. After the new row is inserted the number
HTMLTableSectionElement19.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 THEAD
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/LayoutTests/dom/xhtml/level2/html/
HTMLTableElement28.js 78 The insertRow() method inserts a new empty table row.
81 with an index of 0. Currently the zero indexed row is in the THEAD
83 insertion of the new row is one. After the new row is inserted the number
HTMLTableElement29.js 78 The insertRow() method inserts a new empty table row.
81 with an index of two. Currently the 2nd indexed row is in the TBODY
83 insertion of the new row is two. After the new row is inserted the number
HTMLTableElement30.js 78 The insertRow() method inserts a new empty table row.
81 with an index of four. After the new row is inserted the number of rows
84 insertion of the new row is one. After the new row is inserted the number
HTMLTableSectionElement19.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 THEAD
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/av/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...]
  /frameworks/base/tools/aapt/
Images.cpp 204 png_bytep row, int width, bool transparent, bool required,
214 if (TICK_TYPE_TICK == tick_type(row+i*4, transparent, outError)) {
302 png_bytep row, int width, bool transparent, bool required,
309 if (TICK_TYPE_LAYOUT_BOUNDS == tick_type(row + 4, transparent, outError)) {
315 int tick = tick_type(row + i * 4, transparent, outError);
323 if (TICK_TYPE_LAYOUT_BOUNDS == tick_type(row + (width - 2) * 4, transparent, outError)) {
329 int tick = tick_type(row+i*4, transparent, outError);
595 if (yDivs[0] == 0) { // Row 1 is strechable
618 // The first row always starts with the top being at y=0 and the bottom
620 // the first row is stretchable along the Y axis, otherwise it is fixed
768 png_bytep row = rows[j]; local
828 png_bytep row = imageInfo.rows[j]; local
951 png_bytep row = imageInfo.rows[j]; local
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainQuad.java     [all...]

Completed in 395 milliseconds

<<11121314151617181920>>