Searched refs:AnalyzedDiffRow (Results 1 – 9 of 9) sorted by relevance
/development/tools/repo_diff/service/repodiff/interactors/ |
D | application.go | 18 func ApplyApplicationMutations(p AppProcessingParameters) ([]ent.AnalyzedDiffRow, []ent.AnalyzedCom… 38 func diffRowsToAnalyzed(diffRows []ent.DiffRow, projectNameToType TypeMap) []ent.AnalyzedDiffRow { 39 analyzed := make([]ent.AnalyzedDiffRow, len(diffRows)) 41 analyzed[i] = ent.AnalyzedDiffRow{
|
/development/tools/repo_diff/service/repodiff/mappers/ |
D | mappers.go | 74 func diffRowToDenormalizedCols(d e.AnalyzedDiffRow, rowIndex int) []interface{} { argument 103 func diffRowToPersistCols(d e.AnalyzedDiffRow, uuidBytes string, timestamp e.RepoTimestamp, rowInde… argument 133 func DiffRowsToPersistCols(diffRows []e.AnalyzedDiffRow, timestamp e.RepoTimestamp) [][]interface{}… argument 148 func DiffRowsToDenormalizedCols(diffRows []e.AnalyzedDiffRow) [][]interface{} { argument 171 func DiffRowsToAggregateChangesOverTime(diffRows []e.AnalyzedDiffRow) [][]interface{} { argument 179 func(d e.AnalyzedDiffRow) int { 188 func(d e.AnalyzedDiffRow) int { 194 func(d e.AnalyzedDiffRow) int { 205 func getSumOfAttribute(diffRows []e.AnalyzedDiffRow, getAttr func(e.AnalyzedDiffRow) int) int { argument 228 func SQLRowToDiffRow(iterRow *sql.Rows) (e.AnalyzedDiffRow, error) { [all …]
|
D | mappers_test.go | 50 []e.AnalyzedDiffRow{ 67 func makeDiffRow(status, lineChanges, filesChanged int) e.AnalyzedDiffRow { 68 return e.AnalyzedDiffRow{
|
/development/tools/repo_diff/service/repodiff/repositories/ |
D | helpers_test.go | 10 func fakeFixtures() []ent.AnalyzedDiffRow { 11 return []ent.AnalyzedDiffRow{ 12 ent.AnalyzedDiffRow{
|
D | project.go | 22 func (p project) InsertDiffRows(diffRows []e.AnalyzedDiffRow) error { 76 func (p project) GetMostRecentDifferentials() ([]e.AnalyzedDiffRow, error) { 87 var diffRows []e.AnalyzedDiffRow
|
D | denormalizer.go | 156 func (s ScopedDenormalizer) DenormalizeToRecentView(diffRows []ent.AnalyzedDiffRow) error { 210 func (s ScopedDenormalizer) DenormalizeToChangesOverTime(diffRows []ent.AnalyzedDiffRow) error {
|
D | project_test.go | 81 expected := e.AnalyzedDiffRow{
|
/development/tools/repo_diff/service/repodiff/entities/ |
D | entities.go | 39 type AnalyzedDiffRow struct { struct
|
/development/tools/repo_diff/service/repodiff/controllers/ |
D | differential.go | 211 func persistEntities(target ent.DiffTarget, diffRows []ent.AnalyzedDiffRow, commitRows []ent.Analyz… argument 282 func persistDiffRowsDownstream(mappedTarget ent.MappedDiffTarget, diffRows []ent.AnalyzedDiffRow) e… argument
|