Home
last modified time | relevance | path

Searched refs:DiffRow (Results 1 – 7 of 7) sorted by relevance

/development/tools/repo_diff/service/repodiff/interactors/
Dapplication.go13 DiffRows []ent.DiffRow
38 func diffRowsToAnalyzed(diffRows []ent.DiffRow, projectNameToType TypeMap) []ent.AnalyzedDiffRow { argument
42 DiffRow: row,
/development/tools/repo_diff/service/repodiff/mappers/
Dmappers_test.go17 expected := e.DiffRow{
69 DiffRow: e.DiffRow{
Dmappers.go22 func CSVLineToDiffRow(csvColumns []string) (*e.DiffRow, error) {
35 return &e.DiffRow{
/development/tools/repo_diff/service/repodiff/repositories/
Dhelpers_test.go13 DiffRow: ent.DiffRow{
Dproject_test.go82 DiffRow: e.DiffRow{
/development/tools/repo_diff/service/repodiff/controllers/
Ddifferential.go199 func readCSVFiles(projectCSVFile, commitCSVFile string) ([]ent.DiffRow, []ent.CommitRow, error) {
232 func csvFileToDiffRows(csvFile string) ([]ent.DiffRow, error) {
245 func toDiffRows(entities []interface{}) ([]ent.DiffRow, error) {
246 diffRows := make([]ent.DiffRow, len(entities))
248 diffRow, ok := entity.(*ent.DiffRow)
/development/tools/repo_diff/service/repodiff/entities/
Dentities.go26 type DiffRow struct { struct
40 DiffRow anonMember