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

1 2 3 4 5 6 7 891011>>

  /external/chromium/chrome/browser/sync/resources/
gaia_login.js 69 setElementDisplay("errormsg-1-password", 'table-row');
73 setElementDisplay("errormsg-0-connection", 'table-row');
107 setElementDisplay("password-row", "none");
108 setElementDisplay("email-row", "none");
112 setElementDisplay("access-code-label-row", "table-row");
113 setElementDisplay("access-code-input-row", "table-row");
114 setElementDisplay("access-code-help-row", "table-row");
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 503 int row = pos / mColumns; local
504 int col = pos - (row * mColumns);
508 int top = row * mBlockHeight;
523 int row = (mScrollY + y - spacing) / (mSpec.mCellHeight + spacing); local
526 return (row * mColumns) + col;
696 int row = mCurrentSelection / mColumns; local
697 int col = mCurrentSelection - (row * mColumns);
702 int yTop = spacing + (row * mBlockHeight);
720 // mCache maps from row number to the ImageBlock.
725 private final Runnable mRedrawCallback; // Called after a row is loaded
794 int row = pos \/ mColumns; local
880 int row = index \/ mColumns; local
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max_LCD.cpp 167 void Max_LCD::setCursor(uint8_t col, uint8_t row)
170 if ( row > _numlines ) {
171 row = _numlines-1; // we count rows starting w/0
174 command(LCD_SETDDRAMADDR | (col + row_offsets[row]));
  /external/chromium/chrome/browser/history/
history_notifications.h 34 URLRow row; member in struct:history::URLVisitedDetails
  /external/chromium/chrome/browser/
language_order_table_model.h 50 virtual string16 GetText(int row, int column_id) OVERRIDE;
  /external/libvpx/vp8/common/
entropymode.c 38 int lez = (l->row == 0 && l->col == 0);
39 int aez = (a->row == 0 && a->col == 0);
40 int lea = (l->row == a->row && l->col == a->col);
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 154 // Get the index of the row we're looking for in the line table.
163 const DWARFDebugLine::Row &row = lineTable->Rows[rowIndex]; local
164 const std::string &fileName = lineTable->Prologue.FileNames[row.File-1].Name;
166 return DILineInfo(fileName.c_str(), row.Line, row.Column);
  /external/openssh/
session.h 42 u_int row, col, xpixel, ypixel; member in struct:Session
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.h 76 virtual AccessibilityTableCell* cellForColumnAndRow(unsigned column, unsigned row);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFraction.cpp 103 RenderBlock* row = new (renderArena()) RenderMathMLBlock(node()); local
116 row->setStyle(rowStyle.release());
117 RenderBlock::addChild(row, beforeChild);
118 row->addChild(child);
RenderMathMLRow.cpp 39 RenderMathMLRow::RenderMathMLRow(Node* row)
40 : RenderMathMLBlock(row)
73 // Calculate the non-operator max height of the row.
  /sdk/testapps/testSensors/src/com/android/tests/testsensors/
TestSensorsActivity.java 61 // Add a row representing this sensor on the display
63 final TableRow row = (TableRow) inflater.inflate(R.layout.one_row, mTableLayout, false); local
64 mTableLayout.addView(row);
68 mName = (TextView) row.findViewById(R.id.row_textview_name);
71 mVal = (TextView) row.findViewById(R.id.row_textview_value);
  /external/libyuv/files/source/
format_conversion.cc 15 #include "row.h"
79 // Copy a row of Bayer.
355 SIMD_ALIGNED(uint8 row[kMaxStride * 2]);
360 IS_ALIGNED(row, 16) && (kMaxStride % 16 == 0) &&
371 IS_ALIGNED(row, 16) && (kMaxStride % 16 == 0) &&
403 BayerRow0(src_bayer, src_stride_bayer, row, width);
405 row + kMaxStride, width);
406 ARGBToUVRow(row, kMaxStride, dst_u, dst_v, width);
407 ARGBToYRow(row, dst_y, width);
408 ARGBToYRow(row + kMaxStride, dst_y + dst_stride_y, width)
    [all...]
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuView.java 56 /** Height of each row */
62 /** Maximum number of items per row */
112 * The layout to use for menu items. Each index is the row number (0 is the
113 * top-most). Each value contains the number of items in that row.
218 * @return int[] Where the value of index i contains the number of items for row i
227 * the last row.
256 for (int row = 0; row < numRows; row++) {
257 int numItemsOnRow = layout[row];
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcStress.cpp 40 * of vectors. The array is accessed in row major order, so each
41 * row is a vector of smart pointers. All the pointers of a single
42 * row point to graphic buffers which use the same pixel format and
47 * graphic buffer within the same row. Since the graphic buffers
48 * in a particular row have the same pixel format and dimension,
225 * such that there is a unique row to be used for each
229 * selected from any of the columns of the selected row.
544 * vectors. All the graphic buffers in a particular row are of the same
547 * in the same row, will be filled with a unique color.
563 for (unsigned int row = 0; row < rows; row++)
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
BookmarkExpandableView.java 274 int mRowCount = 1; // assume at least 1 child fits in a row
320 LinearLayout row = (LinearLayout) convertView; local
321 if (row.getChildCount() > rowCount) {
322 row.removeViews(rowCount, row.getChildCount() - rowCount);
326 if (row.getChildCount() > i) {
327 cv = row.getChildAt(i);
331 View v = childAdapter.getView(realChildPosition, cv, row);
337 row.addView(v);
339 row.removeViewAt(i)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_VideoTest.java 45 for (Uri row : mRowsAdded) {
46 mContentResolver.delete(row, null, null);
  /external/chromium-trace/src/shared/css/
chrome_shared2_touch.css 43 html[touch-optimized] .tree-item > .tree-row {
table.css 43 .table-row {
49 .table-row-cell {
54 .table-row-cell > * {
  /external/icu4c/common/
propsvec.h 34 * Logically, each row has a certain number of uint32_t values,
38 * In each internal row,
39 * row[0] contains the start code point and
40 * row[1] contains the limit code point,
43 * Initially, there is only one "normal" row for
47 * It would be possible to store only one range boundary per row,
71 * @param columns Number of value integers (uint32_t) per row.
113 * - for each (non-unique) row, call the handler function
115 * The handler's rowIndex is the index of the row in the compacted
123 * and the row is arbitrary (but not NULL)
    [all...]
  /external/markdown/markdown/extensions/
imagelinks.py 72 for row in rows:
73 for photo_url, title in row:
99 rows.append([]) # start a new row
  /packages/apps/Calendar/tests/src/com/android/calendar/widget/
CalendarAppWidgetServiceTest.java 286 Object[] row = new Object[CalendarAppWidgetService.EVENT_PROJECTION.length]; local
287 row[CalendarAppWidgetService.INDEX_ALL_DAY] = new Integer(allDay);
288 row[CalendarAppWidgetService.INDEX_BEGIN] = new Long(begin);
289 row[CalendarAppWidgetService.INDEX_END] = new Long(end);
290 row[CalendarAppWidgetService.INDEX_TITLE] = new String(title);
291 row[CalendarAppWidgetService.INDEX_EVENT_LOCATION] = new String(location);
292 row[CalendarAppWidgetService.INDEX_EVENT_ID] = new Long(eventId);
293 return row;
  /development/samples/ApiDemos/src/com/example/android/apis/media/
AudioFxDemo.java 121 LinearLayout row = new LinearLayout(this); local
122 row.setOrientation(LinearLayout.HORIZONTAL);
155 row.addView(minDbTextView);
156 row.addView(bar);
157 row.addView(maxDbTextView);
159 mLinearLayout.addView(row);
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 192 int row = -1; local
198 row = j;
221 if (col != -1 || row != -1 || diag != -1) {
222 setFinished(player, col, row, diag);
234 private void setFinished(State player, int col, int row, int diagonal) {
239 mGameView.setFinished(col, row, diagonal);
  /external/qemu/
vnchextile.h 16 uint8_t *row = vs->server.ds->data + y * ds_get_linesize(vs->ds) + x * ds_get_bytes_per_pixel(vs->ds); local
17 pixel_t *irow = (pixel_t *)row;
88 irow = (pixel_t *)row;
114 irow = (pixel_t *)row;
200 vs->write_pixels(vs, row, w * ds_get_bytes_per_pixel(vs->ds));
201 row += ds_get_linesize(vs->ds);

Completed in 1010 milliseconds

1 2 3 4 5 6 7 891011>>