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

1 2 3 4 5 6 7 8 91011>>

  /external/openssl/crypto/txt_db/
txt_db.c 303 int TXT_DB_insert(TXT_DB *db, OPENSSL_STRING *row)
313 (db->qual[i](row) == 0)) continue;
314 r=lh_OPENSSL_STRING_retrieve(db->index[i],row);
325 if (!sk_OPENSSL_PSTRING_push(db->data,row))
336 (db->qual[i](row) == 0)) continue;
337 (void)lh_OPENSSL_STRING_insert(db->index[i],row);
369 if (max == NULL) /* new row */
  /external/quake/quake/src/QW/client/
console.c 545 int row; local
573 row = con->display;
574 for (i=0 ; i<rows ; i++, y-=8, row--)
576 if (row < 0)
578 if (con->current - row >= con_totallines)
581 text = con->text + (row % con_totallines)*con_linewidth;
d_scan.c 51 byte **row; local
80 row = &rowptr[v];
83 dest[u+0] = row[turb[u+0]][col[u+0]];
84 dest[u+1] = row[turb[u+1]][col[u+1]];
85 dest[u+2] = row[turb[u+2]][col[u+2]];
86 dest[u+3] = row[turb[u+3]][col[u+3]];
  /external/quake/quake/src/WinQuake/
d_scan.cpp 51 byte **row; local
80 row = &rowptr[v];
84 dest[u+0] = row[turb[u+0]][col[u+0]];
85 dest[u+1] = row[turb[u+1]][col[u+1]];
86 dest[u+2] = row[turb[u+2]][col[u+2]];
87 dest[u+3] = row[turb[u+3]][col[u+3]];
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));
  /frameworks/base/libs/rs/
rsRuntime.h 170 void rsrMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v);
171 float rsrMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col);
172 void rsrMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
173 float rsrMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
174 void rsrMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v);
175 float rsrMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_transform.c 101 u32 row,col; local
156 for (row = 4, ptr = data; row--; ptr += 4)
258 u32 row,col; local
288 for (row = 4, ptr = data; row--; ptr += 4)
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
MockContentProvider.java 108 public Query returnRow(Object... row) {
109 mRows.add(row);
187 for (Object row : mRows) {
188 if (row instanceof Object[]) {
189 cursor.addRow((Object[]) row);
191 ContentValues values = (ContentValues) row;
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 94 ArrayList<Row> mRows = new ArrayList<Row>();
116 private class Row {
120 public Row(int row, String snippet) {
122 mRowNumber = row;
144 mRows.add(new Row(i, snippet));
209 * a "word" by taking the substring of the full row text in the words table
297 Row row = mRows.get(mCurrentRow) local
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
search_autocomplete.js 9 function set_row_selected(row, selected)
11 var c1 = row.cells[0];
12 // var c2 = row.cells[1];
22 function set_row_values(toroot, row, match)
24 var link = row.cells[0].childNodes[0];
27 // row.cells[1].innerHTML = match.type;
77 r.className = "show-row";
92 r.className = "show-row";
96 filtered.rows[ROW_COUNT].className = "hide-row";
  /build/tools/droiddoc/templates-sdk/assets/
search_autocomplete.js 9 function set_row_selected(row, selected)
11 var c1 = row.cells[0];
12 // var c2 = row.cells[1];
22 function set_row_values(toroot, row, match)
24 var link = row.cells[0].childNodes[0];
27 // row.cells[1].innerHTML = match.type;
77 r.className = "show-row";
92 r.className = "show-row";
96 filtered.rows[ROW_COUNT].className = "hide-row";
  /external/doclava/res/assets/templates/assets/
search_autocomplete.js 9 function set_row_selected(row, selected)
11 var c1 = row.cells[0];
12 // var c2 = row.cells[1];
22 function set_row_values(toroot, row, match)
24 var link = row.cells[0].childNodes[0];
27 // row.cells[1].innerHTML = match.type;
77 r.className = "show-row";
92 r.className = "show-row";
96 filtered.rows[ROW_COUNT].className = "hide-row";
  /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/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/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

Completed in 184 milliseconds

1 2 3 4 5 6 7 8 91011>>