HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 176 - 200 of 2110) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/core/java/android/hardware/camera2/params/
LensShadingMap.java 45 * <p>The elements must be stored in a row-major order (fully packed).</p>
102 * Get a single color channel gain factor from this lens shading map by its row and column.
115 * @param row within the range [0, {@link #getRowCount})
128 public float getGainFactor(final int colorChannel, final int column, final int row) {
133 } else if (row < 0 || row >= mRows) {
134 throw new IllegalArgumentException("row out of range");
137 return mElements[colorChannel + (row * mColumns + column) * COUNT ];
141 * Get a gain factor vector from this lens shading map by its row and column.
147 * @param row within the range [0, {@link #getRowCount}
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
SmartDialCursorLoader.java 88 Object[] row = new Object[PhoneQuery.PROJECTION_PRIMARY.length]; local
90 row[PhoneQuery.PHONE_ID] = contact.dataId;
91 row[PhoneQuery.PHONE_NUMBER] = contact.phoneNumber;
92 row[PhoneQuery.CONTACT_ID] = contact.id;
93 row[PhoneQuery.LOOKUP_KEY] = contact.lookupKey;
94 row[PhoneQuery.PHOTO_ID] = contact.photoId;
95 row[PhoneQuery.DISPLAY_NAME] = contact.displayName;
96 cursor.addRow(row);
  /packages/apps/Gallery2/src/com/android/photos/data/
AlbumSetLoader.java 41 Object[] row = { local
52 return row;
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 163 EIGEN_STRONG_INLINE const Scalar coeff(Index row, Index col) const
166 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
176 const Index row = RowsAtCompileTime == 1 ? 0 : index; local
178 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
183 EIGEN_STRONG_INLINE const PacketScalar packet(Index row, Index col) const
189 ::run(row, col, m_lhs, m_rhs, res);
242 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res)
244 product_coeff_impl<DefaultTraversal, UnrollingIndex-1, Lhs, Rhs, RetScalar>::run(row, col, lhs, rhs, res);
245 res += lhs.coeff(row, UnrollingIndex) * rhs.coeff(UnrollingIndex, col);
253 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res
    [all...]
  /packages/apps/Launcher3/
print_db.py 55 for row in c:
56 rows.append(row)
64 for row in c:
65 rows.append(row)
156 data = [dict(zip(columns,row)) for row in rows]
207 for row in rows:
210 for i in range(0,len(row)):
211 cell = row[i]
212 # row[0] is always _i
    [all...]
  /external/chromium_org/ui/gfx/
transform_util.cc 368 SkMScalar row[3][3]; local
371 row[i][j] = matrix.get(j, i);
373 // Compute X scale factor and normalize first row.
374 decomp->scale[0] = Length3(row[0]);
376 Scale3(row[0], 1.0 / decomp->scale[0]);
378 // Compute XY shear factor and make 2nd row orthogonal to 1st.
379 decomp->skew[0] = Dot<3>(row[0], row[1]);
380 Combine<3>(row[1], row[1], row[0], 1.0, -decomp->skew[0])
    [all...]
  /external/chromium_org/third_party/libwebp/dec/
alpha.c 85 // starting from row number 'row'. It assumes that rows up to (row - 1) have
88 static int ALPHDecode(VP8Decoder* const dec, int row, int num_rows) {
95 const size_t offset = row * width;
102 if (!VP8LDecodeAlphaImageStream(alph_dec, row + num_rows)) {
108 unfilter_func(width, height, width, row, num_rows, output);
111 if (row + num_rows == dec->pic_hdr_.height_) {
121 int row, int num_rows) {
125 if (row < 0 || num_rows <= 0 || row + num_rows > height)
    [all...]
  /external/chromium_org/ui/views/controls/
prefix_selector.cc 167 // while search after the current row, otherwise search starting from the
168 // current row.
169 int row = std::max(0, prefix_delegate_->GetSelectedRow()); local
176 row = (row + 1) % row_count;
180 const int start_row = row;
183 if (TextAtRowMatchesText(row, lower_text)) {
184 prefix_delegate_->SetSelectedRow(row);
187 row = (row + 1) % row_count
    [all...]
  /external/webp/src/dec/
alpha.c 85 // starting from row number 'row'. It assumes that rows up to (row - 1) have
88 static int ALPHDecode(VP8Decoder* const dec, int row, int num_rows) {
95 const size_t offset = row * width;
102 if (!VP8LDecodeAlphaImageStream(alph_dec, row + num_rows)) {
108 unfilter_func(width, height, width, row, num_rows, output);
111 if (row + num_rows == dec->pic_hdr_.height_) {
121 int row, int num_rows) {
125 if (row < 0 || num_rows <= 0 || row + num_rows > height)
    [all...]
  /external/chromium_org/chrome/browser/history/android/
bookmark_model_sql_handler.cc 102 bool BookmarkModelSQLHandler::Update(const HistoryAndBookmarkRow& row,
106 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::BOOKMARK)) {
107 if (row.is_bookmark()) {
111 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::PARENT_ID)) {
116 i->url, url_row.title(), row.parent_id()));
131 } else if (row.is_value_set_explicitly(HistoryAndBookmarkRow::TITLE)) {
136 i->url, row.title()));
154 bool BookmarkModelSQLHandler::Insert(HistoryAndBookmarkRow* row) {
155 DCHECK(row->is_value_set_explicitly(HistoryAndBookmarkRow::URL));
156 if (!row->is_value_set_explicitly(HistoryAndBookmarkRow::BOOKMARK) |
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
TableSectionPainter.cpp 77 unsigned row = r - 1; local
80 RenderTableSection::CellStruct& current = m_renderTableSection.cellAt(row, col);
82 if (!cell || (row > dirtiedRows.start() && m_renderTableSection.primaryCellAt(row - 1, col) == cell) || (col > dirtiedColumns.start() && m_renderTableSection.primaryCellAt(row, col - 1) == cell))
91 RenderTableRow* row = m_renderTableSection.rowRendererAt(r); local
92 if (row && !row->hasSelfPaintingLayer())
93 TableRowPainter(*row).paintOutlineForRowIfNeeded(paintInfo, paintOffset);
118 RenderTableRow* row = m_renderTableSection.rowRendererAt(r) local
162 RenderTableRow* row = toRenderTableRow(cell->parent()); local
    [all...]
  /external/chromium_org/chrome/browser/resources/predictors/
resource_prefetch_predictor.js 69 var row = document.createElement('tr');
76 row.appendChild(t);
80 row.className = 'last';
82 row.appendChild(document.createElement('td')).textContent =
84 row.appendChild(document.createElement('td')).textContent =
86 row.appendChild(document.createElement('td')).textContent =
88 row.appendChild(document.createElement('td')).textContent =
90 row.appendChild(document.createElement('td')).textContent =
92 row.appendChild(document.createElement('td')).textContent =
94 row.appendChild(document.createElement('td')).textContent
    [all...]
autocomplete_action_predictor.js 56 var row = document.createElement('tr');
57 row.className = (entry.confidence > 0.8 ? 'action-prerender' :
61 row.appendChild(document.createElement('td')).textContent =
63 row.appendChild(document.createElement('td')).textContent = entry.url;
64 row.appendChild(document.createElement('td')).textContent =
66 row.appendChild(document.createElement('td')).textContent =
68 row.appendChild(document.createElement('td')).textContent =
71 databaseSection.appendChild(row);
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 83 inline Scalar coeff(Index row, Index col) const
85 Base::check_coordinates_internal(row, col);
86 return m_matrix.coeff(row, col);
92 inline Scalar& coeffRef(Index row, Index col)
94 Base::check_coordinates_internal(row, col);
95 return m_matrix.const_cast_derived().coeffRef(row, col);
209 row = (UnrollCount-1) % Derived1::RowsAtCompileTime enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon25314
216 if(row == col)
217 dst.coeffRef(row, col) = numext::real(src.coeff(row, col))
234 row = (UnrollCount-1) % Derived1::RowsAtCompileTime enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon25315
    [all...]
  /external/lldb/source/Symbol/
DWARFCallFrameInfo.cpp 286 UnwindPlan::Row::RegisterLocation reg_location;
440 UnwindPlan::Row *cie_initial_row = new UnwindPlan::Row;
442 UnwindPlan::RowSP row(cie_initial_row);
447 UnwindPlan::Row::RegisterLocation reg_location;
458 case DW_CFA_advance_loc : // (Row Creation Instruction)
461 // required action is to create a new table row with a location
464 // values in the new row are initially identical to the current row.
465 unwind_plan.AppendRow(row);
    [all...]
  /external/chromium_org/third_party/libpng/
pngwtran.c 2 /* pngwtran.c - transforms the data in a row for PNG writers
37 /* png_uint_32 width; width of row */
38 /* png_uint_32 rowbytes; number of bytes in row */
43 png_ptr->row_buf + 1); /* start of pixel data for row */
92 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth)
98 row != NULL && row_info != NULL &&
111 sp = row;
112 dp = row;
142 sp = row;
143 dp = row;
    [all...]
  /external/qemu/distrib/libpng-1.2.46/
pngwtran.c 2 /* pngwtran.c - transforms the data in a row for PNG writers
37 /* png_uint_32 width; width of row */
38 /* png_uint_32 rowbytes; number of bytes in row */
43 png_ptr->row_buf + 1); /* start of pixel data for row */
92 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth)
98 row != NULL && row_info != NULL &&
111 sp = row;
112 dp = row;
142 sp = row;
143 dp = row;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 55 TableRow row = new TableRow(this); local
66 row.addView(label, new TableRow.LayoutParams(1));
67 row.addView(shortcut, new TableRow.LayoutParams());
69 table.addView(row, new TableLayout.LayoutParams());
  /external/ceres-solver/internal/ceres/
block_random_access_matrix.h 49 // has row blocks of size 5 and 4, and column blocks of size 3, 4 and
50 // 5. It has six cells corresponding to the six row-column block
73 // int row, col, row_stride, col_stride;
75 // &row, &col,
81 // m.block(row, col, row_block_size, col_block_size) = ...
107 // (row, col) within this matrix.
114 int* row,
124 // all row blocks and column block sizes respectively.
dynamic_compressed_row_sparse_matrix.h 31 // A compressed row sparse matrix that provides an extended interface to
35 // allows independent insertion of entries into each row (thread-safe).
62 // (if available). Next, entries are inserted at row and column positions
70 // Insert an entry at a given row and column position. This method is
74 // entries at the specified row and column position. Duplicate entries
75 // for a given row and column position will result in undefined
77 void InsertEntry(int row, int col, const double& value);
79 // Clear all entries for rows, starting from row index `row_start`
  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.h 59 virtual base::string16 GetText(int row, int column_id) OVERRIDE;
60 virtual base::string16 GetTooltip(int row) OVERRIDE;
75 const history::URLRow& row,
78 // Returns the URL for a particular row, formatted for display to the user.
79 base::string16 FormattedURL(int row) const;
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_popup_view.h 48 // Invalidates the given row and redraw it.
49 virtual void InvalidateRow(size_t row) = 0;
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_popup_view_cocoa.h 31 - (void)invalidateRow:(size_t)row;
  /external/chromium_org/chrome/browser/ui/cocoa/omnibox/
omnibox_popup_view_mac.h 45 size_t row) OVERRIDE;
47 size_t row) OVERRIDE;
49 size_t row) OVERRIDE;
73 // Opens the URL at the given row.
74 void OpenURLForRow(size_t row, WindowOpenDisposition disposition);
  /external/chromium_org/media/cast/test/utility/
generate_barcode_video.cc 14 for (int row = 0; row < frame->rows(plane); row++) {
16 fwrite(frame->data(plane) + frame->stride(plane) * row,

Completed in 1145 milliseconds

1 2 3 4 5 6 78 91011>>