HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 851 - 875 of 1524) sorted by null

<<31323334353637383940>>

  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseGeneralTest.java 822 long row; local
    [all...]
  /external/chromium_org/third_party/libpng/
pngrutil.c 2723 png_bytep row = png_ptr->row_buf + 1; local
    [all...]
pngread.c 574 "Ignoring extra png_read_update_info() call; row buffer not reallocated");
599 png_read_row(png_structp png_ptr, png_bytep row, png_bytep dsp_row)
610 png_debug2(1, "in png_read_row (row %lu, pass %d)",
650 /* If interlaced and we do not need a new row, combine row and return */
727 png_error(png_ptr, "Invalid attempt to read row data");
813 if (row != NULL)
814 png_combine_row(png_ptr, row,
820 if (row != NULL)
821 png_combine_row(png_ptr, row, 0xff)
1361 int row; local
    [all...]
  /external/libpng/
pngrutil.c 2739 png_bytep row = png_ptr->row_buf + 1; local
    [all...]
png.c 589 int row; local
590 for (row = 0; row < (int)info_ptr->height; row++)
592 png_free(png_ptr, info_ptr->row_pointers[row]);
593 info_ptr->row_pointers[row] = NULL;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TimelinePanel.js 148 // Define row height, should be in sync with styles for timeline graphs.
    [all...]
  /external/chromium_org/third_party/icu/source/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/icu4c/i18n/
dtfmtsym.cpp 264 int32_t row, col; local
269 for (row=0; row<fZoneStringsRowCount; ++row)
271 fZoneStrings[row] = newUnicodeStringArray(fZoneStringsColCount);
272 if (fZoneStrings[row] == NULL) {
278 fZoneStrings[row][col].fastCopyFrom(otherStrings[row][col]);
284 for (int i = row; i >= 0; i--) {
401 for (int32_t row = 0; row < fZoneStringsRowCount; ++row)
    [all...]
  /external/pixman/pixman/
pixman-bits-image.c 723 typedef uint32_t (* convert_pixel_t) (const uint8_t *row, int x);
816 uint8_t *row; local
825 row = (uint8_t *)bits->bits + bits->rowstride * 4 * ry;
826 pixel = convert_pixel (row, rx) | mask;
836 row = (uint8_t *)bits->bits + bits->rowstride * 4 * ry;
837 pixel = convert_pixel (row, rx) | mask;
1060 const uint8_t *row; local
1085 row = (uint8_t *)bits->bits + bits->rowstride * 4 * y0;
1087 buffer[i] = convert_pixel (row, x0) | mask;
1097 convert_a8r8g8b8 (const uint8_t *row, int x
    [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/chromium_org/cc/output/
render_surface_filters.cc 146 // (0 0 0 0 1) as a last row, and that would be applied to a 5-vector extended
168 bool ComponentNeedsClamping(SkScalar row[5]) {
169 SkScalar max_value = row[4] / 255.f;
170 SkScalar min_value = row[4] / 255.f;
172 if (row[i] > 0)
173 max_value += row[i];
175 min_value += row[i];
  /external/chromium_org/chrome/browser/resources/inspect/
inspect.css 25 -webkit-flex-direction: row;
135 .row {
240 -webkit-flex-direction: row;
  /external/libvpx/libvpx/vp8/common/arm/armv6/
vp8_variance8x8_armv6.asm 67 add r0, r0, r1 ; set src_ptr to next row
70 add r2, r2, r3 ; set dst_ptr to next row
86 subs r12, r12, #1 ; next row
  /external/libvpx/libvpx/vp8/decoder/
decodemv.c 113 mv->row = (short)(read_mvcomponent(r, mvc) << 1);
295 blockmv.as_mv.row = read_mvcomponent(bc, &mvc[0]) << 1;
296 blockmv.as_mv.row += best_mv.as_mv.row;
496 mbmi_mv->as_mv.row += near_mvs[near_index].as_mv.row;
666 mi++; /* skip left predictor each row */
  /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/chromium_org/chrome/browser/history/
history_types.h 54 // Holds all information globally associated with one URL (one row in the
81 // Sets the id of the row. The id should only be manually set when a row has
84 // row.
143 bool operator()(const URLRow& row) {
144 return row.url() == url_;
166 // The row ID of this URL from the history database. This is immutable except
167 // when retrieving the row from the database or when determining if the URL
171 // The URL of this row. Immutable except for the database which sets it
230 // ID of this row (visit ID, used a a referrer for other visits)
    [all...]
  /external/replicaisland/tools/
ExtractPoints.js 120 var row = Math.floor(tile.centerY / tileSizeY);
123 tile.yOffset = row * tileSizeY;
128 var tileIndex = Math.floor(row * tilesPerRow + column);
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 298 for (TimeZoneRow row : timezones) {
299 timeZones[0][i] = row.mId;
300 timeZones[1][i++] = row.mDisplayName;
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorAdapterTest.java 363 * @param rowCount the row count
375 Object[] row = new Object[colCount + 1]; local
378 row[j] = "" + i + "" + j;
380 row[colCount] = i;
381 cursor.addRow(row);
  /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];
  /external/chromium/chrome/browser/history/
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);
  /external/chromium/chrome/browser/sync/glue/
typed_url_change_processor.cc 157 if (!details->row.typed_count()) {
162 if (!history_backend_->GetVisitsForURL(details->row.id(), &visits) ||
169 DCHECK(static_cast<size_t>(details->row.visit_count()) == visits.size());
172 std::string tag = details->row.url().spec();
  /external/chromium_org/chrome/browser/chromeos/input_method/
candidate_window_view_unittest.cc 69 const CandidateView* row) {
70 EXPECT_EQ(shortcut, UTF16ToUTF8(row->shortcut_label_->text()));
71 EXPECT_EQ(candidate, UTF16ToUTF8(row->candidate_label_->text()));
72 EXPECT_EQ(annotation, UTF16ToUTF8(row->annotation_label_->text()));
340 // Checks all entry have same row height.
354 // Checks all entry have same row height.
368 // Checks all entry have same row height.
382 // Checks all entry have same row height.

Completed in 2894 milliseconds

<<31323334353637383940>>