/external/webkit/Source/WebCore/accessibility/ |
AccessibilityARIAGridRow.cpp | 66 // have an aria-level of plus 1 from this row. 72 // Only take the subsequent rows from this one that are +1 from this row's level. 81 AccessibilityObject* row = allRows[k].get(); local 82 // Stop at the first row that doesn't match the correct level. 83 if (row->hierarchicalLevel() != level + 1) 86 disclosedRows.append(row); 92 // The row that discloses this one is the row in the table 93 // that is aria-level subtract 1 from this row. 98 // If the level is 1 or less, than nothing discloses this row 111 AccessibilityObject* row = allRows[k].get(); local [all...] |
AccessibilityARIAGrid.h | 52 virtual AccessibilityTableCell* cellForColumnAndRow(unsigned column, unsigned row);
|
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_tiled_matrix.h | 37 EAPI Ewk_Tile *ewk_tile_matrix_tile_exact_get(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom); 38 EAPI Eina_Bool ewk_tile_matrix_tile_exact_exists(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom); 39 EAPI Ewk_Tile *ewk_tile_matrix_tile_nearest_get(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom); 40 EAPI Ewk_Tile *ewk_tile_matrix_tile_new(Ewk_Tile_Matrix *tm, Evas *evas, unsigned long col, unsigned int row, float zoom); 43 EAPI Eina_Bool ewk_tile_matrix_tile_update(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, const Eina_Rectangle *update); 44 EAPI Eina_Bool ewk_tile_matrix_tile_update_full(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row);
|
/external/eigen/Eigen/src/Core/ |
ForceAlignedAccess.h | 49 inline const CoeffReturnType coeff(Index row, Index col) const 51 return m_expression.coeff(row, col); 54 inline Scalar& coeffRef(Index row, Index col) 56 return m_expression.const_cast_derived().coeffRef(row, col); 70 inline const PacketScalar packet(Index row, Index col) const 72 return m_expression.template packet<Aligned>(row, col); 76 inline void writePacket(Index row, Index col, const PacketScalar& x) 78 m_expression.const_cast_derived().template writePacket<Aligned>(row, col, x);
|
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::__anon7452 216 if(row == col) 217 dst.coeffRef(row, col) = real(src.coeff(row, col)) 234 row = (UnrollCount-1) % Derived1::RowsAtCompileTime enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon7453 [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...] |
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...] |
/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...] |
/external/chromium/chrome/browser/ |
possible_url_model.cc | 111 const GURL& PossibleURLModel::GetURL(int row) { 112 if (row < 0 || row >= RowCount()) { 116 return results_[row].url; 119 const std::wstring& PossibleURLModel::GetTitle(int row) { 120 if (row < 0 || row >= RowCount()) { 124 return results_[row].title; 127 string16 PossibleURLModel::GetText(int row, int col_id) { 128 if (row < 0 || row >= RowCount()) [all...] |
/external/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.19/ |
pngwtran.c | 2 /* pngwtran.c - transforms the data in a row for PNG writers 32 /* png_uint_32 width; width of row */ 33 /* png_uint_32 rowbytes; number of bytes in row */ 38 png_ptr->row_buf + 1); /* start of pixel data for row */ 87 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) 92 row != NULL && row_info != NULL && 105 sp = row; 106 dp = row; 136 sp = row; 137 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.
|
/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
|
/external/webkit/Source/WebCore/platform/chromium/ |
DragImageChromiumSkia.cpp | 79 for (int row = 0; row < image->height(); ++row) { 81 uint32_t* pixel = image->getAddr32(column, 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);
|
/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/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/webkit/Source/WebCore/html/ |
HTMLTableSectionElement.cpp | 50 // used by table row groups to share style decls created by the enclosing table. 61 // these functions are rather slow, since we need to get the row at 65 RefPtr<HTMLTableRowElement> row; local 71 row = HTMLTableRowElement::create(trTag, document()); 73 appendChild(row, ec); 80 insertBefore(row, n, ec); 83 return row.release(); 93 RefPtr<Node> row = children->item(index); local 94 HTMLElement::removeChild(row.get(), ec);
|
/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...] |