Searched refs:row (Results 51 - 75 of 1435) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableSectionElement.cpp55 // these functions are rather slow, since we need to get the row at
66 RefPtrWillBeRawPtr<HTMLTableRowElement> row = HTMLTableRowElement::create(document()); local
68 appendChild(row, exceptionState);
70 insertBefore(row, children->item(index), exceptionState);
71 return row.release();
81 RefPtrWillBeRawPtr<Element> row = children->item(index); local
82 HTMLElement::removeChild(row.get(), exceptionState);
91 for (const HTMLTableRowElement* row = Traversal<HTMLTableRowElement>::firstChild(*this); row; row
[all...]
/external/libhevc/common/
H A Dihevc_chroma_intra_pred_filters.c475 WORD32 row, col; local
497 for(row = 0; row < nt; row++)
501 pu1_dst[row * dst_strd + col] = ((nt - 1 - col / 2)
502 * pu1_ref[2 * (two_nt - 1 - row)]
504 + (nt - 1 - row) * pu1_ref[2 * (two_nt + 1) + col]
505 + (row + 1) * pu1_ref[2 * (nt - 1)] + nt) >> (log2nt + 1);
507 pu1_dst[row * dst_strd + col + 1] = ((nt - 1 - col / 2)
508 * pu1_ref[2 * (two_nt - 1 - row)
566 WORD32 row, col; local
667 WORD32 row, col; local
728 WORD32 row, col; local
788 WORD32 row, col; local
855 WORD32 row, col; local
928 WORD32 row, col; local
1021 WORD32 row, col, k; local
1138 WORD32 row, col, k; local
1245 WORD32 row, col; local
[all...]
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalysis_results.js53 appendTableCell_: function(table, row, cellnum, text) {
54 var td = this.appendElement_(row, 'td', text);
59 appendTableCell: function(table, row, text) {
60 return this.appendTableCell_(table, row, row.children.length, text);
63 appendTableCellWithTooltip_: function(table, row, cellnum, text, tooltip) {
65 var td = this.appendElement_(row, 'td');
72 this.appendTableCell_(table, row, cellnum, text);
89 * Creates and appends a row to |table| with a left-aligned |label]
102 * Creates and appends a row t
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A Dmmap.js84 for (var row = 0; row < this.mapsData_.getNumberOfRows(); ++row) {
85 mappedFile = this.mapsData_.getValue(row, this.COL_FILE);
86 protFlags = this.mapsData_.getValue(row, this.COL_PROT);
89 rows.push(row);
90 totPrivDirty += this.mapsData_.getValue(row, this.COL_PRIV_DIRTY);
91 totPrivClean += this.mapsData_.getValue(row, this.COL_PRIV_CLEAN);
92 totSharedDirty += this.mapsData_.getValue(row,this.COL_SHARED_DIRTY);
93 totSharedClean += this.mapsData_.getValue(row, thi
[all...]
/external/libpng/contrib/examples/
H A Dpngpixel.c10 * This code illustrates basic 'by-row' reading of a PNG file using libpng.
30 /* Return component 'c' of pixel 'x' from the given row. */
32 component(png_const_bytep row, png_uint_32 x, unsigned int c, argument
37 * bytes wide. Since the row fitted into memory, however, the following must
43 row = (png_const_bytep)(((PNG_CONST png_byte (*)[8])row) + bit_offset_hi);
44 row += bit_offset_lo >> 3;
53 case 1: return (row[0] >> (7-bit_offset_lo)) & 0x01;
54 case 2: return (row[0] >> (6-bit_offset_lo)) & 0x03;
55 case 4: return (row[
71 print_pixel(png_structp png_ptr, png_infop info_ptr, png_const_bytep row, png_uint_32 x) argument
154 volatile png_bytep row = NULL; local
[all...]
/external/ceres-solver/internal/ceres/
H A Dlinear_least_squares_problems.cc312 CompressedRow& row = bs->rows.back(); local
313 row.block.size = 1;
314 row.block.position = 0;
315 row.cells.push_back(Cell(0, 0));
316 row.cells.push_back(Cell(2, 1));
325 CompressedRow& row = bs->rows.back(); local
326 row.block.size = 1;
327 row.block.position = 1;
328 row.cells.push_back(Cell(0, 2));
329 row
338 CompressedRow& row = bs->rows.back(); local
351 CompressedRow& row = bs->rows.back(); local
364 CompressedRow& row = bs->rows.back(); local
378 CompressedRow& row = bs->rows.back(); local
444 CompressedRow& row = bs->rows.back(); local
454 CompressedRow& row = bs->rows.back(); local
464 CompressedRow& row = bs->rows.back(); local
474 CompressedRow& row = bs->rows.back(); local
484 CompressedRow& row = bs->rows.back(); local
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dgesture_config.css43 .row {
44 display: table-row;
47 .row-label {
54 html[dir=rtl] .row-label {
58 .row-input {
62 .row-units {
68 html[dir=rtl] .row-units {
72 .row-reset {
83 #section-row-template,
/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor_table.cc24 const predictors::AutocompleteActionPredictorTable::Row& row,
26 DCHECK(base::IsValidGUID(row.id));
27 statement->BindString(0, row.id);
28 statement->BindString16(1, row.user_text.substr(0, kMaxDataLength));
29 statement->BindString(2, row.url.spec().substr(0, kMaxDataLength));
30 statement->BindInt(3, row.number_of_hits);
31 statement->BindInt(4, row.number_of_misses);
36 predictors::AutocompleteActionPredictorTable::Row* row) {
40 row->id = statement->ColumnString(0);
41 row
23 BindRowToStatement( const predictors::AutocompleteActionPredictorTable::Row& row, sql::Statement* statement) argument
34 StepAndInitializeRow( sql::Statement* statement, predictors::AutocompleteActionPredictorTable::Row* row) argument
69 Row(const Row& row) argument
78 GetRow(const Row::Id& id, Row* row) argument
111 AddRow( const AutocompleteActionPredictorTable::Row& row) argument
120 UpdateRow( const AutocompleteActionPredictorTable::Row& row) argument
[all...]
/external/chromium_org/tools/telemetry/telemetry/results/
H A Dcsv_output_formatter.py52 row = ['page_name']
55 row.append('%s (%s)' % (value_name, units))
56 csv_writer.writerow(row)
62 row = [page.display_name]
70 row.append('%s' % value.GetRepresentativeNumber())
72 row.append('-')
73 csv_writer.writerow(row)
/external/libpng/contrib/libtests/
H A Dreadpng.c13 * reading each file by row. The test does nothing with the read result and
39 png_bytep row = NULL, display = NULL; local
47 if (row != NULL) free(row);
65 row = malloc(rowbytes);
68 if (row == NULL || display == NULL)
69 png_error(png_ptr, "OOM allocating row buffers");
82 /* NOTE: this trashes the row each time; interlace handling won't
86 png_read_row(png_ptr, row, display);
94 free(row);
[all...]
/external/libhevc/common/arm/
H A Dihevc_intra_pred_filters_chroma_mode_11_to_17.s307 vadd.s8 d8, d8, d27 @ref_main_idx (add row)
308 vsub.s8 d8, d8, d26 @ref_main_idx (row 0)
309 vadd.s8 d9, d8, d29 @ref_main_idx + 1 (row 0)
310 vtbl.8 d12, {d0,d1,d2,d3}, d8 @load from ref_main_idx (row 0)
313 vtbl.8 d13, {d0,d1,d2,d3}, d9 @load from ref_main_idx + 1 (row 0)
314 vadd.s8 d4, d8, d29 @ref_main_idx (row 1)
315 vadd.s8 d5, d9, d29 @ref_main_idx + 1 (row 1)
317 @ mov r0, #4 @ 2 *(row * 2 )
320 vtbl.8 d16, {d0,d1,d2,d3}, d4 @load from ref_main_idx (row 1)
321 vmull.u8 q12, d12, d7 @mul (row
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dpropsvec.c33 int32_t prevRow; /* search optimization: remember last row seen */
44 uint32_t *v, *row; local
70 /* set the all-Unicode row and the special-value rows */
71 row=pv->v;
72 uprv_memset(row, 0, pv->rows*columns*4);
73 row[0]=0;
74 row[1]=0x110000;
75 row+=columns;
77 row[0]=cp;
78 row[
94 uint32_t *row; local
279 uint32_t *row; local
293 uint32_t *row; local
335 uint32_t *row; local
496 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) argument
[all...]
/external/icu/icu4c/source/common/
H A Dpropsvec.c33 int32_t prevRow; /* search optimization: remember last row seen */
44 uint32_t *v, *row; local
70 /* set the all-Unicode row and the special-value rows */
71 row=pv->v;
72 uprv_memset(row, 0, pv->rows*columns*4);
73 row[0]=0;
74 row[1]=0x110000;
75 row+=columns;
77 row[0]=cp;
78 row[
94 uint32_t *row; local
279 uint32_t *row; local
293 uint32_t *row; local
335 uint32_t *row; local
496 upvec_compactToUTrie2Handler(void *context, UChar32 start, UChar32 end, int32_t rowIndex, uint32_t *row, int32_t columns, UErrorCode *pErrorCode) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXARIAGrid.cpp59 AXTableRow* row = toAXTableRow(child);
60 if (appendedRows.contains(row))
64 unsigned rowCellCount = row->children().size();
68 row->setRowIndex((int)m_rows.size());
69 m_rows.append(row);
71 // Try adding the row if it's not ignoring accessibility,
73 if (!row->accessibilityIsIgnored())
74 m_children.append(row);
76 m_children.appendVector(row->children());
78 appendedRows.add(row);
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macmouse.c56 int row, bytes; local
74 for ( row=0; row<h; ++row ) {
75 SDL_memcpy(&cursor->curs.data[row], data, bytes);
78 for ( row=0; row<h; ++row ) {
79 SDL_memcpy(&cursor->curs.mask[row], mask, bytes);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_tile.c42 unsigned row; /* current source row */ local
49 for (row = 0; row < height; row += tile_height)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
73 unsigned row; /* current source row */ local
104 unsigned row; /* current source row */ local
135 unsigned row; /* current source row */ local
166 unsigned row; /* current source row */ local
256 unsigned row; /* current destination row */ local
289 unsigned row; /* current destination row */ local
322 unsigned row; /* current destination row */ local
355 unsigned row; /* current destination row */ local
388 unsigned row; /* current destination row */ local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_tile.c42 unsigned row; /* current source row */ local
49 for (row = 0; row < height; row += tile_height)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
73 unsigned row; /* current source row */ local
104 unsigned row; /* current source row */ local
135 unsigned row; /* current source row */ local
166 unsigned row; /* current source row */ local
256 unsigned row; /* current destination row */ local
289 unsigned row; /* current destination row */ local
322 unsigned row; /* current destination row */ local
355 unsigned row; /* current destination row */ local
388 unsigned row; /* current destination row */ local
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_tile.c42 unsigned row; /* current source row */ local
49 for (row = 0; row < height; row += tile_height)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
73 unsigned row; /* current source row */ local
104 unsigned row; /* current source row */ local
135 unsigned row; /* current source row */ local
166 unsigned row; /* current source row */ local
256 unsigned row; /* current destination row */ local
289 unsigned row; /* current destination row */ local
322 unsigned row; /* current destination row */ local
355 unsigned row; /* current destination row */ local
388 unsigned row; /* current destination row */ local
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_tile.c42 unsigned row; /* current source row */ local
49 for (row = 0; row < height; row += tile_height)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
73 unsigned row; /* current source row */ local
104 unsigned row; /* current source row */ local
135 unsigned row; /* current source row */ local
166 unsigned row; /* current source row */ local
256 unsigned row; /* current destination row */ local
289 unsigned row; /* current destination row */ local
322 unsigned row; /* current destination row */ local
355 unsigned row; /* current destination row */ local
388 unsigned row; /* current destination row */ local
[all...]
/external/chromium_org/chrome/browser/history/android/
H A Dsql_handler.h46 // value stored in |row|. Return true if the update succeeds.
47 virtual bool Update(const HistoryAndBookmarkRow& row,
50 // Inserts the given |row|, return true on success; The id of insertted row
51 // should be set in |row|, so other implemnetations could use it to complete
53 virtual bool Insert(HistoryAndBookmarkRow* row) = 0;
59 // Return true if |row| has a value explicitly set for at least one of the
60 // columns in |row| that are known to this class.
61 bool HasColumnIn(const HistoryAndBookmarkRow& row);
H A Dvisit_sql_handler.cc31 // The created time is updated according the given |row|.
37 // Visit row is insertted/removed to keep consistent with urls table.
42 bool VisitSQLHandler::Update(const HistoryAndBookmarkRow& row, argument
60 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) ||
67 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
69 if (!AddVisit(id->url_id, row.created()))
81 bool VisitSQLHandler::Insert(HistoryAndBookmarkRow* row) { argument
82 DCHECK(row->is_value_set_explicitly(HistoryAndBookmarkRow::URL_ID));
85 if (!history_db_->GetURLRow(row->url_id(), &url_row))
93 // Add a row i
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/
H A Domnibox_popup_matrix.h18 virtual void OnMatrixRowSelected(OmniboxPopupMatrix* matrix, size_t row) = 0;
20 // Called when the user clicks on a row.
21 virtual void OnMatrixRowClicked(OmniboxPopupMatrix* matrix, size_t row) = 0;
23 // Called when the user middle clicks on a row.
25 size_t row) = 0;
41 // Return the currently highlighted row. Returns -1 if no row is highlighted.
/external/chromium_org/third_party/markdown/extensions/
H A Dtables.py90 for row in rows:
91 self._build_row(row.strip(), tbody, align, border)
93 def _build_row(self, row, parent, align, border):
94 """ Given a row of text, build table cells. """
99 cells = self._split_row(row, border)
100 # We use align here rather than cells to ensure every row
111 def _split_row(self, row, border):
112 """ split a row of text into list of cells. """
114 if row.startswith('|'):
115 row
[all...]
/external/chromium_org/ui/views/controls/table/
H A Dtest_table_model.cc25 base::string16 TestTableModel::GetText(int row, int column_id) { argument
26 return base::ASCIIToUTF16(base::IntToString(row) + "x" +
30 gfx::ImageSkia TestTableModel::GetIcon(int row) { argument
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineInplaceLU.h127 for (Index row = 0; row < rows; row++) {
128 const double pivot = m_lu.coeffDiag(row);
131 const Index& col = row;
138 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++) {
139 typename MatrixType::InnerUpperIterator uItPivot(m_lu, row);
143 uItPivot += (rrow - row - 1);
157 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++) {
158 typename MatrixType::InnerUpperIterator uItPivot(m_lu, row);
[all...]

Completed in 666 milliseconds

1234567891011>>