HomeSort by relevance Sort by last modified time
    Searched full:row (Results 626 - 650 of 4359) sorted by null

<<21222324252627282930>>

  /external/chromium_org/ui/views/controls/tree/
tree_view.h 32 // it does not store any row information, but instead calculates it as
110 // Returns the node for the specified row, or NULL for an invalid row index.
111 ui::TreeModelNode* GetNodeForRow(int row);
113 // Maps a node to a row, returns -1 if node is not valid.
157 virtual void SetSelectedRow(int row) OVERRIDE;
158 virtual string16 GetTextForRow(int row) OVERRIDE;
240 // Row of the root node. This varies depending upon whether the root is
270 // the row |*row|. |row| is updated as this walks the tree. Depth is the dept
    [all...]
  /external/chromium_org/ui/views/layout/
grid_layout.h 33 // // First start a row.
34 // layout->StartRow(0, // This row isn't vertically resizable.
35 // 0); // The column set to use for this row.
48 // columns and rows with a resize percent > 0 are resized. Each column/row
54 // new row you specify the id of the column set the row is to use.
65 class Row;
113 // The id is later used when starting a new row.
121 // Adds a padding row. Padding rows typically don't have any views, and
123 // Size specifies the height of the row
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ColumnAdapter.java 97 final LinearLayout row = (LinearLayout) convertView; local
103 if (i < row.getChildCount()) {
104 convertItem = row.getChildAt(i);
109 final View item = mWrapped.getView(validPos, convertItem, row);
121 row.addView(item, params);
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/css/
file_types.css 14 tree:focus .tree-item[selected] > .tree-row > [file-type-icon],
28 tree:focus .tree-item[selected] > .tree-row > [file-type-icon='archive'],
42 tree:focus .tree-item[selected] > .tree-row > [file-type-icon='audio'],
56 tree:focus .tree-item[selected] > .tree-row > [file-type-icon='excel'],
70 tree:focus .tree-item[selected] > .tree-row > [file-type-icon='folder'],
84 tree:focus .tree-item[selected] > .tree-row > [file-type-icon='form'],
98 tree:focus .tree-item[selected] > .tree-row > [file-type-icon='gdoc'],
112 tree:focus .tree-item[selected] > .tree-row > [file-type-icon='gdraw'],
126 tree:focus .tree-item[selected] > .tree-row > [file-type-icon='glink'],
140 tree:focus .tree-item[selected] > .tree-row > [file-type-icon='gsheet']
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
task_manager_gtk.cc 499 g_signal_connect(treeview_, "row-activated",
654 std::string TaskManagerGtk::GetModelText(int row, int col_id) {
655 return UTF16ToUTF8(model_->GetResourceById(row, col_id));
658 GdkPixbuf* TaskManagerGtk::GetModelIcon(int row) {
659 SkBitmap icon = *model_->GetResourceIcon(row).bitmap();
670 void TaskManagerGtk::SetRowDataFromModel(int row, GtkTreeIter* iter) {
671 GdkPixbuf* icon = GetModelIcon(row);
672 std::string task = GetModelText(row, IDS_TASK_MANAGER_TASK_COLUMN);
674 GetModelText(row, IDS_TASK_MANAGER_PROFILE_NAME_COLUMN);
677 GetModelText(row, IDS_TASK_MANAGER_SHARED_MEM_COLUMN)
752 int row = gtk_tree::GetRowNumForPath(path); local
883 int row = gtk_tree::GetRowNumForPath(path); local
915 int row = gtk_tree::GetRowNumForPath(child_path); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
image.c 91 * \param row row of pixel in the image (0 for 1D images)
103 GLint img, GLint row, GLint column )
151 + (skiprows + row) * bytes_per_row
174 /* set pixel_addr to the last row */
185 + (skiprows + row) * bytes_per_row
206 * \param row row of pixel in the image (0 for 1D images)
219 GLint img, GLint row, GLint column )
224 format, type, img, row, column)
393 GLint row, col; local
    [all...]
  /external/eigen/Eigen/src/Core/
VectorwiseOp.h 88 return m_functor(m_matrix.row(i));
96 return m_functor(m_matrix.row(index));
244 /** \returns a row or column vector expression of \c *this reduxed by \a func
256 /** \returns a row (or column) vector expression of the smallest coefficient
257 * of each column (or row) of the referenced expression.
266 /** \returns a row (or column) vector expression of the largest coefficient
267 * of each column (or row) of the referenced expression.
276 /** \returns a row (or column) vector expression of the squared norm
277 * of each column (or row) of the referenced expression.
286 /** \returns a row (or column) vector expression of the nor
    [all...]
MapBase.h 90 inline const Scalar& coeff(Index row, Index col) const
92 return m_data[col * colStride() + row * rowStride()];
101 inline const Scalar& coeffRef(Index row, Index col) const
103 return this->m_data[col * colStride() + row * rowStride()];
113 inline PacketScalar packet(Index row, Index col) const
116 (m_data + (col * colStride() + row * rowStride()));
201 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col)
203 return this->m_data[col * colStride() + row * rowStride()];
213 inline void writePacket(Index row, Index col, const PacketScalar& x)
216 (this->m_data + (col * colStride() + row * rowStride()), x)
    [all...]
  /external/mesa3d/src/mesa/main/
image.c 91 * \param row row of pixel in the image (0 for 1D images)
103 GLint img, GLint row, GLint column )
151 + (skiprows + row) * bytes_per_row
174 /* set pixel_addr to the last row */
185 + (skiprows + row) * bytes_per_row
206 * \param row row of pixel in the image (0 for 1D images)
219 GLint img, GLint row, GLint column )
224 format, type, img, row, column)
393 GLint row, col; local
    [all...]
  /external/chromium_org/third_party/libpng/
