/external/eigen/Eigen/src/Core/ |
Replicate.h | 92 inline Scalar coeff(Index row, Index col) const 96 : RowFactor==1 ? row 97 : row%m_matrix.rows(); 105 inline PacketScalar packet(Index row, Index col) const 108 : RowFactor==1 ? row 109 : row%m_matrix.rows(); 160 * \return an expression of the replication of each column (or row) of \c *this
|
Block.h | 107 /** Column or Row constructor 111 // It is a row if and only if BlockRows==1 and BlockCols==XprType::ColsAtCompileTime, 155 inline Scalar& coeffRef(Index row, Index col) 159 .coeffRef(row + m_startRow.value(), col + m_startCol.value()); 162 inline const Scalar& coeffRef(Index row, Index col) const 165 .coeffRef(row + m_startRow.value(), col + m_startCol.value()); 168 EIGEN_STRONG_INLINE const CoeffReturnType coeff(Index row, Index col) const 170 return m_xpr.coeff(row + m_startRow.value(), col + m_startCol.value()); 196 inline PacketScalar packet(Index row, Index col) const 199 (row + m_startRow.value(), col + m_startCol.value()) [all...] |
/external/eigen/test/ |
product_syrk.cpp | 76 VERIFY_IS_APPROX((m2.template selfadjointView<Lower>().rankUpdate(m1.row(c),s1)._expression()), 77 ((s1 * m1.row(c).transpose() * m1.row(c).transpose().adjoint()).eval().template triangularView<Lower>().toDenseMatrix())); 80 VERIFY_IS_APPROX((m2.template selfadjointView<Upper>().rankUpdate(m1.row(c).adjoint(),s1)._expression()), 81 ((s1 * m1.row(c).adjoint() * m1.row(c).adjoint().adjoint()).eval().template triangularView<Upper>().toDenseMatrix()));
|
/external/libvpx/libvpx/vp9/common/ |
vp9_mvref_common.c | 138 mv.as_mv.row *= -1; 176 return !(mi_row + mv->row < 0 || 178 mi_row + mv->row >= cm->mi_rows || 207 const MODE_INFO *const candidate_mi = xd->mi_8x8[mv_ref->col + mv_ref->row 235 mv_ref->row 265 mv_ref->row
|
/external/qemu/ |
vnchextile.h | 16 uint8_t *row = vs->server.ds->data + y * ds_get_linesize(vs->ds) + x * ds_get_bytes_per_pixel(vs->ds); local 17 pixel_t *irow = (pixel_t *)row; 88 irow = (pixel_t *)row; 114 irow = (pixel_t *)row; 200 vs->write_pixels(vs, row, w * ds_get_bytes_per_pixel(vs->ds)); 201 row += ds_get_linesize(vs->ds);
|
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/ |
SelectCalendarsSyncFragment.java | 163 for (CalendarRow row : changes.values()) { 164 if (row.synced == row.originalSynced) { 167 long id = row.id; 170 Uri uri = ContentUris.withAppendedId(Calendars.CONTENT_URI, row.id); 173 int synced = row.synced ? 1 : 0;
|
/external/libpng/contrib/gregbook/ |
rpng-x.c | 691 ulg i, row, lastrow = 0; local 708 for (lastrow = row = 0; row < image_height; ++row) { 709 src = image_data + row*image_rowbytes; 710 dest = ximage->data + row*ximage_rowbytes; 771 if (((row+1) & 0xf) == 0) { 775 lastrow = row + 1; 782 for (lastrow = row = 0; row < image_height; ++row) [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
SmsProvider.java | 238 Object[] row = new Object[13]; local 239 row[0] = message.getServiceCenterAddress(); 240 row[1] = message.getDisplayOriginatingAddress(); 241 row[2] = String.valueOf(message.getMessageClass()); 242 row[3] = message.getDisplayMessageBody(); 243 row[4] = message.getTimestampMillis(); 244 row[5] = Sms.STATUS_NONE; 245 row[6] = message.getIndexOnIcc(); 246 row[7] = message.isStatusReportMessage(); 247 row[8] = "sms" [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
restsnew.cpp | 326 int32_t count, row=0, col=0; local 347 row=0; 351 row=count; 357 expected+=itoa(row, buf); 358 ResourceBundle rowbundle=bundle.get(row, err); 365 expected+=itoa(row, buf); 537 int32_t count, row=0, col=0; local 559 row=0; 563 row=count; 569 expected+=itoa(row, buf) 636 int32_t i,j,row,col, actual_bundle; local [all...] |
/external/icu4c/test/intltest/ |
restsnew.cpp | 326 int32_t count, row=0, col=0; local 347 row=0; 351 row=count; 357 expected+=itoa(row, buf); 358 ResourceBundle rowbundle=bundle.get(row, err); 365 expected+=itoa(row, buf); 537 int32_t count, row=0, col=0; local 559 row=0; 563 row=count; 569 expected+=itoa(row, buf) 636 int32_t i,j,row,col, actual_bundle; local [all...] |
/external/ceres-solver/internal/ceres/ |
visibility_based_preconditioner.cc | 238 // Iterate over each row of the matrix. The block structure of the 240 // blocks. Thus all row blocks containing an e_block/point occur 242 // parameter block in each row block. These structural assumptions 261 const CompressedRow& row = bs.rows[r]; local 262 if (row.cells.front().block_id != e_block_id) { 266 // Iterate over the blocks in the row, ignoring the first block 269 for (int c = 1; c < row.cells.size(); ++c) { 270 const Cell& cell = row.cells[c]; 292 const CompressedRow& row = bs.rows[r]; local 293 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks) [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
gtk_tree.cc | 27 int row = GetRowNumForPath(path); local 29 return row; 36 int row = GetRowNumForPath(child_path); local 38 return row; 41 void SelectAndFocusRowNum(int row, GtkTreeView* tree_view) { 48 if (!gtk_tree_model_iter_nth_child(model, &iter, NULL, row)) { 111 // Every group consists of a header and a separator row, and there is a blank 112 // row between groups. 176 void TableAdapter::AddNodeToList(int row) { 178 int list_store_index = GetListStoreIndexForModelRow(row); [all...] |
/external/chromium_org/chrome/browser/ui/gtk/ |
gtk_tree.cc | 29 int row = GetRowNumForPath(path); local 31 return row; 38 int row = GetRowNumForPath(child_path); local 40 return row; 43 void SelectAndFocusRowNum(int row, GtkTreeView* tree_view) { 50 if (!gtk_tree_model_iter_nth_child(model, &iter, NULL, row)) { 113 // Every group consists of a header and a separator row, and there is a blank 114 // row between groups. 178 void TableAdapter::AddNodeToList(int row) { 180 int list_store_index = GetListStoreIndexForModelRow(row); [all...] |
/external/chromium_org/tools/code_coverage/ |
croc_html.py | 231 row = table.E('tr') 235 item_elem = row.E('td') 245 percent = row.E('td') 248 row.E('td', e_class='number').Text(stat_cov) 249 row.E('td', e_class='number').Text(stat_ins) 250 row.E('td', e_class='number').Text(stat_exe - stat_ins) 253 graph = row.E('td', e_class='graph', width=100) 280 row.E('td', e_class='stat').Text(attrs.get('language')) 281 row.E('td', e_class='stat').Text(attrs.get('group')) 283 row.E('td', colspan=2 [all...] |
/external/emma/core/java12/com/vladium/emma/report/txt/ |
ReportGenerator.java | 144 // [all] coverage summary row: 147 // header row: 150 // coverage row: 157 row ("total packages:" + m_separator + item.getChildCount ()); 158 row ("total classes:" + m_separator + item.getAggregate (IItem.TOTAL_CLASS_COUNT)); 159 row ("total methods:" + m_separator + item.getAggregate (IItem.TOTAL_METHOD_COUNT)); 163 row ("total executable files:" + m_separator + item.getAggregate (IItem.TOTAL_SRCFILE_COUNT)); 166 row ("total executable lines:" + m_separator + item.getAggregate (IItem.TOTAL_LINE_COUNT)); 183 // header row: 188 // coverage row 340 row (new StringBuffer (text).append (":")); method 415 private void row (final StringBuffer str) method in class:ReportGenerator 430 private void row (final String str) method in class:ReportGenerator [all...] |
/external/opencv/otherlibs/highgui/ |
grfmt_jpeg2000.cpp | 458 jas_matrix_t *row = jas_matrix_create( 1, w ); local 459 if(!row) 467 jas_matrix_setv( row, x, data[x * ncmpts + i] ); 468 jas_image_writecmpt( img, i, 0, y, w, 1, row ); 472 jas_matrix_destroy( row ); 481 jas_matrix_t *row = jas_matrix_create( 1, w ); local 482 if(!row) 490 jas_matrix_setv( row, x, data[x * ncmpts + i] ); 491 jas_image_writecmpt( img, i, 0, y, w, 1, row ); 495 jas_matrix_destroy( row ); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
csv.py | 104 row = self.reader.next() 110 while row == []: 111 row = self.reader.next() 112 d = dict(zip(self.fieldnames, row)) 114 lr = len(row) 116 d[self.restkey] = row[lf:] 280 each row. However, due to malformed data, it may not. We don't want 385 # row, then the first row is presumed to be labels. If the type 390 # subtracting from the likelihood of the first row being a header [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
csv.py | 104 row = self.reader.next() 110 while row == []: 111 row = self.reader.next() 112 d = dict(zip(self.fieldnames, row)) 114 lr = len(row) 116 d[self.restkey] = row[lf:] 280 each row. However, due to malformed data, it may not. We don't want 385 # row, then the first row is presumed to be labels. If the type 390 # subtracting from the likelihood of the first row being a header [all...] |
/external/chromium_org/third_party/libpng/ |
pngtrans.c | 2 /* pngtrans.c - transforms the data in a row (used by both readers and writers) 205 png_do_invert(png_row_infop row_info, png_bytep row) 213 if (row == NULL || row_info == NULL) 218 png_bytep rp = row; 231 png_bytep rp = row; 244 png_bytep rp = row; 261 png_do_swap(png_row_infop row_info, png_bytep row) 267 row != NULL && row_info != NULL && 271 png_bytep rp = row; 393 png_do_packswap(png_row_infop row_info, png_bytep row) [all...] |
/external/libpng/ |
pngtrans.c | 2 /* pngtrans.c - transforms the data in a row (used by both readers and writers) 205 png_do_invert(png_row_infop row_info, png_bytep row) 213 if (row == NULL || row_info == NULL) 218 png_bytep rp = row; 231 png_bytep rp = row; 244 png_bytep rp = row; 261 png_do_swap(png_row_infop row_info, png_bytep row) 267 row != NULL && row_info != NULL && 271 png_bytep rp = row; 393 png_do_packswap(png_row_infop row_info, png_bytep row) [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
pngtrans.c | 2 /* pngtrans.c - transforms the data in a row (used by both readers and writers) 176 png_do_invert(png_row_infop row_info, png_bytep row) 183 if (row == NULL || row_info == NULL) 188 png_bytep rp = row; 201 png_bytep rp = row; 214 png_bytep rp = row; 231 png_do_swap(png_row_infop row_info, png_bytep row) 236 row != NULL && row_info != NULL && 240 png_bytep rp = row; 362 png_do_packswap(png_row_infop row_info, png_bytep row) [all...] |
/external/chromium_org/chrome/browser/extensions/api/history/ |
history_api.cc | 67 scoped_ptr<HistoryItem> GetHistoryItem(const history::URLRow& row) { 70 history_item->id = base::Int64ToString(row.id()); 71 history_item->url.reset(new std::string(row.url().spec())); 72 history_item->title.reset(new std::string(UTF16ToUTF8(row.title()))); 74 new double(MilliSecondsFromTime(row.last_visit()))); 75 history_item->typed_count.reset(new int(row.typed_count())); 76 history_item->visit_count.reset(new int(row.visit_count())); 81 scoped_ptr<VisitItem> GetVisitItem(const history::VisitRow& row) { 84 visit_item->id = base::Int64ToString(row.url_id); 85 visit_item->visit_id = base::Int64ToString(row.visit_id) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/ |
calendarPicker.js | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTableElement.cpp | 198 RefPtr<HTMLTableRowElement> row = 0; local 203 row = HTMLTableRowsCollection::rowAfter(this, lastRow.get()); 204 if (!row) { 211 lastRow = row; 217 parent = row ? row->parentNode() : lastRow->parentNode(); 230 parent->insertBefore(newRow, row.get(), es, AttachLazily); 236 HTMLTableRowElement* row = 0; local 238 row = HTMLTableRowsCollection::lastRow(this); 241 row = HTMLTableRowsCollection::rowAfter(this, row) [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkRegion_rects.cpp | 70 struct Row { 76 SkTDArray<Row> fRows; 95 SkRegion::RunType* row = (SkRegion::RunType*)fAlloc.allocThrow(size); 96 SkRegion::RunType* rowHead = row; 101 // record the L R values for this row 108 *row++ = edge->fX; 122 *row++ = currR; 123 *row++ = edge->fX; 131 *row++ = currR; 134 int rowCount = row - rowHead [all...] |