/external/eigen/test/eigen2/ |
eigen2_submatrices.cpp | 42 Row.h Column.h Block.h Minor.h DiagonalCoeffs.h 72 //check row() and col() 73 VERIFY_IS_APPROX(m1.col(c1).transpose(), m1.transpose().row(c1)); 74 VERIFY_IS_APPROX(square.row(r1).eigen2_dot(m1.col(c1)), (square.lazy() * m1.conjugate())(r1,c1)); 75 //check operator(), both constant and non-constant, on row() and col() 76 m1.row(r1) += s1 * m1.row(r2); 84 VERIFY_IS_APPROX(m1.row(r1), br1); 132 VERIFY(ei_real(ones.row(r1).sum()) == RealScalar(cols)); 135 VERIFY(ei_real(ones.row(r1).eigen2_dot(ones.row(r2))) == RealScalar(cols)) [all...] |
/external/harfbuzz_ng/util/ |
helper-cairo-ansi.cc | 68 /* Drop first row while empty */ 81 /* Drop last row while empty */ 85 const uint32_t *row = data + (height - 1) * stride / 4; local 88 if (row[i] != bg_color) 95 height++; /* Add one last blank row for padding. */
|
/external/linux-tools-perf/util/ui/ |
browser.h | 22 void (*write)(struct ui_browser *self, void *entry, int row); 30 bool ui_browser__is_current_entry(struct ui_browser *self, unsigned row);
|
/external/webkit/Tools/QueueStatusServer/handlers/ |
dashboard.py | 52 row = { 57 return row
|
/packages/apps/Calendar/tests/src/com/android/calendar/widget/ |
CalendarAppWidgetServiceTest.java | 178 Object[] row = new Object[CalendarAppWidgetService.EVENT_PROJECTION.length]; local 179 row[CalendarAppWidgetService.INDEX_ALL_DAY] = new Integer(allDay); 180 row[CalendarAppWidgetService.INDEX_BEGIN] = new Long(begin); 181 row[CalendarAppWidgetService.INDEX_END] = new Long(end); 182 row[CalendarAppWidgetService.INDEX_TITLE] = new String(title); 183 row[CalendarAppWidgetService.INDEX_EVENT_LOCATION] = new String(location); 184 row[CalendarAppWidgetService.INDEX_EVENT_ID] = new Long(eventId); 185 return row;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridDropHandler.java | 114 // Row matches: 115 int row = (mGrid.getViewCount() == 0) ? 0 : mGrid.getClosestRow(y1); local 116 int rowY = mGrid.getRowY(row); 117 addTopMatch(y1, rowMatches, max, row, rowY); 118 addBaselineMatch(feedback.dragBaseline, y1, rowMatches, max, row, rowY); 179 int row = mGrid.getRow(y1); local 183 int topDistance = mGrid.getRowDistance(row, y1); 184 int bottomDistance = mGrid.getRowDistance(row + 1, y1); 193 row = Math.min(row + 1, mGrid.actualRowCount) 476 int row = mRowMatch.cellIndex; local 775 int row = mRowMatch.cellIndex; local [all...] |
/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...] |
/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/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/webkit/Source/WebCore/platform/image-encoders/skia/ |
JPEGImageEncoder.cpp | 109 Vector<JSAMPLE> row; local 138 row.resize(cinfo.image_width * cinfo.input_components); 141 preMultipliedBGRAtoRGB(pixels, cinfo.image_width, row.data()); 143 RGBAtoRGB(pixels, cinfo.image_width, row.data()); 144 jpeg_write_scanlines(&cinfo, row.dataSlot(), 1);
|
/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 | 203 // Add to the chunk until the first block in the row is 204 // different than the one in the first row for the chunk. 206 const CompressedRow& row = bs->rows[r]; local 207 if (row.cells.front().block_id != e_block_id) { 211 // Iterate over the blocks in the row, ignoring the first 213 for (int c = 1; c < row.cells.size(); ++c) { 214 const Cell& cell = row.cells[c]; 231 const CompressedRow& row = bs->rows[r]; local 232 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks); 233 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/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...] |
/external/qemu/distrib/jpeg-6b/ |
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...] |
/external/skia/include/utils/ |
SkMatrix44.h | 195 * get a value from the matrix. The row,col parameters work as follows: 200 inline SkMScalar get(int row, int col) const { 201 SkASSERT((unsigned)row <= 3); 203 return fMat[col][row]; 207 * set a value in the matrix. The row,col parameters work as follows: 212 inline void set(int row, int col, SkMScalar value) { 213 SkASSERT((unsigned)row <= 3); 215 fMat[col][row] = value; 219 inline double getDouble(int row, int col) const { 220 return SkMScalarToDouble(this->get(row, col)) [all...] |
/libcore/luni/src/test/java/libcore/sqlite/ |
OldFunctionContextTest.java | 51 String row[] = (String[]) res.rows.elementAt(0); local 52 String val = row[0]; 64 String row[] = (String[]) res.rows.elementAt(0); local 65 String val = row[0]; 77 String row[] = (String[]) res.rows.elementAt(0); local 78 String val = row[0]; 122 String row[] = (String[]) res.rows.elementAt(0); local 123 String val = row[0]; 160 String row[] = (String[]) res.rows.elementAt(0); local 161 String val = row[0] [all...] |
/external/openssl/apps/ |
ca.c | 1721 OPENSSL_STRING row[DB_NUMBER]; local 2414 char *row[DB_NUMBER],**rrow,**irow; local 2531 char *row[DB_NUMBER],**rrow; local [all...] |