pngrtran.c 2 /* pngrtran.c - transforms the data in a row for PNG readers
    [all...]
  /external/jpeg/
wrrle.c 131 /* Set the output buffer to the first row */
179 int row, col; local
223 for (row = cinfo->output_height-1; row >= 0; row--) {
226 (JDIMENSION) row, (JDIMENSION) 1, FALSE);
236 for (row = cinfo->output_height-1; row >= 0; row--) {
240 (JDIMENSION) row, (JDIMENSION) 1, FALSE)
    [all...]
jctrans.c 211 JDIMENSION iMCU_row_num; /* iMCU row # within image */
212 JDIMENSION mcu_ctr; /* counts MCUs processed in current row */
213 int MCU_vert_offset; /* counts MCU rows within iMCU row */
228 /* Reset within-iMCU-row counters for a new row */
232 /* In an interleaved scan, an MCU row is the same as an iMCU row.
233 * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
269 * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
    [all...]
  /external/libpng/
pngrtran.c 2 /* pngrtran.c - transforms the data in a row for PNG readers
    [all...]
  /external/qemu/distrib/jpeg-6b/
wrrle.c 131 /* Set the output buffer to the first row */
179 int row, col; local
223 for (row = cinfo->output_height-1; row >= 0; row--) {
226 (JDIMENSION) row, (JDIMENSION) 1, FALSE);
236 for (row = cinfo->output_height-1; row >= 0; row--) {
240 (JDIMENSION) row, (JDIMENSION) 1, FALSE)
    [all...]
jctrans.c 211 JDIMENSION iMCU_row_num; /* iMCU row # within image */
212 JDIMENSION mcu_ctr; /* counts MCUs processed in current row */
213 int MCU_vert_offset; /* counts MCU rows within iMCU row */
228 /* Reset within-iMCU-row counters for a new row */
232 /* In an interleaved scan, an MCU row is the same as an iMCU row.
233 * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
269 * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngrtran.c 2 /* pngrtran.c - transforms the data in a row for PNG readers
    [all...]
  /frameworks/av/libvideoeditor/vss/src/
M4VIFI_xVSS_RGB565toYUV420.c 40 * Loop on each row ( 2 rows by 2 rows )
45 * end loop on row
102 /* Set the size of the memory jumps corresponding to row jump in each output plane */
108 /* Set the size of the memory jumps corresponding to row jump in input plane */
113 /* Loop on each row of the output image, input coordinates are estimated from output ones */
117 /* Current Y plane row pointers */
119 /* Next Y plane row pointers */
121 /* Current U plane row pointer */
123 /* Current V plane row pointer */
207 /* Prepare pointers for the next row */
    [all...]
  /frameworks/base/core/java/android/database/
