Home
last modified time | relevance | path

Searched refs:AnalyzedDiffRow (Results 1 – 9 of 9) sorted by relevance

/development/tools/repo_diff/service/repodiff/interactors/
Dapplication.go18 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/
Dmappers.go74 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 …]
Dmappers_test.go50 []e.AnalyzedDiffRow{
67 func makeDiffRow(status, lineChanges, filesChanged int) e.AnalyzedDiffRow {
68 return e.AnalyzedDiffRow{
/development/tools/repo_diff/service/repodiff/repositories/
Dhelpers_test.go10 func fakeFixtures() []ent.AnalyzedDiffRow {
11 return []ent.AnalyzedDiffRow{
12 ent.AnalyzedDiffRow{
Dproject.go22 func (p project) InsertDiffRows(diffRows []e.AnalyzedDiffRow) error {
76 func (p project) GetMostRecentDifferentials() ([]e.AnalyzedDiffRow, error) {
87 var diffRows []e.AnalyzedDiffRow
Ddenormalizer.go156 func (s ScopedDenormalizer) DenormalizeToRecentView(diffRows []ent.AnalyzedDiffRow) error {
210 func (s ScopedDenormalizer) DenormalizeToChangesOverTime(diffRows []ent.AnalyzedDiffRow) error {
Dproject_test.go81 expected := e.AnalyzedDiffRow{
/development/tools/repo_diff/service/repodiff/entities/
Dentities.go39 type AnalyzedDiffRow struct { struct
/development/tools/repo_diff/service/repodiff/controllers/
Ddifferential.go211 func persistEntities(target ent.DiffTarget, diffRows []ent.AnalyzedDiffRow, commitRows []ent.Analyz… argument
282 func persistDiffRowsDownstream(mappedTarget ent.MappedDiffTarget, diffRows []ent.AnalyzedDiffRow) e… argument