Home
last modified time | relevance | path

Searched refs:rows (Results 1 – 14 of 14) sorted by relevance

/development/tools/repo_diff/service/repodiff/mappers/
Dmappers.go136 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 …]
Dcsv_test.go62 rows := CommitEntitiesToCSVRows(
68 assert.Equal(t, 2, len(rows), "2 rows should be generated")
Dmappers_test.go49 rows := DiffRowsToAggregateChangesOverTime(
56 cols := rows[0]
/development/tools/otagui/src/components/
DBuildTable.vue6 :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)
DOTAJobTable.vue6 :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/
Dsql.go97 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/
Dtable.html.template1 <p>{rows | len} crate directories</p>
6 {{ for row in rows }}
/development/tools/repo_diff/service/repodiff/repositories/
Dproject_test.go104 rows, err := p.GetMostRecentDifferentials()
106 assert.Equal(t, 0, len(rows))
Dcommit_test.go69 rows, err := c.GetMostRecentCommits()
71 assert.Equal(t, 0, len(rows))
/development/samples/training/threadsample/src/com/example/android/threadsample/
DDataProvider.java460 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/
Dtransition_timeline_component_test.ts341 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/
Dreports.rs317 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/
Dota_interface.py201 rows = cursor.fetchall()
202 statuses = [JobInfo(*row) for row in rows]
/development/tools/compare_cts_reports/
Dgenerate_spread_sheet.py239 rows=len(compare_results) * 2,