Searched refs:rows (Results 1 – 14 of 14) sorted by relevance
/development/tools/repo_diff/service/repodiff/mappers/ |
D | mappers.go | 136 rows := make([][]interface{}, len(diffRows)) 138 rows[i] = diffRowToPersistCols( 145 return rows 149 rows := make([][]interface{}, len(diffRows)) 151 rows[i] = diffRowToDenormalizedCols( 156 return rows 160 rows := make([][]interface{}, len(commitRows)) 162 rows[i] = commitRowToDenormalizedCols( 168 return rows 199 rows := [][]interface{}{ [all …]
|
D | csv_test.go | 62 rows := CommitEntitiesToCSVRows( 68 assert.Equal(t, 2, len(rows), "2 rows should be generated")
|
D | mappers_test.go | 49 rows := DiffRowsToAggregateChangesOverTime( 56 cols := rows[0]
|
/development/tools/otagui/src/components/ |
D | BuildTable.vue | 6 :rows="rows" 30 rows: null, 78 this.rows = TableSort(this.builds, this.sortable.order, this.sortable.sort, 0, 10) 84 this.rows = TableSort(this.builds, this.sortable.order, this.sortable.sort, 0, 10) 91 this.rows = TableSort(this.builds, order, sort, offset, limit)
|
D | OTAJobTable.vue | 6 :rows="rows" 30 rows: null, 93 this.rows = TableSort(this.jobs, this.sortable.order, this.sortable.sort, 0, 10) 99 this.rows = TableSort(this.jobs, this.sortable.order, this.sortable.sort, 0, 10) 106 this.rows = TableSort(this.jobs, order, sort, offset, limit)
|
/development/tools/repo_diff/service/repodiff/persistence/sql/ |
D | sql.go | 97 rows, err := db.Query( 104 defer rows.Close() 106 for rows.Next() { 107 rowHandler(rows) 109 if err = rows.Err(); err != nil {
|
/development/tools/external_crates/crate_health/src/templates/ |
D | table.html.template | 1 <p>{rows | len} crate directories</p> 6 {{ for row in rows }}
|
/development/tools/repo_diff/service/repodiff/repositories/ |
D | project_test.go | 104 rows, err := p.GetMostRecentDifferentials() 106 assert.Equal(t, 0, len(rows))
|
D | commit_test.go | 69 rows, err := c.GetMostRecentCommits() 71 assert.Equal(t, 0, len(rows))
|
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
D | DataProvider.java | 460 int rows = localSQLiteDatabase.update( in update() local 467 if (0 != rows) { in update() 469 return rows; in update()
|
/development/tools/winscope/src/app/components/timeline/expanded-timeline/ |
D | transition_timeline_component_test.ts | 341 const rows = 2; constant 343 (component.canvasDrawer.getScaledCanvasHeight() - 2 * padding) / rows; 414 const rows = 2; constant 416 (component.canvasDrawer.getScaledCanvasHeight() - 2 * padding) / rows;
|
/development/tools/external_crates/crate_health/src/ |
D | reports.rs | 317 rows: Vec<Vec<String>>, field 325 rows: Vec::new(), in new() 330 self.rows.push(row.iter().map(|cell| format!("{}", cell)).collect::<Vec<_>>()); in add_row()
|
/development/tools/otagui/ |
D | ota_interface.py | 201 rows = cursor.fetchall() 202 statuses = [JobInfo(*row) for row in rows]
|
/development/tools/compare_cts_reports/ |
D | generate_spread_sheet.py | 239 rows=len(compare_results) * 2,
|