| /frameworks/base/core/tests/coretests/src/android/view/menu/ |
| MenuLayoutLandscapeTest.java | 56 * each parameter is how many items on that row (the first 57 * parameter is the top-most row). 69 assertEquals("Row mismatch", expectedRows, layoutNumRows); 71 for (int row = 0; row < expectedRows; row++) { 72 assertEquals("Col mismatch on row " + row, expectedLayout[row].intValue(), 73 layout[row]); [all...] |
| MenuLayoutPortraitTest.java | 56 * each parameter is how many items on that row. 68 assertEquals("Row mismatch", expectedRows, layoutNumRows); 70 for (int row = 0; row < expectedRows; row++) { 71 assertEquals("Col mismatch on row " + row, expectedLayout[row].intValue(), 72 layout[row]); 132 // The long can fit in first row, and two shorts in secon [all...] |
| /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/ |
| UiCollection.java | 56 UiObject row = getChildByInstance(childPattern, x); local 57 String nodeDesc = row.getContentDescription(); 59 return row; 61 UiObject item = row.getChild(new UiSelector().descriptionContains(text)); 63 return row; 114 UiObject row = getChildByInstance(childPattern, x); local 115 String nodeText = row.getText(); 117 return row; 119 UiObject item = row.getChild(new UiSelector().text(text)); 121 return row; [all...] |
| /packages/apps/Gallery2/src/com/android/photos/shims/ |
| MediaItemsLoader.java | 112 final Object[] row = new Object[PhotoSetLoader.PROJECTION.length]; local 117 row[PhotoSetLoader.INDEX_ID] = index; 118 row[PhotoSetLoader.INDEX_DATA] = item.getContentUri().toString(); 119 row[PhotoSetLoader.INDEX_DATE_ADDED] = item.getDateInMs(); 120 row[PhotoSetLoader.INDEX_HEIGHT] = item.getHeight(); 121 row[PhotoSetLoader.INDEX_WIDTH] = item.getWidth(); 122 row[PhotoSetLoader.INDEX_WIDTH] = item.getWidth(); 130 row[PhotoSetLoader.INDEX_MEDIA_TYPE] = mappedMediaType; 131 row[PhotoSetLoader.INDEX_SUPPORTED_OPERATIONS] = 133 cursor.addRow(row); [all...] |
| /cts/tools/dasm/src/java_cup/ |
| parse_action_table.java | 7 * It has one row for each state in the parse machine, and a column for 67 for (int row = 0; row < num_states(); row++) 69 for (int col = 0; col < under_state[row].size(); col++) 72 act = under_state[row].under_term[col]; 112 for (int row = 0; row < num_states(); row++) 114 result += "From state #" + row + "\n" [all...] |
| /external/chromium/chrome/browser/sync/resources/ |
| gaia_login.js | 69 setElementDisplay("errormsg-1-password", 'table-row'); 73 setElementDisplay("errormsg-0-connection", 'table-row'); 107 setElementDisplay("password-row", "none"); 108 setElementDisplay("email-row", "none"); 112 setElementDisplay("access-code-label-row", "table-row"); 113 setElementDisplay("access-code-input-row", "table-row"); 114 setElementDisplay("access-code-help-row", "table-row"); [all...] |
| /external/chromium_org/chrome/browser/history/android/ |
| android_history_provider_service.h | 36 int)> // the number of row updated. 43 int64)> // the id of inserted row. 50 int)> // the number of row deleted. 77 // Runs the given update and the number of the row updated is returned to the 80 // |row| is the value to update. 84 const history::HistoryAndBookmarkRow& row, 91 // of row deleted on success. 110 // the row deleted from the |callback|. 117 // Moves the statement's current row from |current_pos| to |destination| in DB 131 // Inserts the given values and returns the SearchTermID of the inserted row [all...] |
| /external/chromium_org/ui/views/controls/table/ |
| table_view_unittest.cc | 59 // Adds a new row at index |row| with values |c1_value| and |c2_value|. 60 void AddRow(int row, int c1_value, int c2_value); 62 // Removes the row at index |row|. 63 void RemoveRow(int row); 65 // Changes the values of the row at |row|. 66 void ChangeRow(int row, int c1_value, int c2_value); 70 virtual string16 GetText(int row, int column_id) OVERRIDE [all...] |
| /external/smack/src/org/jivesoftware/smackx/ |
| ReportedData.java | 41 private List<Row> rows = new ArrayList<Row>(); 91 rows.add(new Row(fieldList)); 104 * Adds a new <code>Row</code>. 105 * @param row the new row to add. 107 public void addRow(Row row){ 108 rows.add(row); 125 public Iterator<Row> getRows() [all...] |
| /external/chromium/chrome/browser/ui/views/ |
| task_manager_view.cc | 67 string16 GetText(int row, int column) OVERRIDE; 68 SkBitmap GetIcon(int row) OVERRIDE; 79 // Returns true if resource corresponding to |row| is a background resource. 80 bool IsBackgroundResource(int row); 91 string16 TaskManagerTableModel::GetText(int row, int col_id) { 94 return model_->GetResourceTitle(row); 97 return model_->GetResourceNetworkUsage(row); 100 if (!model_->IsResourceFirstInGroup(row)) 102 return model_->GetResourceCPUUsage(row); 105 if (!model_->IsResourceFirstInGroup(row)) 467 const char* row = stats->GetRowName(i); local [all...] |
| /external/libvpx/libvpx/vp8/decoder/ |
| error_concealment.c | 28 int row; member in struct:ec_position 139 int row, col; local 157 for (row = 0; row < end_row; ++row) 163 (((first_blk_row + row) * 167 assign_overlap(b_ol_ul[row * 4 + col].overlaps, bmi, overlap); 178 int row, col, rel_row, rel_col; local 185 row = (4 * b_row) << 3; /* Q3 */ 189 new_row = row - bmi->mv.as_mv.row 288 int row, col; local 501 int row, col, i; local [all...] |
| /external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
| TransformationMatrix.cpp | 68 // the array refers to the column that the element lies in; the second index refers to the row. 157 // deleting the ith row and jth column from A. 190 // Row column labeling reversed since we transpose rows & columns 366 Vector3 row[3], pdum3; local 370 row[i][0] = localMatrix[i][0]; 371 row[i][1] = localMatrix[i][1]; 372 row[i][2] = localMatrix[i][2]; 375 // Compute X scale factor and normalize first row. 376 result.scaleX = v3Length(row[0]); 377 v3Scale(row[0], 1.0) [all...] |
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/data/ |
| summary.html | 289 GraphView.prototype.selectRow = function (row) { 291 row.classList.add('selected'); 336 var row = Element.create('tr', {}, [Element.create('td', {}, [label]), Element.create('td', {})]); 337 var valueCell = row.lastChild; 354 table.firstChild.append(row); 355 row.label = label; 356 row.data = item; 427 var row = contributorsView.targetRow(event.target); 428 if (row) { 430 contributorsView.selectRow(row); [all...] |
| /external/ceres-solver/internal/ceres/ |
| block_random_access_dense_matrix_test.cc | 53 int row; local 58 m.GetCell(i, j, &row, &col, &row_stride, &col_stride); 61 EXPECT_EQ(row, row_idx); 83 int row; local 88 i, j, &row, &col, &row_stride, &col_stride); 90 row, col, blocks[i], blocks[j]) =
|
| small_blas.h | 187 for (int row = 0; row < NUM_ROW_C; ++row) { 191 tmp += A[row * NUM_COL_A + k] * B[k * NUM_COL_B + col]; 194 const int index = (row + start_row_c) * col_stride_c + start_col_c + col; 247 for (int row = 0; row < NUM_ROW_C; ++row) { 251 tmp += A[k * NUM_COL_A + row] * B[k * NUM_COL_B + col]; 254 const int index = (row + start_row_c) * col_stride_c + start_col_c + col [all...] |
| /external/chromium/chrome/browser/ |
| custom_home_pages_table_model.h | 51 virtual string16 GetText(int row, int column_id) OVERRIDE; 52 virtual SkBitmap GetIcon(int row) OVERRIDE; 53 virtual string16 GetTooltip(int row) OVERRIDE; 68 const history::URLRow* row, 82 // Returns the URL for a particular row, formatted for display to the user. 83 string16 FormattedURL(int row) const;
|
| /external/chromium/chrome/browser/notifications/ |
| notification_exceptions_table_model.cc | 47 size_t row = *i; local 48 Entry* entry = &entries_[row]; 55 entries_.erase(entries_.begin() + row); // Note: |entry| is now garbage. 57 observer_->OnItemsRemoved(row, 1); 73 string16 NotificationExceptionsTableModel::GetText(int row, 75 const Entry& entry = entries_[row];
|
| /external/chromium/chrome/browser/resources/options/ |
| autofill_edit_address_overlay.html | 30 <div class="row"> 43 <div class="row"> 62 <div class="row"> 74 <div class="row"> 86 <div class="row"> 93 <div class="row">
|
| /external/chromium-trace/trace-viewer/src/tcmalloc/ |
| tcmalloc_instance_view.js | 70 var row = this.buildRow_(snapshot, rowData); 71 table.appendChild(row); 77 var row = document.createElement('tr'); 84 row.appendChild(td); 88 row.appendChild(data); 90 return row;
|
| /external/chromium_org/remoting/host/ |
| screen_capturer_fake.cc | 93 uint8* row = frame->data() + local 113 row[x * kBytesPerPixel] = r; 114 row[x * kBytesPerPixel + 1] = g; 115 row[x * kBytesPerPixel + 2] = b; 116 row[x * kBytesPerPixel + 3] = 0xff; 118 row += bytes_per_row_;
|
| /external/chromium_org/third_party/skia/include/utils/ |
| SkCamera.h | 61 void setRow(int row, SkScalar a, SkScalar b, SkScalar c, SkScalar d = 0) 63 SkASSERT((unsigned)row < 3); 64 fMat[row][0] = a; 65 fMat[row][1] = b; 66 fMat[row][2] = c; 67 fMat[row][3] = d;
|
| /external/chromium_org/third_party/skia/src/effects/ |
| SkColorFilterImageFilter.cpp | 38 bool component_needs_clamping(SkScalar row[5]) { 39 SkScalar maxValue = row[4] / 255; 40 SkScalar minValue = row[4] / 255; 42 if (row[i] > 0) 43 maxValue += row[i]; 45 minValue += row[i];
|
| /external/eigen/test/ |
| jacobi.cpp | 44 VERIFY_IS_APPROX(b.row(p), c * a.row(p) + internal::conj(s) * a.row(q)); 45 VERIFY_IS_APPROX(b.row(q), -s * a.row(p) + internal::conj(c) * a.row(q));
|
| /external/libvpx/libvpx/vp8/common/arm/armv6/ |
| vp8_sad16x16_armv6.asm | 37 ; 1st row 51 add r0, r0, r1 ; set src pointer to next row 52 add r2, r2, r3 ; set dst pointer to next row 64 ; 2nd row 76 add r0, r0, r1 ; set src pointer to next row 77 add r2, r2, r3 ; set dst pointer to next row
|
| /external/skia/include/utils/ |
| SkCamera.h | 61 void setRow(int row, SkScalar a, SkScalar b, SkScalar c, SkScalar d = 0) 63 SkASSERT((unsigned)row < 3); 64 fMat[row][0] = a; 65 fMat[row][1] = b; 66 fMat[row][2] = c; 67 fMat[row][3] = d;
|