/external/mesa3d/src/mesa/main/ |
accum.c | 162 GLshort *row = (GLshort *) accMap; local 165 row[i * 4 + 0] = clearR; 166 row[i * 4 + 1] = clearG; 167 row[i * 4 + 2] = clearB; 168 row[i * 4 + 3] = clearA;
|
/external/qemu/distrib/jpeg-6b/ |
jcsample.c | 10 * Downsampling input data is counted in "row groups". A row group 13 * A single row group is processed in each call to the downsampler module. 23 * one row group's worth of pixels above and below the passed-in data; 25 * the first or last real pixel row. 93 int row; local 97 for (row = 0; row < num_rows; row++) { 98 ptr = image_data[row] + input_cols [all...] |
/frameworks/base/core/java/android/widget/ |
TableLayout.java | 35 * each defining a row (actually, you can have other children, which will be 37 * their rows, columns, or cells. Each row has zero or more cells; each cell can 39 * as the row with the most cells. A table can leave cells empty. Cells can span 42 * <p>The width of a column is defined by the row with the widest cell in that 63 * <p> Cells must be added to a row in increasing column order, both in code and 66 * a column number, it will be considered an empty cell in that row. See the 71 * will be displayed as a single row that spans all the table columns.</p> 317 * takes up as much as available space as possible in its row.</p> 343 * <p>Makes the given column shrinkable or not. When a row is too wide, the 370 * <p>Applies the columns collapse status to a new row added to thi 381 final TableRow row = (TableRow) child; local 503 final TableRow row = (TableRow) child; local [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
pprof | [all...] |
/external/chromium_org/chrome/browser/history/ |
history_backend_unittest.cc | 217 URLRow row; 218 URLID id = backend_->db()->GetRowForURL(url, &row); 551 // The second row should be deleted. 623 // Check that a row was added. 635 // The row should be deleted. 645 // The row should still be deleted. 731 // Unstar row 1. 768 // A row should have been added for the url. 769 URLRow row; local 770 URLID url_id = backend_->db()->GetRowForURL(url, &row); 1011 URLRow row; local 1047 URLRow row; local 1086 URLRow row; local 1126 URLRow row; local 1159 URLRow row; local 1214 URLRow row; local 2447 URLRow row; local 2547 URLRow row; local 2573 URLRow row; local [all...] |
in_memory_url_index_unittest.cc | 112 bool UpdateURL(const URLRow& row); 177 bool InMemoryURLIndexTest::UpdateURL(const URLRow& row) { 179 history_service_, row, url_index_->languages_, 243 URLRow row; local 244 history_database_->FillURLRow(statement, &row); 246 for (int64 i = row.last_visit().ToInternalValue(); i > 0; --i) 248 row.set_last_visit(last_visit); 249 history_database_->UpdateURLRow(row.id(), row); 263 VisitRow row; local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Matrix3f.java | 164 * the row index. 206 * <code>get(float[])</code> returns the matrix in row-major or column-major order. 212 * True for row major storage in the array (translation in elements 3, 7, 11 for a 4x4), 317 * parameter. This row is returned as a <code>Vector3f</code> object. 320 * the row to retrieve. Must be between 0 and 2. 321 * @return the row specified by the index. 329 * parameter. This row is returned as a <code>Vector3f</code> object. 332 * the row to retrieve. Must be between 0 and 2. 336 * @return the row specified by the index. 359 logger.warning("Invalid row index.") [all...] |
/external/chromium/chrome/browser/history/ |
history.cc | 389 history::URLRow row(url); 390 row.set_title(title); 391 row.set_visit_count(visit_count); 392 row.set_typed_count(typed_count); 393 row.set_last_visit(last_visit); 394 row.set_hidden(hidden); 397 rows.push_back(row);
|
history_backend_unittest.cc | 122 URLRow row; 123 URLID id = backend_->db()->GetRowForURL(url, &row); 308 // The second row should be deleted. 422 // Unstar row 1. 460 // A row should have been added for the url. 461 URLRow row; local 462 URLID url_id = backend_->db()->GetRowForURL(url, &row); 466 ASSERT_EQ(1, row.typed_count()); 494 ASSERT_EQ(0, backend_->db()->GetRowForURL(url, &row)); 601 // Fetch the row information about stripped url from history db 685 URLRow row; local 718 URLRow row; local 758 URLRow row; local [all...] |
/external/chromium/chrome/browser/importer/ |
firefox3_importer.cc | 140 history::URLRow row(url); 141 row.set_title(s.ColumnString16(1)); 142 row.set_visit_count(s.ColumnInt(2)); 143 row.set_hidden(s.ColumnInt(3) == 1); 144 row.set_typed_count(s.ColumnInt(4)); 145 row.set_last_visit(base::Time::FromTimeT(s.ColumnInt64(5)/1000000)); 147 rows.push_back(row);
|
ie_importer.cc | 185 history::URLRow row(url); 186 row.set_title(title_string); 187 row.set_last_visit(base::Time::FromFileTime(stat_url.ftLastVisited)); 189 row.set_visit_count(1); 190 row.set_hidden(false); 192 row.set_hidden(true); 195 rows.push_back(row);
|
/external/chromium_org/chrome/browser/ui/autofill/ |
autofill_popup_controller_impl.cc | 36 // The vertical height of each row in pixels. 546 void AutofillPopupControllerImpl::InvalidateRow(size_t row) { 547 DCHECK(0 <= row); 548 DCHECK(row < identifiers_.size()); 549 view_->InvalidateRow(row); 583 int AutofillPopupControllerImpl::RowWidthWithoutText(int row) const { 586 if (!subtexts_[row].empty()) 590 if (!icons_[row].empty())
|
/external/chromium_org/chrome/utility/importer/ |
firefox_importer.cc | 175 ImporterURLRow row(url); 176 row.title = s.ColumnString16(1); 177 row.visit_count = s.ColumnInt(2); 178 row.hidden = s.ColumnInt(3) == 1; 179 row.typed_count = s.ColumnInt(4); 180 row.last_visit = base::Time::FromTimeT(s.ColumnInt64(5)/1000000); 182 rows.push_back(row);
|
/external/chromium_org/third_party/skia/src/core/ |
SkScan_AntiPath.cpp | 64 /// Widest row of region to be blitted, in destination coordinates. 66 /// Leftmost x coordinate in any row, in destination coordinates. 68 /// Leftmost x coordinate in any row, in supersampled coordinates. 114 /// Once fRuns contains a complete supersampled row, flush() blits 118 /// Blits a row of pixels, with location and width specified 291 // directly to the destintion canvas one row per SCALE supersampled rows. 531 uint8_t* row = fMask.fImage + iy * fMask.fRowBytes + (x >> SHIFT); local 543 SkASSERT(row >= fMask.fImage); 544 SkASSERT(row < fMask.fImage + kMAX_STORAGE + 1); 545 add_aa_span(row, coverage_to_partial_alpha(fe - fb)) [all...] |
/external/chromium_org/v8/tools/profviz/ |
composer.js | 45 var kDeoptRow = 7; // Row displaying deopts. 452 function DrawBar(row, color, start, end, width) { 453 DrawBarBase(color, start, end, row + width, row - width); 456 function DrawHalfBar(row, color, start, end, width) { 457 DrawBarBase(color, start, end, row, row - width); 515 var row = MergeRanges(TicksToRanges(code_kind.in_execution)); 516 for (var j = 0; j < row.length; j++) { 518 row[j].start, row[j].end, kExecutionFrameWidth) [all...] |
/external/skia/src/core/ |
SkScan_AntiPath.cpp | 64 /// Widest row of region to be blitted, in destination coordinates. 66 /// Leftmost x coordinate in any row, in destination coordinates. 68 /// Leftmost x coordinate in any row, in supersampled coordinates. 114 /// Once fRuns contains a complete supersampled row, flush() blits 118 /// Blits a row of pixels, with location and width specified 291 // directly to the destintion canvas one row per SCALE supersampled rows. 531 uint8_t* row = fMask.fImage + iy * fMask.fRowBytes + (x >> SHIFT); local 543 SkASSERT(row >= fMask.fImage); 544 SkASSERT(row < fMask.fImage + kMAX_STORAGE + 1); 545 add_aa_span(row, coverage_to_partial_alpha(fe - fb)) [all...] |
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/ |
ml_math_func.c | 342 * the first row of the matrix. Rotation matrix multiplied 555 static unsigned short inv_row_2_scale(const signed char *row) 559 if (row[0] > 0) 561 else if (row[0] < 0) 563 else if (row[1] > 0) 565 else if (row[1] < 0) 567 else if (row[2] > 0) 569 else if (row[2] < 0) 580 * first row, with the bit number 2 being the sign. The next 2 bits (3 and 4) represent 581 * the column the one is on for the second row with bit number 5 being the sign [all...] |
/external/libvpx/libvpx/vp8/common/ |
postproc.c | 143 int row; local 148 for (row = 0; row < size; row++) 150 /* post_proc_down for one row */ 209 /* next row */ 963 y1 = y0 + 4 + (mv->row >> 3); 971 y1 = y0 +12 + (mv->row >> 3); 984 y1 = y0 + 8 + (mv->row >> 3); 992 y1 = y0 + 8 + (mv->row >> 3) [all...] |
/libcore/luni/src/test/java/libcore/sqlite/ |
OldDatabaseTest.java | 199 String row[] = (String[]) res.rows.elementAt(0); local 200 assertEquals(Integer.parseInt(row[0]), 1); 201 assertEquals(Integer.parseInt(row[1]), 10); 202 assertEquals(Integer.parseInt(row[2]), 20); 482 String row[] = (String[]) res.rows.elementAt(0); local 483 assertEquals(Integer.parseInt(row[0]), 1); 484 assertEquals(Integer.parseInt(row[1]), 10); 485 assertEquals(Integer.parseInt(row[2]), 20); 565 String row[] = (String[]) res.rows.elementAt(0); local 566 String val = row[0] 626 String row[] = (String[]) res.rows.elementAt(0); local [all...] |
/external/chromium_org/chrome/browser/resources/profiler/ |
profiler.js | 96 var EDIT_COLUMNS_ROW = 'edit-columns-row'; 105 var SNAPSHOTS_ROW = 'snapshots-row'; 116 // Row keys 119 // Each row of our data is an array of values rather than a dictionary. This 156 // each row one at a time via the 'consume()' method. After all rows have 550 * The full set of columns which define the "identity" for a row. A row is 551 * considered equivalent to another row if it matches on all of these 824 * Adds new derived properties to row. Mutates the provided dictionary |e|. 853 function consumeAggregates(aggregates, row) { [all...] |
/build/tools/droiddoc/templates-pdk/assets/design/ |
default.css | 47 #main-row { 49 #main-row:after { 55 * html #main-row { 128 .layout-content-row { 131 .layout-content-row:after { 137 * html .layout-content-row { 542 .figure-row { 546 .figure-row .figure { 549 .figure-row .figure + .figure {
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
Workspace.java | 674 for (int row = 0; row < rows; row++) { 675 height += table.getRowHeight(row); 1575 int row = devices.getSelectedRow(); local 1602 int row = windows.getSelectedRow(); local [all...] |
/external/chromium/chrome/browser/resources/file_manager/css/ |
file_manager.css | 220 .table-row-cell > * { 227 .detail-table li.table-row .table-row-cell:first-child div { 241 li.table-row:hover .file-checkbox, 247 li.table-row[selected] .file-checkbox,
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
Key.java | 231 * @param row the row that this key belongs to. row's x-coordinate will be the right edge of 236 public Key(final Resources res, final KeyboardParams params, final KeyboardRow row, 239 final int rowHeight = row.getRowHeight(); 246 final float keyXPos = row.getKeyX(keyAttr); 247 final float keyWidth = row.getKeyWidth(keyAttr, keyXPos); 248 final int keyYPos = row.getKeyY(); 256 // Update row to have current x coordinate. 257 row.setXPos(keyXPos + keyWidth) [all...] |
/external/opencv/cv/src/ |
cvhough.cpp | 207 #define _POINT(row, column)\ 208 (image_src[(row)*step+(column)]) 214 int row, col; local 274 for( row = 0; row < h; row++ ) 276 fn += _POINT( row, col ) != 0; 283 for( row = 0; row < h; row++ [all...] |