/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
TestDocumentsProvider.java | 126 final RowBuilder row = result.newRow(); local 127 row.add(Root.COLUMN_ROOT_ID, MY_ROOT_ID); 128 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_RECENTS); 129 row.add(Root.COLUMN_TITLE, "_Test title which is really long"); 130 row.add(Root.COLUMN_SUMMARY, 132 row.add(Root.COLUMN_DOCUMENT_ID, MY_DOC_ID); 133 row.add(Root.COLUMN_AVAILABLE_BYTES, 1024); 355 final RowBuilder row = result.newRow(); local 356 row.add(Document.COLUMN_DOCUMENT_ID, docId); 357 row.add(Document.COLUMN_DISPLAY_NAME, docId) [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) + scale->y_offset_q4, 38 mv->row, 45 int row, int col) { 47 scale->y_offset_q4 = scaled_y(row << SUBPEL_BITS, scale) & 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...] |
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/ |
Cinematic.java | 351 Map<String, Object> row = data.get(type); local 352 if (row == null) { 353 row = new HashMap<String, Object>(); 355 row.put(name, object); 360 Map<String, Object> row = eventsData.get(type); local 361 if (row != null) { 362 return row.get(name); 370 Map<String, Object> row = eventsData.get(type); local 371 if (row != null) { 372 row.remove(name) [all...] |
/external/jpeg/ |
jcprepct.c | 33 * For the simple (no-context-row) case, we just need to buffer one 34 * row group's worth of pixels for the downsampling step. At the bottom of 35 * the image, we pad to a full row group by replicating the last pixel row. 36 * The downsampler's last output row is then replicated if needed to pad 37 * out to a full iMCU row. 39 * When providing context rows, we must buffer three row groups' worth of 40 * pixels. Three row groups are physically allocated, but the row pointer 41 * arrays are made five row groups high, with the extra pointers above an 109 register int row; local 219 int row; local [all...] |