/external/webkit/Source/WebCore/inspector/front-end/ |
TimelinePanel.js | 105 // Define row height, should be in sync with styles for timeline graphs. 596 listRowElement.row.update(record, isEven, this._calculator, visibleTop); 597 graphRowElement.row.update(record, isEven, this._calculator, width, this._expandOffset, i); 607 listRowElement.row.dispose(); 612 graphRowElement.row.dispose(); 640 var record = anchor.row._record; [all...] |
ShortcutsHelp.js | 71 var row = table.createChild("tr"); 76 var td = row.createChild("td");
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
TransferQueue.cpp | 396 int row, col; local 405 for (row = 0 ; row < bitmap.height(); row ++) { 406 uint8_t* dst = &(img[buffer.stride * row * bpp]); 407 uint8_t* src = &(bitmapOrigin[bitmap.width() * row * bpp]);
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
ImageBufferCairo.cpp | 145 unsigned* row = reinterpret_cast<unsigned*>(dataSrc + stride * y); local 147 unsigned* pixel = row + x; 198 unsigned* row = reinterpret_cast<unsigned*>(dataSrc + stride * (y + originy)); local 201 unsigned* pixel = row + x + originx; 266 unsigned* row = reinterpret_cast<unsigned*>(dataDst + stride * (y + desty)); local 269 unsigned* pixel = row + x + destx;
|
/external/opencv/cxcore/include/ |
cxtypes.h | 391 int widthStep; /* Size of aligned image row in bytes. */ 455 /* get reference to pixel at (col,row), 457 #define CV_IMAGE_ELEM( image, elemtype, row, col ) \ 458 (((elemtype*)((image)->imageData + (image)->widthStep*(row)))[(col)]) 639 #define CV_MAT_ELEM_PTR_FAST( mat, row, col, pix_size ) \ 640 (assert( (unsigned)(row) < (unsigned)(mat).rows && \ 642 (mat).data.ptr + (size_t)(mat).step*(row) + (pix_size)*(col)) 644 #define CV_MAT_ELEM_PTR( mat, row, col ) \ 645 CV_MAT_ELEM_PTR_FAST( mat, row, col, CV_ELEM_SIZE((mat).type) ) 647 #define CV_MAT_ELEM( mat, elemtype, row, col ) [all...] |
/external/icu4c/tools/gencase/ |
store.c | 180 The miscellaneous data takes up one pseudo-row and includes: 182 - number of UChars per row 477 /* make p point to row i-1 */ 730 uint32_t *row; local 766 while((row=upvec_getRow(pv, i, &start, &end))!=NULL && start<UPVEC_FIRST_SPECIAL_CP) { 767 value=*row; 774 * stop this loop because pv was changed and row is not valid any more 777 while((row=upvec_getRow(pv, i, NULL, &end))!=NULL && start>end) { 780 row=NULL; /* signal to continue with outer loop, without further ++i */ 785 if(row==NULL) 1045 uint32_t *row; local 1070 const uint32_t *row; local [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
png.h | 702 png_uint_32 rowbytes; /* bytes needed to hold an untransformed row */ [all...] |
/external/chromium/chrome/browser/resources/options/ |
sync_setup_overlay.css | 218 .access-code-row { 222 .access-code-row > td { 227 #access-code-label-row > td { 244 #password-row {
|
/external/junit/src/junit/swingui/ |
TestSuitePanel.java | 56 boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) { 58 Component c= super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/ |
AudioQualityVerifierActivity.java | 246 View row = inflater.inflate(R.layout.aq_row, parent, false); local 247 TextView nameField = (TextView) row.findViewById(R.id.testName); 248 TextView scoreField = (TextView) row.findViewById(R.id.testScore); 259 return row;
|
/cts/tests/tests/widget/src/android/widget/cts/ |
SimpleCursorTreeAdapterTest.java | 227 * @param rowCount the row count 240 Object[] row = new Object[colCount + 1]; local 243 row[j] = prefix + i + "" + j; 245 row[colCount] = i; 246 cursor.addRow(row);
|
/external/chromium/chrome/browser/resources/net_internals/ |
serviceprovidersview.js | 108 // Add a table row for each service provider. 130 // Add a table row for each namespace provider.
|
/external/libpng/contrib/pngminus/ |
png2pnm.c | 204 int row, col; local 374 for (row = 0; row < height; row++) 420 } /* end for row */
|
pnm2png.c | 207 int row, col; local 341 for (row = 0; row < height; row++) 378 } /* end for row */ 411 /* if needed we will allocate memory for an new array of row-pointers */
|
/external/libpng/ |
pngread.c | 583 "Ignoring extra png_read_update_info() call; row buffer not reallocated"); 608 png_read_row(png_structp png_ptr, png_bytep row, png_bytep dsp_row) 619 png_debug2(1, "in png_read_row (row %lu, pass %d)", 659 /* If interlaced and we do not need a new row, combine row and return */ 736 png_error(png_ptr, "Invalid attempt to read row data"); 837 if (row != NULL) 838 png_combine_row(png_ptr, row, 844 if (row != NULL) 845 png_combine_row(png_ptr, row, 0xff) 1541 int row; local [all...] |
/external/llvm/lib/DebugInfo/ |
DWARFDebugLine.cpp | 51 void DWARFDebugLine::Row::postAppend() { 57 void DWARFDebugLine::Row::reset(bool default_is_stmt) { 70 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { 88 for (std::vector<Row>::const_iterator pos = Rows.begin(), 97 ++row; // Increase the row number. 99 Row::postAppend(); 218 // append a row to the matrix using the current values of the 221 // with a DW_LNE_end_sequence instruction which creates a row whose 280 // Takes no arguments. Append a row to the matrix using th 449 DWARFDebugLine::Row row; local [all...] |
/external/webkit/Tools/CodeCoverage/ |
regenerate-coverage-display | 352 for row in r: 353 id, time_str = row 360 for row in r: 361 path, total_lines_str, covered_lines_str = row
|
/external/zlib/ |
crc32.c | 378 unsigned long row; local 388 row = 1; 390 odd[n] = row; 391 row <<= 1;
|
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ui/ |
DirListActivity.java | 170 View row = inflater.inflate(R.layout.dirlist_row, null); local 172 TextView label = (TextView)row.findViewById(R.id.label); 175 ImageView icon = (ImageView)row.findViewById(R.id.icon); 182 return row;
|
/external/chromium/chrome/browser/history/ |
in_memory_url_index.h | 146 void UpdateURL(URLID row_id, const URLRow& row); 286 bool IndexRow(const URLRow& row); 328 // if all of the terms in |terms_vector| occur in |row| and, if so, 338 const URLRow& row,
|
starred_url_database_unittest.cc | 26 URLRow row(url); 27 row.set_visit_count(1); 28 EXPECT_TRUE(AddURL(row));
|
url_database_unittest.cc | 217 URLRow row; local 219 for (; history_enum.GetNextURL(&row); ++row_count) 220 EXPECT_EQ(1U, good_urls.count(row.url().spec())); 233 // Insert a row with favicon 248 // Insert another row without favicon 257 // Insert a row with favicon
|
/external/chromium/chrome/browser/ui/gtk/ |
task_manager_gtk.h | 58 // Returns the model data for a given |row| and |col_id|. 59 std::string GetModelText(int row, int col_id); 61 // Retrieves the resource icon from the model for |row|. 62 GdkPixbuf* GetModelIcon(int row); 64 // Sets the treeview row data. |row| is an index into the model and |iter| 66 void SetRowDataFromModel(int row, GtkTreeIter* iter); 94 // row-activated handler that foregrounds a process on activation (e.g.,
|
/external/libvpx/vp8/encoder/x86/ |
ssim_opt.asm | 85 mov rdx, 16 ;row counter 105 add rsi, rcx ; next s row 106 add rdi, rax ; next r row 173 mov rdx, 8 ;row counter 187 add rsi, rcx ; next s row 188 add rdi, rax ; next r row
|
/external/libvpx/vpx_scale/arm/neon/ |
vp8_vpxyv12_copysrcframe_func_neon.asm | 38 add r10, r2, r6 ;second row src 39 add r11, r3, r7 ;second row dst 149 add r10, r2, r6 ;second row src 150 add r11, r3, r7 ;second row dst 249 addne r10, r2, r10 ;second row src 250 addne r11, r3, r11 ;second row dst
|