CursorJoiner.java 33 * // handle case where a row in cursorA is unique
36 * // handle case where a row in cursorB is unique
39 * // handle case where a row with the same key is in both cursors
59 /** The row currently pointed to by the left cursor is unique */
61 /** The row currently pointed to by the right cursor is unique */
68 * Initializes the CursorJoiner and resets the cursors to the first row. The left and right
142 * Returns the comparison result of the next row from each cursor. If one cursor
149 * next() are guaranteed to point to the row that was indicated. Reading values
152 * @return LEFT, if the row pointed to by the left cursor is unique, RIGHT
153 * if the row pointed to by the right cursor is unique, BOTH if the rows in bot
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 135 int row; field in class:LockPatternView.Cell
149 * @param row The row of the cell.
152 private Cell(int row, int column) {
153 checkRange(row, column);
154 this.row = row;
159 return row;
167 * @param row The row of the cell
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
InternalSelectionView.java 35 * row is selected. The rows take up the
40 * the last row's height is inflated with the remainder. For example, if the
41 * view height is 22 and there are two rows, the height of the first row is
48 * selected row
185 private int getRowHeight(int row) {
188 if (row < mNumRows - 1) {
196 public void getRectForRow(Rect rect, int row) {
197 final int rowHeight = getRowHeight(row);
198 final int top = mPaddingTop + row * rowHeight;
255 // set the row that is closest to the rec
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 158 // Compute x/y offsets for each row/column index
237 * Initializes the column and row indices, as well as any column span and row span
242 // Now initialize table view row, column and spans
267 Integer row = yToRow.get(view.getTopEdge()); local
268 assert row != null;
272 view.mRow = row;
273 view.mRowSpan = end - row;
    [all...]
  /external/chromium_org/chrome/browser/history/
typed_url_syncable_service.cc 155 URLRow* row) {
157 DCHECK(row);
163 if (!ShouldSyncVisit(transition, row))
169 CreateOrUpdateSyncNode(*row, &changes);
202 URLRow row(*url);
204 row, visits, url->spec(), &changes);
211 for (URLRows::const_iterator row = rows->begin();
212 row != rows->end(); ++row) {
214 if (synced_typed_urls_.find(row->url()) != synced_typed_urls_.end())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.cpp 90 // Called when a row is ready.
436 * this function is called for every row in the image. If the
438 * this function will be called for every row in every pass.
440 * When the row is not changed, the new_row variable will be NULL.
446 // Nothing to do if the row is unchanged, or the row is outside
458 * png_progressive_combine_row() passing in the row and the
459 * old row. You can call this function for NULL rows (it will
468 * the old row, so the rows do not have to be initialized. After
470 * to pass the current row, and the function will combine th
476 png_bytep row = rowBuffer; local
    [all...]
  /external/eigen/test/
sparse_basic.cpp 72 // VERIFY_IS_APPROX(m.block(i,j,h,w).row(r), refMat.block(i,j,h,w).row(r));
75 // VERIFY_IS_APPROX(m.block(i,j,h,w).row(r).coeff(c), refMat.block(i,j,h,w).row(r).coeff(c));
88 VERIFY_IS_APPROX(m.row(r) + m.row(r), (m + m).row(r));
89 VERIFY_IS_APPROX(m.row(r) + m.row(r), refMat.row(r) + refMat.row(r))
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CallbackProcessor.cpp 466 for (size_t row = 0; row < src.height; row++) {
488 for (size_t row = 0; row < chromaHeight; row++) {
496 for (size_t row = 0; row < chromaHeight; row++) {
515 // Source has planar chroma layout, can copy by row
    [all...]

Completed in 1589 milliseconds

<<21222324252627282930>>