/external/eigen/Eigen/src/SparseCore/ |
SparseTranspose.h | 42 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); } function in class:Eigen::TransposeImpl::InnerIterator 43 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); } 55 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); } function in class:Eigen::TransposeImpl::ReverseInnerIterator 56 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
|
/external/eigen/doc/examples/ |
Tutorial_BlockOperations_colrow.cpp | 13 cout << "2nd Row: " << m.row(1) << endl;
|
/external/guava/guava-gwt/src/com/google/common/collect/ |
TreeBasedTable_CustomFieldSerializer.java | 50 for (Entry<?, ?> row : backingMap.entrySet()) { 51 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue()); 61 * Therefore, the backing map is GWT serializable (assuming the row, 62 * column, value, the row comparator and column comparator are all
|
/frameworks/base/core/java/android/util/ |
DayOfMonthCursor.java | 24 * <li>Keeps track of current cursor position (row, column)</li> 63 public void setSelectedRowColumn(int row, int col) { 64 mRow = row; 74 * depending on whether the selection is in the first or last row. 91 public boolean isSelected(int row, int column) { 92 return (mRow == row) && (mColumn == column);
|
/packages/apps/Calendar/src/com/android/calendar/ |
DayOfMonthCursor.java | 26 * <li>Keeps track of current cursor position (row, column)</li> 65 public void setSelectedRowColumn(int row, int col) { 66 mRow = row; 76 * depending on whether the selection is in the first or last row. 93 public boolean isSelected(int row, int column) { 94 return (mRow == row) && (mColumn == column);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
ProfileAndContactsLoader.java | 78 Object[] row = new Object[mProjection.length]; 80 for (int i = 0; i < row.length; i++) { 81 row[i] = cursor.getString(i); 83 matrix.addRow(row);
|
/packages/apps/Gallery2/jni/filters/ |
redEyeMath.c | 77 int row = recW * y; local 82 char b = (mask[row + x] | mask[row + x + 1] | mask[row + x - 1] 83 | mask[row + x - recW] | mask[row + x + recW]); 85 out[row + x] = 1; 87 out[row + x] = mask[row + x]; 95 int row = mw * y local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTableSectionElement.cpp | 57 // these functions are rather slow, since we need to get the row at 61 RefPtr<HTMLTableRowElement> row; local 67 row = HTMLTableRowElement::create(trTag, document()); 69 appendChild(row, es, AttachLazily); 76 insertBefore(row, n, es, AttachLazily); 79 return row.release(); 89 RefPtr<Node> row = children->item(index); local 90 HTMLElement::removeChild(row.get(), es);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_rect.c | 133 uint16_t *row = (uint16_t *)dst; local 135 *row++ = uc->us; 141 uint32_t *row = (uint32_t *)dst; local 143 *row++ = uc->ui; 153 ubyte *row = dst; local 155 memcpy(row, uc, blocksize); 156 row += blocksize;
|
/external/chromium_org/third_party/re2/benchlog/ |
mktable | 128 my %row; 129 $row{"name"} = $1; 130 $row{"iter"} = $2; 131 $row{"ns/op"} = $3; 133 $row{"MB/s"} = $1; 135 $sysdat{$row{"name"}} = \%row;
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
csv_page_measurement_results.py | 70 row = ['url'] 74 row.append('%s (%s)' % (measurement_name, measurement_data['units'])) 75 self._results_writer.writerow(row) 78 row = [page_values.page.display_url] 82 row.append('%s' % value.output_value) 84 row.append('-') 85 self._results_writer.writerow(row)
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_rect.c | 133 uint16_t *row = (uint16_t *)dst; local 135 *row++ = uc->us; 141 uint32_t *row = (uint32_t *)dst; local 143 *row++ = uc->ui; 153 ubyte *row = dst; local 155 memcpy(row, uc, blocksize); 156 row += blocksize;
|
/external/regex-re2/benchlog/ |
mktable | 128 my %row; 129 $row{"name"} = $1; 130 $row{"iter"} = $2; 131 $row{"ns/op"} = $3; 133 $row{"MB/s"} = $1; 135 $sysdat{$row{"name"}} = \%row;
|
/external/chromium_org/chrome/browser/ui/webui/predictors/ |
predictors_handler.cc | 114 row = it->second.resources.begin(); 115 row != it->second.resources.end(); ++row) { 117 resource->SetString("resource_url", row->resource_url.spec()); 119 ConvertResourceType(row->resource_type)); 120 resource->SetInteger("number_of_hits", row->number_of_hits); 121 resource->SetInteger("number_of_misses", row->number_of_misses); 122 resource->SetInteger("consecutive_misses", row->consecutive_misses); 123 resource->SetDouble("position", row->average_position); 124 resource->SetDouble("score", row->score) [all...] |
/external/eigen/Eigen/src/Core/ |
DiagonalProduct.h | 60 const Scalar coeff(Index row, Index col) const 62 return m_diagonal.diagonal().coeff(ProductOrder == OnTheLeft ? row : col) * m_matrix.coeff(row, col); 66 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const 71 const Index indexInDiagonalVector = ProductOrder == OnTheLeft ? row : col; 73 return packet_impl<LoadMode>(row,col,indexInDiagonalVector,typename internal::conditional< 80 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::true_type) const 82 return internal::pmul(m_matrix.template packet<LoadMode>(row, col), 87 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::false_type) const 93 return internal::pmul(m_matrix.template packet<LoadMode>(row, col) [all...] |
SelfCwiseBinaryOp.h | 65 inline Scalar& coeffRef(Index row, Index col) 68 return m_matrix.const_cast_derived().coeffRef(row, col); 70 inline const Scalar& coeffRef(Index row, Index col) const 72 return m_matrix.coeffRef(row, col); 88 void copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other) 91 eigen_internal_assert(row >= 0 && row < rows() 93 Scalar& tmp = m_matrix.coeffRef(row,col); 94 tmp = m_functor(tmp, _other.coeff(row,col)); 107 void copyPacket(Index row, Index col, const DenseBase<OtherDerived>& other [all...] |
/frameworks/base/core/jni/ |
android_database_CursorWindow.cpp | 47 static void throwExceptionWithRowCol(JNIEnv* env, jint row, jint column) { 49 msg.appendFormat("Couldn't read row %d, col %d from CursorWindow. " 51 row, column); 153 jint row, jint column) { 155 LOG_WINDOW("returning column type affinity for %d,%d from %p", row, column, window); 157 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column); 161 //throwExceptionWithRowCol(env, row, column); 168 jint row, jint column) { 170 LOG_WINDOW("Getting blob for %d,%d from %p", row, column, window); 172 CursorWindow::FieldSlot* fieldSlot = window->getFieldSlot(row, column) [all...] |
/external/chromium_org/third_party/libwebp/dec/ |
alpha.c | 77 // and apply filter per image-row. 91 int row, int num_rows) { 95 if (row < 0 || num_rows < 0 || row + num_rows > height) { 99 if (row == 0) { 109 // Return a pointer to the current decoded row. 110 return dec->alpha_plane_ + row * width;
|
/external/chromium_org/third_party/skia/src/gpu/effects/ |
GrTextureStripAtlas.h | 44 * @param data Bitmap data to copy into the row 45 * @return The row index we inserted into, or -1 if we failed to find an open row. The caller 46 * is responsible for calling unlockRow() with this row index when it's done with it. 49 void unlockRow(int row); 52 * These functions help turn an integer row index in [0, 1, 2, ... numRows] into a scalar y 63 * Where yOffset, returned by getYOffset(), is the offset to the start of the row within the 64 * atlas and scaleFactor, returned by getVerticalScaleFactor(), is the y-scale of the row, 67 SkScalar getYOffset(int row) const { return SkIntToScalar(row) / fNumRows; [all...] |
/external/eigen/test/eigen2/ |
eigen2_determinant.cpp | 35 m2.row(i).swap(m2.row(j)); 43 m2.row(i) += x*m2.row(j); 46 m2.row(i) *= x;
|
/external/eigen/test/ |
hessenberg.cpp | 25 for(int row = 2; row < size; ++row) { 26 for(int col = 0; col < row-1; ++col) { 27 VERIFY(H(row,col) == (typename MatrixType::Scalar)0);
|
/external/skia/src/gpu/effects/ |
GrTextureStripAtlas.h | 44 * @param data Bitmap data to copy into the row 45 * @return The row index we inserted into, or -1 if we failed to find an open row. The caller 46 * is responsible for calling unlockRow() with this row index when it's done with it. 49 void unlockRow(int row); 52 * These functions help turn an integer row index in [0, 1, 2, ... numRows] into a scalar y 63 * Where yOffset, returned by getYOffset(), is the offset to the start of the row within the 64 * atlas and scaleFactor, returned by getVerticalScaleFactor(), is the y-scale of the row, 67 SkScalar getYOffset(int row) const { return SkIntToScalar(row) / fNumRows; [all...] |
/external/webp/src/dec/ |
alpha.c | 77 // and apply filter per image-row. 91 int row, int num_rows) { 95 if (row < 0 || num_rows < 0 || row + num_rows > height) { 99 if (row == 0) { 109 // Return a pointer to the current decoded row. 110 return dec->alpha_plane_ + row * width;
|
/external/chromium_org/chrome/browser/ |
custom_home_pages_table_model.cc | 207 string16 CustomHomePagesTableModel::GetText(int row, int column_id) { 209 DCHECK(row >= 0 && row < RowCount()); 210 return entries_[row].title.empty() ? FormattedURL(row) : entries_[row].title; 213 string16 CustomHomePagesTableModel::GetTooltip(int row) { 214 return entries_[row].title.empty() ? string16() : 216 entries_[row].title, FormattedURL(row)); [all...] |
/external/chromium_org/chrome/browser/ui/gtk/ |
confirm_bubble_gtk.cc | 73 // Add the icon, the title label and the close button to the first row. 74 GtkWidget* row = gtk_hbox_new(FALSE, kImageViewSpacing); local 77 gtk_box_pack_start(GTK_BOX(row), icon_view, FALSE, FALSE, 0); 81 gtk_box_pack_start(GTK_BOX(row), title_label, FALSE, FALSE, 0); 82 gtk_box_pack_start(GTK_BOX(row), gtk_label_new(NULL), TRUE, TRUE, 0); 87 gtk_box_pack_end(GTK_BOX(row), close_button_->widget(), FALSE, FALSE, 0); 88 gtk_box_pack_start(GTK_BOX(content), row, FALSE, FALSE, 0); local 90 // Add the message label to the second row. 97 // Add the the link label to the third row if it exists. 100 GtkWidget* row = gtk_hbox_new(FALSE, kImageViewSpacing) local 108 gtk_box_pack_start(GTK_BOX(content), row, FALSE, FALSE, 0); local 115 GtkWidget* row = gtk_hbox_new(FALSE, kImageViewSpacing); local 130 gtk_box_pack_start(GTK_BOX(content), row, FALSE, FALSE, 0); local [all...] |