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

<<11121314151617181920>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 310 for (int row = 0; row < height; ++row) {
312 int idx = row * width + col;
315 if ((row & 1) == 0 && (col & 1) == 0) {
316 int offset = row / 2 * width + col / 2 * 2;
325 for (int row = 0; row < height; ++row) {
327 int idx = row * width + col
    [all...]
  /external/chromium_org/content/browser/resources/media/
peer_connection_update_table.js 71 * Adds the update to the update table as a new row. The type of the update
81 var row = document.createElement('tr');
82 tableElement.firstChild.appendChild(row);
84 row.innerHTML = '<td>' + (new Date()).toLocaleString() + '</td>';
87 row.innerHTML += '<td>' + update.type + '</td>';
91 row.innerHTML += '<td><details><summary>' + update.type +
95 var details = row.cells[1].childNodes[0];
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Popover.js 425 var row = document.createElement("tr");
426 row.appendChild(this._createCell(title, "popover-details-row-title"));
427 row.appendChild(this._createCell(content, "popover-details-row-data"));
428 this._contentTable.appendChild(row);
436 var row = document.createElement("tr");
437 var titleCell = this._createCell(title, "popover-details-row-title");
440 row.appendChild(titleCell);
444 row.appendChild(cell)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DreamSettings.java 295 final View row = convertView != null ? convertView : createDreamInfoRow(parent);
296 row.setTag(dreamInfo);
299 ((ImageView) row.findViewById(android.R.id.icon)).setImageDrawable(dreamInfo.icon);
302 ((TextView) row.findViewById(android.R.id.title)).setText(dreamInfo.caption);
305 RadioButton radioButton = (RadioButton) row.findViewById(android.R.id.button1);
310 row.onTouchEvent(event);
316 View settingsDivider = row.findViewById(R.id.divider);
319 ImageView settingsButton = (ImageView) row.findViewById(android.R.id.button2);
327 mBackend.launchSettings((DreamInfo) row.getTag());
330 return row;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/DOM/resources/dom-perf/
gridsort.js 50 var row = table.insertRow(i);
52 var cell = row.insertCell(j);
83 // row. This way we can sort an array of SortHelper objects, and then
84 // use the sibling node pointers to move all values in a row to their
86 function SortHelper(row, index) {
88 var numCells = row.cells.length;
90 this.nodes[i] = row.cells[i].firstChild;
118 continue; // no need to move this row
  /external/chromium_org/third_party/mesa/src/src/glx/
singlepix.c 39 GLvoid * row, GLvoid * column, GLvoid * span)
82 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row);
112 GLenum type, GLvoid * row,
123 p(target, format, type, row, column, span);
179 __glEmptyImage(gc, 1, width, 1, 1, format, type, buf, row);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vs_surface_state.c 89 float *row = (float *)brw->vs.const_bo->virtual + i * 4; local
91 i, row[0], row[1], row[2], row[3]);
  /external/chromium_org/ui/views/examples/
table_example.cc 110 string16 TableExample::GetText(int row, int column_id) {
111 if (row == -1)
121 return ASCIIToUTF16(cells[row % 5][column_id]);
124 gfx::ImageSkia TableExample::GetIcon(int row) {
125 SkBitmap row_icon = row % 2 ? icon1_ : icon2_;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
Scaling.h 20 * NOTE It is assumed that the matrix does not have empty row or column,
88 { // Iterate until the infinite norm of each row and column is approximately 1
89 // Get the maximum value in each row and column
95 if ( Dr(it.row()) < abs(it.value()) )
96 Dr(it.row()) = abs(it.value());
119 it.valueRef() = it.value()/( Dr(it.row()) * Dc(it.col()) );
120 // Accumulate the norms of the row and column vectors
121 if ( DrRes(it.row()) < abs(it.value()) )
122 DrRes(it.row()) = abs(it.value());
  /external/libvpx/libvpx/vp8/encoder/
lookahead.c 112 int row, col, active_end; local
128 for (row = 0; row < mb_rows; ++row)
134 /* Find the first active macroblock in this row. */
141 /* No more active macroblock in this row. */
145 /* Find the end of active region in this row. */
156 row << 4,
  /external/libvpx/libvpx/vp9/common/
vp9_scale.c 30 scaled_y(mv->row, scale->sfc) + scale->y_offset_q4,
38 mv->row,
45 int row, int col) {
47 scale->y_offset_q4 = scaled_y(row << SUBPEL_BITS, scale->sfc) & SUBPEL_MASK;
51 int row, int col) {
  /external/libvpx/libvpx/vp9/encoder/
vp9_lookahead.c 92 int row, col, active_end; local
111 for (row = 0; row < mb_rows; ++row) {
115 // Find the first active macroblock in this row.
121 // No more active macroblock in this row.
125 // Find the end of active region in this row.
135 row << 4,
  /external/mesa3d/src/glx/
singlepix.c 39 GLvoid * row, GLvoid * column, GLvoid * span)
82 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row);
112 GLenum type, GLvoid * row,
123 p(target, format, type, row, column, span);
179 __glEmptyImage(gc, 1, width, 1, 1, format, type, buf, row);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_surface_state.c 89 float *row = (float *)brw->vs.const_bo->virtual + i * 4; local
91 i, row[0], row[1], row[2], row[3]);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ScrollingThroughListOfFocusablesTest.java 83 // move to next row
146 assertTrue("bottom of last row of last item should be at " +
165 // (make sure we are at last row of second item)
179 // move up to next row
186 // now we are at top row, should have caused scrolling, and fading edge...
194 assertEquals("top of selected row should be just below top vertical fading edge",
211 * @param row
215 int row) {
216 assertEquals("expecting selected row",
217 row, internalFocused.getSelectedRow())
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
TimeZoneNames.java 122 String[] row = zoneStrings[index]; local
124 return (style == TimeZone.LONG) ? row[LONG_NAME_DST] : row[SHORT_NAME_DST];
126 return (style == TimeZone.LONG) ? row[LONG_NAME] : row[SHORT_NAME];
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 146 inline Scalar coeff(Index row, Index col) const {
147 const Index outer = IsRowMajor ? row : col;
148 const Index inner = IsRowMajor ? col : row;
195 inline Scalar& coeffRef(Index row, Index col) {
196 const Index outer = IsRowMajor ? row : col;
197 const Index inner = IsRowMajor ? col : row;
206 if (col > row) //upper matrix
212 if (col < row) //lower matrix
240 inline Scalar coeffLower(Index row, Index col) const {
241 const Index outer = IsRowMajor ? row : col
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 135 int row; field in class:LockPatternView.Cell
149 * @param row The row of the cell.
152 private Cell(int row, int column) {
153 checkRange(row, column);
154 this.row = row;
159 return row;
167 * @param row The row of the cell
    [all...]
  /external/ceres-solver/internal/ceres/
schur_complement_solver.cc 200 // Add to the chunk until the first block in the row is
201 // different than the one in the first row for the chunk.
203 const CompressedRow& row = bs->rows[r]; local
204 if (row.cells.front().block_id != e_block_id) {
208 // Iterate over the blocks in the row, ignoring the first
210 for (int c = 1; c < row.cells.size(); ++c) {
211 const Cell& cell = row.cells[c];
228 const CompressedRow& row = bs->rows[r]; local
229 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks);
230 for (int i = 0; i < row.cells.size(); ++i)
    [all...]
  /external/chromium/base/metrics/
stats_table.cc 44 // If the first character of the counter_name is '\0', then that row is
133 int* row(int counter_id) const { function in class:base::StatsTable::Private
379 int* row = impl_->row(counter_id); local
380 return &(row[slot_id-1]);
399 int* row = impl_->row(index); local
402 rv += row[slot_id];
415 int row = FindCounter(name); local
416 if (!row)
    [all...]
  /external/chromium/chrome/browser/ui/views/
hung_renderer_view.cc 52 virtual string16 GetText(int row, int column_id);
53 virtual SkBitmap GetIcon(int row);
94 string16 HungPagesTableModel::GetText(int row, int column_id) {
95 DCHECK(row >= 0 && row < RowCount());
96 string16 title = tab_contentses_[row]->GetTitle();
106 SkBitmap HungPagesTableModel::GetIcon(int row) {
107 DCHECK(row >= 0 && row < RowCount());
108 return tab_contentses_.at(row)->GetFavicon()
    [all...]
  /external/chromium_org/base/metrics/
stats_table.cc 44 // If the first character of the counter_name is '\0', then that row is
133 int* row(int counter_id) const { function in class:base::StatsTable::Private
379 int* row = impl_->row(counter_id); local
380 return &(row[slot_id-1]);
399 int* row = impl_->row(index); local
402 rv += row[slot_id];
415 int row = FindCounter(name); local
416 if (!row)
    [all...]
  /external/chromium_org/cc/scheduler/
texture_uploader.cc 211 // Use 4-byte row alignment (OpenGL default) for upload performance.
225 // Strides not equal, so do a row-by-row memcpy from the
227 for (int row = 0; row < source_rect.height(); ++row)
228 memcpy(&sub_image_[upload_image_stride * row],
230 (offset.x() + (offset.y() + row) * image_rect.width())],
281 // Use 4-byte row alignment (OpenGL default) for upload performance.
309 // Strides not equal, so do a row-by-row memcpy from th
    [all...]
  /external/chromium_org/third_party/skia/include/utils/
SkMatrix44.h 197 * get a value from the matrix. The row,col parameters work as follows:
202 inline SkMScalar get(int row, int col) const {
203 SkASSERT((unsigned)row <= 3);
205 return fMat[col][row];
209 * set a value in the matrix. The row,col parameters work as follows:
214 inline void set(int row, int col, SkMScalar value) {
215 SkASSERT((unsigned)row <= 3);
217 fMat[col][row] = value;
221 inline double getDouble(int row, int col) const {
222 return SkMScalarToDouble(this->get(row, col))
    [all...]
  /external/eigen/Eigen/src/Core/
Transpose.h 120 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col)
123 return derived().nestedExpression().const_cast_derived().coeffRef(col, row);
132 inline const Scalar& coeffRef(Index row, Index col) const
134 return derived().nestedExpression().coeffRef(col, row);
142 inline CoeffReturnType coeff(Index row, Index col) const
144 return derived().nestedExpression().coeff(col, row);
153 inline const PacketScalar packet(Index row, Index col) const
155 return derived().nestedExpression().template packet<LoadMode>(col, row);
159 inline void writePacket(Index row, Index col, const PacketScalar& x)
161 derived().nestedExpression().const_cast_derived().template writePacket<LoadMode>(col, row, x)
    [all...]

Completed in 2435 milliseconds

<<11121314151617181920>>