/external/quake/quake/src/QW/client/ |
gl_warp.c | 495 int row, column; local 529 for(row=rows-1; row>=0; row--) { 530 pixbuf = targa_rgba + row*columns*4; 560 for(row=rows-1; row>=0; row--) { 561 pixbuf = targa_rgba + row*columns*4; 589 if (row>0 [all...] |
/external/quake/quake/src/WinQuake/ |
gl_warp.cpp | 544 int row, column; local 578 for(row=rows-1; row>=0; row--) { 579 pixbuf = targa_rgba + row*columns*4; 609 for(row=rows-1; row>=0; row--) { 610 pixbuf = targa_rgba + row*columns*4; 638 if (row>0 [all...] |
draw.cpp | 141 int row, col; local 155 row = num>>4; 157 source = draw_chars + (row<<10) + (col<<3); 256 int row, col; local 263 row = num>>4; 265 source = draw_chars + (row<<10) + (col<<3); 511 int row, col; local 516 row = num>>4; 518 source = draw_chars + (row<<10) + (col<<3);
|
/frameworks/base/core/java/android/inputmethodservice/ |
Keyboard.java | 48 * <Row android:keyWidth="32px" > 51 * </Row> 66 private static final String TAG_ROW = "Row"; 147 private ArrayList<Row> rows = new ArrayList<Row>(); 150 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate. 151 * Some of the key size defaults can be overridden per row from what the {@link Keyboard} 160 public static class Row { 161 /** Default width of a key in this row. */ 163 /** Default height of a key in this row. * 581 Row row = new Row(this); local 616 Row row = rows.get(rowIndex); local 783 int row = 0; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
GridLayoutConverter.java | 93 * row flexibility (and as mentioned above, possibly layout_weight). 163 // row and/or a stretchable column in the layout. 164 // In a GridLayout, a row or column is stretchable if it defines a gravity (regardless 167 // in the row/column have to be stretchable for the overall row/column to be 170 // Map from row index to boolean for "is the row fixed/inflexible?" 218 int row = rowFixed.size(); local 238 sb.append(ATTR_LAYOUT_ROW).append('=').append('"').append(Integer.toString(row)); 327 int row = view.getRow() local 750 int row; local [all...] |
/external/chromium/chrome/browser/history/ |
history_backend.cc | 174 bool GetRowForURL(const GURL& url, URLRow* row) { 175 if (!main_db_->GetRowForURL(url, row)) { 176 if (!archived_db_ || !archived_db_->GetRowForURL(url, row)) { 177 // This row is neither in the main nor the archived DB. 292 VisitRow row; local 293 if (!db_->GetRowForVisit(visit_id, &row)) 295 if (row.segment_id) 296 return row.segment_id; // Found a visit in this change with a segment. 299 visit_id = row.referring_visit; 671 // Update of an existing row 840 URLRow row; local 987 URLRow* row = &request->value.a; local 2088 URLRow row; local [all...] |
expire_history_backend.cc | 372 // Add the URL row to the affected URL list. 377 URLRow row; local 378 if (!main_db_->GetURLRow(visits[i].url_id, &row)) 380 dependencies->affected_urls[visits[i].url_id] = row; 447 // This row is not in the archived DB, add it. 488 continue; // URL row doesn't exist in the database. 534 URLRow row; // Row in the main DB. local 536 if (!main_db_->GetURLRow(visits[i].url_id, &row) || 537 !(archived_id = ArchiveOneURL(row))) { [all...] |
expire_history_backend_unittest.cc | 79 void EnsureURLInfoGone(const URLRow& row); 360 void ExpireHistoryTest::EnsureURLInfoGone(const URLRow& row) { 363 EXPECT_FALSE(main_db_->GetURLRow(row.id(), &temp_row)); 366 EXPECT_EQ(0, CountTextMatchesForURL(row.url())); 370 main_db_->GetVisitsForURL(row.id(), &visits); 375 // EXPECT_FALSE(HasThumbnail(row.id())); 379 // row is marked typed. 386 if (deleted_details->urls.find(row.url()) != 397 if (modified_details->changed_urls[cur_url].url() == row.url()) 405 if (visited_details->row.url() == row.url() [all...] |
in_memory_url_index_unittest.cc | 90 URLRow row; local 91 FillURLRow(statement, &row); 93 for (int64 i = row.last_visit().ToInternalValue(); i > 0; --i) 95 row.set_last_visit(last_visit); 96 UpdateURLRow(row.id(), row); 111 URLRow row(GURL(url), 0); 112 row.set_title(UTF8ToUTF16(title)); 113 row.set_visit_count(visit_count); 114 row.set_typed_count(typed_count) [all...] |
/external/opencv/cvaux/include/ |
cvmat.hpp | 386 k == 0 - i-th row 505 _CvMATElem_ operator ()( int row ); 506 _CvMATConstElem_ operator ()( int row ) const; 508 _CvMATElem_ operator ()( int row, int col ); 509 _CvMATConstElem_ operator ()( int row, int col ) const; 514 _CvMATElemCn_ operator()( int row, int col, int coi ); 515 double operator()( int row, int col, int coi ) const; 520 void* ptr( int row ); 521 const void* ptr( int row ) const; 523 void* ptr( int row, int col ) [all...] |
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
cpp.py | 206 current_row = start_position.row 208 # Start with the given row and trim off everything past what may be matched. 209 current_line = lines[start_position.row][:start_position.column] 369 def __init__(self, row, column): 370 self.row = row 374 return '(%s, %s)' % (self.row, self.column) 377 return self.row.__cmp__(other.row) or self.column.__cmp__(other.column) 382 def __init__(self, parameter, parameter_name_index, row) [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactDirectoryManagerTest.java | 364 // The row for test.package2 should not remain. 540 Object[] row = new Object[cursor.getColumnCount()]; local 541 row[cursor.getColumnIndex(Directory.ACCOUNT_NAME)] = accountName; 542 row[cursor.getColumnIndex(Directory.ACCOUNT_TYPE)] = accountType; 543 row[cursor.getColumnIndex(Directory.DISPLAY_NAME)] = displayName; 544 row[cursor.getColumnIndex(Directory.TYPE_RESOURCE_ID)] = typeResourceId; 545 row[cursor.getColumnIndex(Directory.EXPORT_SUPPORT)] = exportSupport; 546 row[cursor.getColumnIndex(Directory.SHORTCUT_SUPPORT)] = shortcutSupport; 547 row[cursor.getColumnIndex(Directory.PHOTO_SUPPORT)] = photoSupport; 548 cursor.addRow(row); [all...] |
/external/libvpx/vp8/common/ |
postproc.c | 141 int row; local 149 for (row = 0; row < rows; row++) 151 /* post_proc_down for one row */ 208 /* next row */ 865 y1 = y0 + 4 + (mv->row >> 3); 873 y1 = y0 +12 + (mv->row >> 3); 886 y1 = y0 + 8 + (mv->row >> 3); 894 y1 = y0 + 8 + (mv->row >> 3) [all...] |
/external/libvpx/vp8/encoder/arm/armv6/ |
vp8_variance_halfpixvar16x16_v_armv6.asm | 34 add r9, r0, r1 ; set src pointer to next row 37 ldr r6, [r9, #0] ; load 4 src pixels from next row 65 ldr r6, [r9, #4] ; load 4 src pixels from next row 96 ldr r6, [r9, #8] ; load 4 src pixels from next row 127 ldr r6, [r9, #12] ; load 4 src pixels from next row 138 add r0, r0, r1 ; set src_ptr to next row 141 add r2, r2, r3 ; set dst_ptr to next row
|
/external/tinyxml/ |
tinyxmlparser.cpp | 172 TiXmlParsingData( const char* start, int _tabsize, int row, int col ) 177 cursor.row = row; 197 // Get the current row, column. 198 int row = cursor.row; local 217 ++row; 230 ++row; 296 cursor.row = row; [all...] |
/external/chromium/chrome/browser/resources/net_internals/ |
sourceentry.js | 6 * Each row in the filtered items list is backed by a SourceEntry. This 7 * instance contains all of the data pertaining to that row, and notifies 161 // Create a row. 330 * Returns source ID of the entry whose row is currently above this one's. 343 * Returns source ID of the entry whose row is currently below this one's. 360 * Moves current object's row before |entry|'s row. 369 * Moves current object's row after |entry|'s row.
|
/frameworks/base/tools/aapt/ |
Images.cpp | 168 png_bytep row, int width, bool transparent, bool required, 178 if (is_tick(row+i*4, transparent, outError)) { 460 if (yDivs[0] == 0) { // Row 1 is strechable 483 // The first row always starts with the top being at y=0 and the bottom 485 // the first row is stretchable along the Y axis, otherwise it is fixed. 486 // The last row always ends with the bottom being bitmap.height and the top 488 // yDivs[numYDivs-1]. In the former case the last row is stretchable along 497 // The initial yDiv and whether the first row is considered stretchable or 633 png_bytep row = rows[j]; local 635 rr = row[0] 693 png_bytep row = imageInfo.rows[j]; local 816 png_bytep row = imageInfo.rows[j]; local [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
Contacts_PeopleTest.java | 99 for (Uri row : mRowsAdded) { 100 mProvider.delete(row, null, null); 104 for (Uri row : mPeopleRowsAdded) { 105 mProvider.delete(row, null, null); 109 for (Uri row : mGroupRowsAdded) { 110 mProvider.delete(row, null, null);
|
/external/chromium/chrome/browser/importer/ |
mork_reader.cc | 159 // Table / table row. 239 // Parses a table row of the form [123(^45^67)..] 240 // (row id 123 has the value with id 67 for the column with id 45). 251 // Points to the current row we're parsing inside of the |table_|, will be 252 // NULL if we're not inside a row. 265 // junk before the first row that looks like cell values but isn't. 269 in_meta_row = true; // The meta row is enclosed in { } 278 // Start of a new row. Consume the row id, up to the first '('. 279 // Row edits also have a table namespace, separated from the row i [all...] |
/external/jpeg/ |
rdbmp.c | 59 jvirt_sarray_ptr whole_image; /* Needed to reverse row order */ 60 JDIMENSION source_row; /* Current source row number */ 112 * Read one row of pixels. 114 * unprocessed. We must read it out in top-to-bottom row order, and if 129 /* Fetch next row from virtual array */ 158 /* Fetch next row from virtual array */ 194 JDIMENSION row, col; local 197 /* Read the data into a virtual array in input-file row order. */ 198 for (row = 0; row < cinfo->image_height; row++) [all...] |
rdtarga.c | 55 jvirt_sarray_ptr whole_image; /* Needed if funny input row order */ 56 JDIMENSION current_row; /* Current logical row number to read */ 70 /* This saves the correct pixel-row-expansion method for preload_image */ 167 * Read one row of pixels. 268 * row order. The entire image has already been read into whole_image 269 * with proper conversion of pixel format, but it's in a funny row order. 278 /* Compute row of source that maps to current_row of normal order */ 283 /* Fetch that row from virtual array */ 303 JDIMENSION row; local 306 /* Read the data into a virtual array in input-file row order. * [all...] |
wrbmp.c | 49 jvirt_sarray_ptr whole_image; /* needed to reverse row order */ 50 JDIMENSION data_width; /* JSAMPLEs per row */ 51 JDIMENSION row_width; /* physical width of one row in the BMP file */ 52 int pad_bytes; /* number of padding bytes needed per row */ 53 JDIMENSION cur_output_row; /* next row# to write to virtual array */ 81 /* Access next row in virtual array */ 116 /* Access next row in virtual array */ 350 JDIMENSION row; local 361 for (row = cinfo->output_height; row > 0; row--) [all...] |
/external/skia/src/images/ |
SkMovie_gif.cpp | 136 int row; local 137 // every 'rowStep'th row, starting with row 'startRow' 138 for (row = startRow; row < copyHeight; row += rowStep) { 139 uint32_t* dst = bm->getAddr32(imageDesc.Left, imageDesc.Top + row); 145 src += imageDesc.Width * ((imageDesc.Height - row + rowStep - 1) / rowStep); 166 // group 1 - every 8th row, starting with row [all...] |
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLTableElement31.js | 78 The insertRow() method inserts a new empty table row. In addition, when 79 the table is empty the row is inserted into a TBODY which is created 85 have a TBODY element. Insert a new row into the empty
|
HTMLTableElement39.js | 78 The insertRow() method inserts a new empty table row. 79 If index is -1 or equal to the number of rows, the new row 85 of negative one is two. After the new row is inserted the number
|