HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 351 - 375 of 723) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/importer/
firefox3_importer.cc 140 history::URLRow row(url);
141 row.set_title(s.ColumnString16(1));
142 row.set_visit_count(s.ColumnInt(2));
143 row.set_hidden(s.ColumnInt(3) == 1);
144 row.set_typed_count(s.ColumnInt(4));
145 row.set_last_visit(base::Time::FromTimeT(s.ColumnInt64(5)/1000000));
147 rows.push_back(row);
ie_importer.cc 185 history::URLRow row(url);
186 row.set_title(title_string);
187 row.set_last_visit(base::Time::FromFileTime(stat_url.ftLastVisited));
189 row.set_visit_count(1);
190 row.set_hidden(false);
192 row.set_hidden(true);
195 rows.push_back(row);
  /external/chromium/chrome/browser/history/
history_backend_unittest.cc 122 URLRow row;
123 URLID id = backend_->db()->GetRowForURL(url, &row);
308 // The second row should be deleted.
422 // Unstar row 1.
460 // A row should have been added for the url.
461 URLRow row; local
462 URLID url_id = backend_->db()->GetRowForURL(url, &row);
466 ASSERT_EQ(1, row.typed_count());
494 ASSERT_EQ(0, backend_->db()->GetRowForURL(url, &row));
601 // Fetch the row information about stripped url from history db
685 URLRow row; local
718 URLRow row; local
758 URLRow row; local
    [all...]
