/packages/apps/Email/src/com/android/email/activity/ |
MailboxFragmentAdapter.java | 84 * The type of the row to present to the user. There are 4 defined rows that each 100 /** The type of data contained in the cursor row. */ 102 /** The original ID of the cursor row. May be negative. */ 105 * Projection for a typical mailbox or account row. 162 /** View is of a "normal" row */ 164 /** View is of a separator row */ 228 /** Returns {@code true} if the specified row is of an account in the combined view. */ 234 * Returns {@code true} if the specified row is a mailbox. 241 /** Returns {@code true} if the current row is of an account in the combined view. */ 246 /** Returns {@code true} if the current row is a header * 482 RowBuilder row = cursor.newRow(); local [all...] |
/external/icu4c/common/ |
rbbidata.cpp | 231 RBBIStateTableRow *row = (RBBIStateTableRow *) local 233 RBBIDebugPrintf("%4d | %3d %3d %3d ", s, row->fAccepting, row->fLookAhead, row->fTagIdx); 235 RBBIDebugPrintf("%3d ", row->fNextState[c]);
|
/external/icu4c/tools/genbidi/ |
store.c | 295 const uint32_t *row; local 314 for(i=0; (row=upvec_getRow(pv, i, &start, &end))!=NULL && start<UPVEC_FIRST_SPECIAL_CP; ++i) { 316 if(!utrie_setRange32(pTrie, start, end+1, *row, TRUE)) { 322 if(row[1]!=0) { 341 jgArray[prev++ -jgStart]=(uint8_t)row[1];
|
/external/jpeg/ |
jcdctmgr.c | 93 * coefficients scaled by scalefactor[row]*scalefactor[col], where 131 * coefficients scaled by scalefactor[row]*scalefactor[col], where 139 int row, col; local 152 for (row = 0; row < DCTSIZE; row++) { 156 aanscalefactor[row] * aanscalefactor[col] * 8.0)));
|
/external/webkit/Source/WebCore/platform/image-decoders/png/ |
PNGImageDecoder.cpp | 84 // Called when a row is ready. 360 * this function is called for every row in the image. If the 362 * this function will be called for every row in every pass. 364 * When the row is not changed, the new_row variable will be NULL. 370 * png_progressive_combine_row() passing in the row and the 371 * old row. You can call this function for NULL rows (it will 380 * the old row, so the rows do not have to be initialized. After 382 * to pass the current row, and the function will combine the 383 * old row and the new row 389 png_bytep row; local [all...] |
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitsoupauthdialog.c | 160 int row, 178 0, 1, row, row + 1, local 181 1, 2, row, row + 1); local
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
NinePatchTexture.java | 311 for (int row = 0; row < ny - 1; row++) { 327 int k = row * nx + col; 329 int colorIdx = row * (nx - 1) + col;
|
/external/qemu/distrib/libpng-1.2.19/ |
pngrutil.c | 2796 png_bytep row = png_ptr->row_buf + 1; local 3529 png_bytep row = png_ptr->row_buf + 1; local [all...] |
/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...] |
/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 | 396 // The row for test.package2 should not remain. 603 Object[] row = new Object[cursor.getColumnCount()]; local 604 row[cursor.getColumnIndex(Directory.ACCOUNT_NAME)] = accountName; 605 row[cursor.getColumnIndex(Directory.ACCOUNT_TYPE)] = accountType; 606 row[cursor.getColumnIndex(Directory.DISPLAY_NAME)] = displayName; 607 row[cursor.getColumnIndex(Directory.TYPE_RESOURCE_ID)] = typeResourceId; 608 row[cursor.getColumnIndex(Directory.EXPORT_SUPPORT)] = exportSupport; 609 row[cursor.getColumnIndex(Directory.SHORTCUT_SUPPORT)] = shortcutSupport; 610 row[cursor.getColumnIndex(Directory.PHOTO_SUPPORT)] = photoSupport; 611 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);
|