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

1 2 3 4 5 6 78 91011>>

  /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/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.
  /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/base/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,
226 * such that there is a unique row to be used for each
230 * selected from any of the columns of the selected row.
545 * vectors. All the graphic buffers in a particular row are of the same
548 * in the same row, will be filled with a unique color.
564 for (unsigned int row = 0; row < rows; row++)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_VideoTest.java 51 for (Uri row : mRowsAdded) {
52 mContentResolver.delete(row, null, null);
UserDictionary_WordsTest.java 63 for (Uri row : mAddedBackup) {
64 mContentResolver.delete(row, null, null);
  /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
  /external/skia/include/core/
SkMask.h 44 edges. kVerticalLCD_Format has an extra row at the top and bottom.
109 uint16_t* row = (uint16_t*)(fImage + (y - fBounds.fTop) * fRowBytes); local
110 return row + (x - fBounds.fLeft);
124 /** Return the number of 32-bit words in a row of the 32-bit plane of an
  /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);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncFragment.java 142 for (CalendarRow row : changes.values()) {
143 if (row.synced == row.originalSynced) {
146 long id = row.id;
149 Uri uri = ContentUris.withAppendedId(Calendars.CONTENT_URI, row.id);
152 int synced = row.synced ? 1 : 0;
  /external/libvpx/vp8/encoder/
rdopt.c 459 mv_row = x->e_mbd.block[16].bmi.mv.as_mv.row;
867 x->e_mbd.mode_info_context->mbmi.mv.as_mv.row = mv->row;
874 bmi->mv.as_mv.row = mv->row;
904 const int row = i >> 2, col = i & 3; local
913 else if (row && labelings[i] == labelings[i-4])
928 *this_mv = row ? d[-4].bmi.mv.as_mv : vp8_above_bmi(mic, i, mis)->mv.as_mv;
931 this_mv->row = this_mv->col = 0;
941 if (mv.row == this_mv->row && mv.col == this_mv->col
    [all...]
  /external/libpng/contrib/gregbook/
rpng-x.c 691 ulg i, row, lastrow = 0; local
708 for (lastrow = row = 0; row < image_height; ++row) {
709 src = image_data + row*image_rowbytes;
710 dest = ximage->data + row*ximage_rowbytes;
771 if (((row+1) & 0xf) == 0) {
775 lastrow = row + 1;
782 for (lastrow = row = 0; row < image_height; ++row)
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
SmsProvider.java 235 Object[] row = new Object[13]; local
236 row[0] = message.getServiceCenterAddress();
237 row[1] = message.getDisplayOriginatingAddress();
238 row[2] = String.valueOf(message.getMessageClass());
239 row[3] = message.getDisplayMessageBody();
240 row[4] = message.getTimestampMillis();
241 row[5] = Sms.STATUS_NONE;
242 row[6] = message.getIndexOnIcc();
243 row[7] = message.isStatusReportMessage();
244 row[8] = "sms"
    [all...]
TelephonyProvider.java 234 * Gets the next row of apn values.
237 * @return the row or null if it's not an apn
321 ContentValues row = getRow(parser); local
322 if (row != null) {
323 insertAddingDefaults(db, CARRIERS_TABLE, row);
336 private void insertAddingDefaults(SQLiteDatabase db, String table, ContentValues row) {
338 if (row.containsKey(Telephony.Carriers.AUTH_TYPE) == false) {
339 row.put(Telephony.Carriers.AUTH_TYPE, -1);
341 if (row.containsKey(Telephony.Carriers.PROTOCOL) == false) {
342 row.put(Telephony.Carriers.PROTOCOL, "IP")
    [all...]
  /external/icu4c/test/intltest/
restsnew.cpp 326 int32_t count, row=0, col=0; local
347 row=0;
351 row=count;
357 expected+=itoa(row, buf);
358 ResourceBundle rowbundle=bundle.get(row, err);
365 expected+=itoa(row, buf);
537 int32_t count, row=0, col=0; local
559 row=0;
563 row=count;
569 expected+=itoa(row, buf)
636 int32_t i,j,row,col, actual_bundle; local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_tree.cc 27 int row = GetRowNumForPath(path); local
29 return row;
36 int row = GetRowNumForPath(child_path); local
38 return row;
41 void SelectAndFocusRowNum(int row, GtkTreeView* tree_view) {
48 if (!gtk_tree_model_iter_nth_child(model, &iter, NULL, row)) {
111 // Every group consists of a header and a separator row, and there is a blank
112 // row between groups.
176 void TableAdapter::AddNodeToList(int row) {
178 int list_store_index = GetListStoreIndexForModelRow(row);
    [all...]

Completed in 474 milliseconds

1 2 3 4 5 6 78 91011>>