/external/webkit/Source/WebCore/platform/image-encoders/skia/ |
PNGImageEncoder.cpp | 76 Vector<unsigned char> row; local 103 row.resize(imageSize.width() * sizeof(SkPMColor)); 106 preMultipliedBGRAtoRGBA(pixels, imageSize.width(), row.data()); 107 png_write_row(png, row.data());
|
JPEGImageEncoder.cpp | 109 Vector<JSAMPLE> row; local 138 row.resize(cinfo.image_width * cinfo.input_components); 141 preMultipliedBGRAtoRGB(pixels, cinfo.image_width, row.data()); 143 RGBAtoRGB(pixels, cinfo.image_width, row.data()); 144 jpeg_write_scanlines(&cinfo, row.dataSlot(), 1);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
NotificationData.java | 37 public View row; // the outer expanded view field in class:NotificationData.Entry 89 public int add(IBinder key, StatusBarNotification notification, View row, View content, 94 entry.row = row;
|
/external/jpeg/ |
wrrle.c | 131 /* Set the output buffer to the first row */ 179 int row, col; local 223 for (row = cinfo->output_height-1; row >= 0; row--) { 226 (JDIMENSION) row, (JDIMENSION) 1, FALSE); 236 for (row = cinfo->output_height-1; row >= 0; row--) { 240 (JDIMENSION) row, (JDIMENSION) 1, FALSE) [all...] |
jddctmgr.c | 214 * coefficients scaled by scalefactor[row]*scalefactor[col], where 270 * coefficients scaled by scalefactor[row]*scalefactor[col], where 275 int row, col; local 282 for (row = 0; row < DCTSIZE; row++) { 286 aanscalefactor[row] * aanscalefactor[col]);
|
jcprepct.c | 33 * For the simple (no-context-row) case, we just need to buffer one 34 * row group's worth of pixels for the downsampling step. At the bottom of 35 * the image, we pad to a full row group by replicating the last pixel row. 36 * The downsampler's last output row is then replicated if needed to pad 37 * out to a full iMCU row. 39 * When providing context rows, we must buffer three row groups' worth of 40 * pixels. Three row groups are physically allocated, but the row pointer 41 * arrays are made five row groups high, with the extra pointers above an 109 register int row; local 219 int row; local [all...] |
/hardware/ti/omap4xxx/ion/ |
ion_test.c | 66 size_t row, col; local 68 for (row = 0; row < height; row++) 70 int i = (row * stride) + col; 73 for (row = 0; row < height; row++) 75 int i = (row * stride) + col;
|
/external/chromium/chrome/browser/resources/net_internals/ |
util.js | 135 * single header row. The header row appears at the top of an HTML formatted 137 * from the table body by a partial row of dashes. 140 * the header row. In HTML tables, it uses the title class and in ascii tables 163 * Starts a new row. 170 * Adds a column to the current row, setting its value to cellText. 186 * Adds a header row, if not already present, and adds a new column to it, 192 // Insert empty new row at start of |rows_| if currently no header row. 220 var row = this.rows_[rowIndex] [all...] |
/packages/apps/Exchange/src/com/android/exchange/provider/ |
ExchangeDirectoryProvider.java | 104 private Object[] row; field in class:ExchangeDirectoryProvider.GalContactRow 110 row = new Object[projection.size]; 130 return row; 136 row[integer] = value; 203 Object[] row; local 215 row = new Object[projection.length]; 220 row[i] = account.name; 222 row[i] = account.type; 235 row[i] = exchangeName; 244 row[i] = firstLetter + accountName.substring(atIndex + 2) 365 Object[] row = new Object[projection.length]; local [all...] |
/external/libvpx/vp8/decoder/ |
decodemv.c | 176 mv->row = (short)(read_mvcomponent(r, mvc) << 1); 364 mv->row += best_mv.row; 394 mbmi->need_to_clamp_mvs |= (mv->row < mb_to_top_edge) ? 1 : 0; 395 mbmi->need_to_clamp_mvs |= (mv->row > mb_to_bottom_edge) ? 1 : 0; 426 mv->row = (mv->row < mb_to_top_edge) ? mb_to_top_edge : mv->row; 427 mv->row = (mv->row > mb_to_bottom_edge) ? mb_to_bottom_edge : mv->row [all...] |
/external/chromium/chrome/browser/ |
plugin_exceptions_table_model.h | 38 virtual string16 GetText(int row, int column_id) OVERRIDE; 42 virtual int GetGroupID(int row) OVERRIDE;
|
/external/chromium/chrome/browser/resources/gpu_internals/ |
info_view.css | 14 #info-view .row-title {
|
/external/chromium/chrome/browser/ui/cocoa/ |
task_manager_mac.h | 98 // Lazily converts the image at the given row and caches it in |icon_cache_|. 99 NSImage* GetImageForRow(int row); 105 bool IsBackgroundRow(int row) const;
|
/external/webkit/Tools/QueueStatusServer/handlers/ |
dashboard.py | 52 row = { 57 return row
|
/frameworks/base/core/java/com/android/internal/widget/ |
LockPatternView.java | 136 int row; field in class:LockPatternView.Cell 150 * @param row The row of the cell. 153 private Cell(int row, int column) { 154 checkRange(row, column); 155 this.row = row; 160 return row; 168 * @param row The row of the cell [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridLayoutPainter.java | 64 for (int row = 0; row < grid.actualRowCount; row++) { 65 int y = grid.getRowY(row); 254 for (int row = 1; row < grid.actualRowCount; row++) { 255 int y = grid.getRowY(row); 270 int row = data.getRowMatch().cellIndex; local 274 Rect cellBounds = grid.getCellBounds(row, column, 1, 1) [all...] |
GridDropHandler.java | 115 // Row matches: 116 int row = mGrid.getClosestRow(y1); local 117 int rowY = mGrid.getRowY(row); 118 addTopMatch(y1, rowMatches, max, row, rowY); 119 addBaselineMatch(feedback.dragBaseline, y1, rowMatches, max, row, rowY); 187 int row = mGrid.getRow(y1); local 191 int topDistance = mGrid.getRowDistance(row, y1); 192 int bottomDistance = mGrid.getRowDistance(row + 1, y1); 201 row++; 209 mRowMatch = new GridMatch(SegmentType.TOP, 0, y1, row, matchTop, 0) [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
ScrollingThroughListOfFocusablesTest.java | 80 // move to next row 145 assertTrue("bottom of last row of last item should be at " + 164 // (make sure we are at last row of second item) 178 // move up to next row 185 // now we are at top row, should have caused scrolling, and fading edge... 193 assertEquals("top of selected row should be just below top vertical fading edge", 210 * @param row 214 int row) { 215 assertEquals("expecting selected row", 216 row, internalFocused.getSelectedRow()) [all...] |
/external/chromium/base/metrics/ |
stats_table.cc | 44 // If the first character of the counter_name is '\0', then that row is 133 int* row(int counter_id) const { function in class:base::StatsTable::Private 379 int* row = impl_->row(counter_id); local 380 return &(row[slot_id-1]); 399 int* row = impl_->row(index); local 402 rv += row[slot_id]; 415 int row = FindCounter(name); local 416 if (!row) [all...] |
/external/chromium/chrome/browser/ui/views/ |
hung_renderer_view.cc | 52 virtual string16 GetText(int row, int column_id); 53 virtual SkBitmap GetIcon(int row); 94 string16 HungPagesTableModel::GetText(int row, int column_id) { 95 DCHECK(row >= 0 && row < RowCount()); 96 string16 title = tab_contentses_[row]->GetTitle(); 106 SkBitmap HungPagesTableModel::GetIcon(int row) { 107 DCHECK(row >= 0 && row < RowCount()); 108 return tab_contentses_.at(row)->GetFavicon() [all...] |
/libcore/luni/src/test/java/libcore/sqlite/ |
OldFunctionContextTest.java | 51 String row[] = (String[]) res.rows.elementAt(0); local 52 String val = row[0]; 64 String row[] = (String[]) res.rows.elementAt(0); local 65 String val = row[0]; 77 String row[] = (String[]) res.rows.elementAt(0); local 78 String val = row[0]; 122 String row[] = (String[]) res.rows.elementAt(0); local 123 String val = row[0]; 160 String row[] = (String[]) res.rows.elementAt(0); local 161 String val = row[0] [all...] |
/external/openssl/apps/ |
ca.c | 1697 OPENSSL_STRING row[DB_NUMBER]; local 2389 char *row[DB_NUMBER],**rrow,**irow; local 2506 char *row[DB_NUMBER],**rrow; local [all...] |
/external/libpng/contrib/gregbook/ |
rpng2-win.c | 145 static void rpng2_win_display_row(ulg row); 449 " -nommx*\tdisable optimized MMX routines for decoding row filters,\n" 818 ulg i, row; local 853 for (row = 0; row < rpng2_info.height; ++row) { 854 yidx = row % bgscale; 855 even_odd_vert = (row / bgscale) & 1; [all...] |
/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_conceal.c | 55 static u32 ConcealMb(mbStorage_t *pMb, image_t *currImage, u32 row, u32 col, 89 decoded macroblock and concealing the row containing the macroblock 90 in question. After that all macroblocks above the row in question 129 u32 row, col; local 158 i = row = col = 0; 166 row++; 189 /* start from the row containing the first correct macroblock, conceal the 190 * row in question, all rows above that row and then continue downwards */ 191 mb = pStorage->mb + row * width [all...] |
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCResultSet.java | 9 * Current row to be retrieved. 11 private int row; field in class:JDBCResultSet 62 * Flag for cursor being (not) on insert row. 67 * Row buffer for insert/update row. 79 this.row = -1; 134 if (row < 0) { 138 System.arraycopy((String []) tr.rows.elementAt(row), 0, 147 row++; 148 return row < tr.nrows [all...] |