/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/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/skia/legacy/src/core/ |
SkScan_AntiPath.cpp | 69 /// Widest row of region to be blitted, in destination coordinates. 71 /// Leftmost x coordinate in any row, in destination coordinates. 73 /// Leftmost x coordinate in any row, in supersampled coordinates. 119 /// Once fRuns contains a complete supersampled row, flush() blits 123 /// Blits a row of pixels, with location and width specified 296 // directly to the destintion canvas one row per SCALE supersampled rows. 539 uint8_t* row = fMask.fImage + iy * fMask.fRowBytes + (x >> SHIFT); local 551 SkASSERT(row >= fMask.fImage); 552 SkASSERT(row < fMask.fImage + kMAX_STORAGE + 1); 553 add_aa_span(row, coverage_to_partial_alpha(fe - fb)) [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/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 | 142 int row; local 147 for (row = 0; row < size; row++) 149 /* post_proc_down for one row */ 208 /* 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...] |
/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,
|
/external/webkit/Source/WebCore/inspector/front-end/ |
DetailedHeapshotView.js | 776 var row = event.target.enclosingNodeOrSelfWithNodeName("tr"); 777 if (!row) 779 var nodeItem = row._dataGridNode; 839 var row = target.enclosingNodeOrSelfWithNodeName("tr"); 840 if (!row) 842 var gridNode = row._dataGridNode; [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
Key.java | 219 * @param row the row that this key belongs to. row's x-coordinate will be the right edge of 224 public Key(final Resources res, final KeyboardParams params, final KeyboardRow row, 227 final int rowHeight = row.mRowHeight; 234 final float keyXPos = row.getKeyX(keyAttr); 235 final float keyWidth = row.getKeyWidth(keyAttr, keyXPos); 236 final int keyYPos = row.getKeyY(); 244 // Update row to have current x coordinate. 245 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...] |
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseGeneralTest.java | 822 long row; local [all...] |
/external/libpng/ |
pngrutil.c | 2739 png_bytep row = png_ptr->row_buf + 1; local [all...] |
png.c | 589 int row; local 590 for (row = 0; row < (int)info_ptr->height; row++) 592 png_free(png_ptr, info_ptr->row_pointers[row]); 593 info_ptr->row_pointers[row] = NULL;
|
/external/icu4c/i18n/ |
dtfmtsym.cpp | 262 int32_t row, col; local 267 for (row=0; row<fZoneStringsRowCount; ++row) 269 fZoneStrings[row] = newUnicodeStringArray(fZoneStringsColCount); 270 if (fZoneStrings[row] == NULL) { 276 fZoneStrings[row][col].fastCopyFrom(otherStrings[row][col]); 282 for (int i = row; i >= 0; i--) { 395 for (int32_t row = 0; row < fZoneStringsRowCount; ++row) [all...] |
/external/ceres-solver/internal/ceres/ |
evaluator_test.cc | 283 // At one point the compressed row evaluator had a bug that went undetected 741 for (int row = 0; row < input.num_rows; ++row) { 742 for (int j = input.rows[row]; j < input.rows[row + 1]; ++j) { 744 m(row, col) = input.values[j];
|
/external/chromium/chrome/browser/resources/keyboard/ |
main.js | 81 * Set the position, a.k.a. row, of this key. 421 * @param {number} position The position of the row (0-3). 422 * @param {Array.<BaseKey>} keys The keys in the row. 425 function Row(position, keys) { 432 Row.prototype = { 434 * Get the total aspect ratio of the row. 446 * Create the DOM elements for the row. 447 * @return {Element} The top-level DOM Element for the row. 451 this.element_.className = 'row'; 492 * Resizes all keys in the row according to the global size [all...] |
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
vp8_variance8x8_armv6.asm | 67 add r0, r0, r1 ; set src_ptr to next row 70 add r2, r2, r3 ; set dst_ptr to next row 86 subs r12, r12, #1 ; next row
|
/external/libvpx/libvpx/vp8/decoder/ |
decodemv.c | 113 mv->row = (short)(read_mvcomponent(r, mvc) << 1); 295 blockmv.as_mv.row = read_mvcomponent(bc, &mvc[0]) << 1; 296 blockmv.as_mv.row += best_mv.as_mv.row; 496 mbmi_mv->as_mv.row += near_mvs[near_index].as_mv.row; 666 mi++; /* skip left predictor each row */
|