history_types.cc 394 bool RowQualifiesAsSignificant(const URLRow& row,
398 return (row.typed_count() > kLowQualityMatchTypedLimit) ||
399 (row.visit_count() > kLowQualityMatchVisitLimit) ||
400 (row.last_visit() >= real_threshold);
visit_database.cc 413 VisitRow row; local
414 if (!GetRowForVisit(to_visit, &row))
418 *from_visit = row.referring_visit;
425 statement.BindInt64(0, row.referring_visit);
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 199 String row[] = (String[]) res.rows.elementAt(0); local
200 assertEquals(Integer.parseInt(row[0]), 1);
201 assertEquals(Integer.parseInt(row[1]), 10);
202 assertEquals(Integer.parseInt(row[2]), 20);
482 String row[] = (String[]) res.rows.elementAt(0); local
483 assertEquals(Integer.parseInt(row[0]), 1);
484 assertEquals(Integer.parseInt(row[1]), 10);
485 assertEquals(Integer.parseInt(row[2]), 20);
565 String row[] = (String[]) res.rows.elementAt(0); local
566 String val = row[0]
626 String row[] = (String[]) res.rows.elementAt(0); local
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 672 for (int row = 0; row < rows; row++) {
673 height += table.getRowHeight(row);
1573 int row = devices.getSelectedRow(); local
1600 int row = windows.getSelectedRow(); local
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/css/
file_manager.css 220 .table-row-cell > * {
227 .detail-table li.table-row .table-row-cell:first-child div {
241 li.table-row:hover .file-checkbox,
247 li.table-row[selected] .file-checkbox,
  /external/libvpx/vp8/decoder/
decodframe.c 143 if (mv->row < (xd->mb_to_top_edge - (19 << 3)))
144 mv->row = xd->mb_to_top_edge - (16 << 3);
145 else if (mv->row > xd->mb_to_bottom_edge + (18 << 3))
146 mv->row = xd->mb_to_bottom_edge + (16 << 3);
155 mv->row = (2*mv->row < (xd->mb_to_top_edge - (19 << 3))) ? (xd->mb_to_top_edge - (16 << 3)) >> 1 : mv->row;
156 mv->row = (2*mv->row > xd->mb_to_bottom_edge + (18 << 3)) ? (xd->mb_to_bottom_edge + (16 << 3)) >> 1 : mv->row;
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DetailedHeapshotView.js 776 var row = event.target.enclosingNodeOrSelfWithNodeName("tr");
777 if (!row)
779 var nodeItem = row._dataGridNode;
839 var row = target.enclosingNodeOrSelfWithNodeName("tr");
840 if (!row)
842 var gridNode = row._dataGridNode;
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 207 #define _POINT(row, column)\
208 (image_src[(row)*step+(column)])
214 int row, col; local
274 for( row = 0; row < h; row++ )
276 fn += _POINT( row, col ) != 0;
283 for( row = 0; row < h; row++
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseGeneralTest.java 856 long row; local
    [all...]
  /external/libpng/
pngrutil.c 2733 png_bytep row = png_ptr->row_buf + 1; local
    [all...]
  /external/icu4c/i18n/
dtfmtsym.cpp 279 int32_t row, col; local
284 for (row=0; row<fZoneStringsRowCount; ++row)
286 fZoneStrings[row] = newUnicodeStringArray(fZoneStringsColCount);
287 if (fZoneStrings[row] == NULL) {
293 fZoneStrings[row][col].fastCopyFrom(otherStrings[row][col]);
299 for (int i = row; i >= 0; i--) {
402 for (int32_t row = 0; row < fZoneStringsRowCount; ++row)
    [all...]
  /external/chromium/chrome/browser/resources/keyboard/
main.js 81 * Set the position, a.k.a. row, of this key.
421 * @param {number} position The position of the row (0-3).
422 * @param {Array.<BaseKey>} keys The keys in the row.
425 function Row(position, keys) {
432 Row.prototype = {
434 * Get the total aspect ratio of the row.
446 * Create the DOM elements for the row.
447 * @return {Element} The top-level DOM Element for the row.
451 this.element_.className = 'row';
492 * Resizes all keys in the row according to the global size
    [all...]
  /external/libvpx/vp8/encoder/arm/armv6/
vp8_variance8x8_armv6.asm 61 add r0, r0, r1 ; set src_ptr to next row
64 add r2, r2, r3 ; set dst_ptr to next row
80 subs r12, r12, #1 ; next row
  /external/libvpx/vpx_scale/generic/
vpxscale.c 540 /* first row needs to be done so that we can stay one row ahead for vertical zoom */
556 else /* Duplicate the last row */
558 /* copy temp_area row 0 over from last row in the past */
570 /* copy temp_area row 0 over from last row in the past */
1055 int row = (dst_yuv_config->y_height - expanded_frame_height) \/ 2; local
1062 int row = (src_yuv_config->y_height - expanded_frame_height) \/ 2; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
png.c 572 int row; local
573 for (row = 0; row < (int)info_ptr->height; row++)
575 png_free(png_ptr, info_ptr->row_pointers[row]);
576 info_ptr->row_pointers[row]=NULL;
pngread.c 549 "Ignoring extra png_read_update_info() call; row buffer not reallocated");
571 png_read_row(png_structp png_ptr, png_bytep row, png_bytep dsp_row)
581 png_debug2(1, "in png_read_row (row %lu, pass %d)\n",
619 /* if interlaced and we do not need a new row, combine row and return */
696 png_error(png_ptr, "Invalid attempt to read row data");
786 if (row != NULL)
787 png_combine_row(png_ptr, row,
793 if (row != NULL)
794 png_combine_row(png_ptr, row, 0xff)
1330 int row; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GLUtils.cpp 466 int row, col; local
472 for (row = 0 ; row < bitmap.height(); row ++) {
473 uint8_t* dst = &(img[(buf->getStride() * (row + x) + y) * bpp]);
474 uint8_t* src = &(bitmapOrigin[bitmap.width() * row * bpp]);
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorTreeAdapterTest.java 229 * @param rowCount the row count
242 ArrayList<String> row = new ArrayList<String>(); local
244 row.add(prefix + i + "" + j);
246 list.add(row);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
OutputHLSL.cpp     [all...]
  /hardware/ti/omap4xxx/camera/
AppCallbackNotifier.cpp 443 unsigned int alignedRow, row; local
463 row = width*bytesPerPixel;
470 // Step 1: Y plane: iterate through each row and copy
472 memcpy(bufferDst, bufferSrc, row);
474 bufferDst += row;
486 bufferDst_UV = (uint16_t *) (((uint8_t*)dst)+row*height);
539 bufferDst_V = (uint16_t *) (((uint8_t*)dst)+row*height);
540 bufferDst_U = (uint16_t *) (((uint8_t*)dst)+row*height+row*height/4);
595 row = width*bytesPerPixel
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 389 for (int row = 0; row < height; ++row) {
391 int idx = row * width + col;
  /external/chromium/chrome/browser/accessibility/
renderer_accessibility_browsertest.cc 216 // child of both a row and a column, so it appears to use multiple
231 const WebAccessibility& row = table.children[0]; local
232 EXPECT_EQ(WebAccessibility::ROLE_ROW, row.role);
233 const WebAccessibility& cell1 = row.children[0];
235 const WebAccessibility& cell2 = row.children[1];

Completed in 731 milliseconds

<<11121314151617181920>>