HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 201 - 225 of 2622) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Launcher3/
print_db.py 57 for row in c:
58 rows.append(row)
66 for row in c:
67 rows.append(row)
158 data = [dict(zip(columns,row)) for row in rows]
209 for row in rows:
212 for i in range(0,len(row)):
213 cell = row[i]
214 # row[0] is always _i
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
RealMatrix.java 27 * returns the element in the first row, first column of the matrix.</p>
35 * row and column dimensions.
40 * @throws IllegalArgumentException if row or column dimension is not positive
114 * maximum absolute row sum norm</a> of the matrix.
132 * @param startRow Initial row index
133 * @param endRow Final row index (inclusive)
147 * @param selectedRows Array of row indices.
151 * @exception MatrixIndexException if row or column selections are not valid
160 * @param startRow Initial row index
161 * @param endRow Final row index (inclusive
    [all...]
DefaultRealMatrixChangingVisitor.java 40 public double visit(int row, int column, double value) throws MatrixVisitorException {
DefaultRealMatrixPreservingVisitor.java 40 public void visit(int row, int column, double value)
RealMatrixChangingVisitor.java 36 * @param startRow Initial row index
37 * @param endRow Final row index (inclusive)
46 * @param row row index of the entry
52 double visit(int row, int column, double value)
RealMatrixPreservingVisitor.java 36 * @param startRow Initial row index
37 * @param endRow Final row index (inclusive)
46 * @param row row index of the entry
51 void visit(int row, int column, double value)
  /external/webp/src/dec/
alpha.c 87 // starting from row number 'row'. It assumes that rows up to (row - 1) have
90 static int ALPHDecode(VP8Decoder* const dec, int row, int num_rows) {
97 const size_t offset = row * width;
104 if (!VP8LDecodeAlphaImageStream(alph_dec, row + num_rows)) {
110 unfilter_func(width, height, width, row, num_rows, output);
113 if (row + num_rows == dec->pic_hdr_.height_) {
123 int row, int num_rows) {
127 if (row < 0 || num_rows <= 0 || row + num_rows > height)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
TreeBasedTableTest.java 50 return table.row("b");
61 return table.row("b");
80 table.row("b").subMap("c", "x").clear();
81 assertEquals(table.row("b"), ImmutableMap.of("b", "x", "x", "n"));
82 table.row("b").subMap("b", "y").clear();
83 assertEquals(table.row("b"), ImmutableMap.of());
121 assertThat(table.row("foo").keySet()).has().exactly(12, 3).inOrder();
133 assertThat(table.row("foo").keySet()).has().exactly(12, 3).inOrder();
348 SortedMap<Integer, Character> row = sortedTable.row("c") local
365 SortedMap<Integer, Character> row = sortedTable.row("c"); local
382 SortedMap<Integer, Character> row = sortedTable.row("c"); local
389 SortedMap<Integer, Character> row = (SortedMap<Integer, Character>) table.row("foo"); local
397 assertEquals(ImmutableMap.of(), row); local
403 assertEquals(ImmutableMap.of(), row); local
    [all...]
  /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::__anon10270
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::__anon10271
    [all...]
Reverse.h 110 inline Scalar& operator()(Index row, Index col)
112 eigen_assert(row >= 0 && row < rows() && col >= 0 && col < cols());
113 return coeffRef(row, col);
116 inline Scalar& coeffRef(Index row, Index col)
118 return m_matrix.const_cast_derived().coeffRef(ReverseRow ? m_matrix.rows() - row - 1 : row,
122 inline CoeffReturnType coeff(Index row, Index col) const
124 return m_matrix.coeff(ReverseRow ? m_matrix.rows() - row - 1 : row,
    [all...]
  /external/opencv3/modules/video/src/opencl/
optical_flow_farneback.cl 85 __local float *row = smem + tx;
91 row[0] = src[mad24(y, srcStep, xWarped)] * c_g[0];
92 row[bdx] = 0.f;
93 row[2*bdx] = 0.f;
101 row[0] += c_g[k] * (t0 + t1);
102 row[bdx] += c_xg[k] * (t1 - t0);
103 row[2*bdx] += c_xxg[k] * (t0 + t1);
111 TYPE b1 = c_g[0] * row[0];
112 TYPE b3 = c_g[0] * row[bdx];
113 TYPE b5 = c_g[0] * row[2*bdx]
    [all...]
  /external/boringssl/src/crypto/ec/
p256-x86_64.c 303 P256_POINT *row = table; local
305 if (!ecp_nistz256_bignum_to_field_elem(row[1 - 1].X, &p->X) ||
306 !ecp_nistz256_bignum_to_field_elem(row[1 - 1].Y, &p->Y) ||
307 !ecp_nistz256_bignum_to_field_elem(row[1 - 1].Z, &p->Z)) {
312 ecp_nistz256_point_double(&row[2 - 1], &row[1 - 1]);
313 ecp_nistz256_point_add(&row[3 - 1], &row[2 - 1], &row[1 - 1]);
314 ecp_nistz256_point_double(&row[4 - 1], &row[2 - 1])
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
HostSelector.java 101 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) {
102 availableSelection.toggleSelected(row);
110 for (JSONObject row : objects) {
111 selectRow(row);
117 for (JSONObject row : objects) {
118 deselectRow(row);
125 public void onRowClicked(int rowIndex, JSONObject row, boolean isRightClick) {
126 if (isMetaEntry(row) || isOneTimeHost(row)) {
127 deselectRow(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/eigen/Eigen/src/SparseCore/
SparseTranspose.h 43 typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); } function in class:Eigen::TransposeImpl::InnerIterator
44 typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
57 typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); } function in class:Eigen::TransposeImpl::ReverseInnerIterator
58 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/pdfium/xfa/src/fxbarcode/
BC_Binarizer.h 20 CBC_CommonBitArray* row,
BC_LuminanceSource.h 17 virtual CFX_ByteArray* GetRow(int32_t y, CFX_ByteArray& row, int32_t& e) = 0;
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OneDimReader.cpp 42 CFX_Int32Array* CBC_OneDimReader::FindStartGuardPattern(CBC_CommonBitArray* row,
57 startRange = FindGuardPattern(row, nextStart, FALSE, &startEndPattern, e);
66 FX_BOOL booT = row->IsRange(quietStart, start, FALSE, e);
74 CBC_CommonBitArray* row,
77 CFX_Int32Array* StartPattern = FindStartGuardPattern(row, e);
80 CFX_ByteString temp = DecodeRow(rowNumber, row, result.get(), hints, e);
85 CBC_CommonBitArray* row,
90 DecodeMiddle(row, startGuardRange, result, e);
131 CFX_Int32Array* CBC_OneDimReader::DecodeEnd(CBC_CommonBitArray* row,
139 FindGuardPattern(row, endStart, FALSE, &startEndPattern, e);
    [all...]
BC_OnedEAN13Reader.h 24 int32_t DecodeMiddle(CBC_CommonBitArray* row,
  /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);
  /frameworks/rs/
rsMatrix4x4.h 28 float get(uint32_t col, uint32_t row) const {
29 return m[col*4 + row];
32 void set(uint32_t col, uint32_t row, float v) {
33 m[col*4 + row] = v;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_tile_common.h 25 // initializes 'tile->mi_(row|col)_(start|end)' for (row, col) based on
28 int row, int col);

Completed in 975 milliseconds

1 2 3 4 5 6 7 891011>>