Lines Matching refs:e

14 	e "repodiff/entities"  packageName
22 func CSVLineToDiffRow(csvColumns []string) (*e.DiffRow, error) {
35 return &e.DiffRow{
49 func CSVLineToCommitRow(csvColumns []string) (*e.CommitRow, error) {
53 return &e.CommitRow{
74 func diffRowToDenormalizedCols(d e.AnalyzedDiffRow, rowIndex int) []interface{} {
90 func commitRowToDenormalizedCols(commitRow e.AnalyzedCommitRow, firstSeen e.RepoTimestamp, rowIndex…
103 func diffRowToPersistCols(d e.AnalyzedDiffRow, uuidBytes string, timestamp e.RepoTimestamp, rowInde…
120 func commitRowToPersistCols(c e.AnalyzedCommitRow, uuidBytes string, timestamp e.RepoTimestamp, row…
133 func DiffRowsToPersistCols(diffRows []e.AnalyzedDiffRow, timestamp e.RepoTimestamp) [][]interface{}…
148 func DiffRowsToDenormalizedCols(diffRows []e.AnalyzedDiffRow) [][]interface{} {
159 func CommitRowsToDenormalizedCols(commitRows []e.AnalyzedCommitRow, commitToTimestamp map[string]e.…
171 func DiffRowsToAggregateChangesOverTime(diffRows []e.AnalyzedDiffRow) [][]interface{} {
176 utils.TimestampToDataStudioDatetime(e.RepoTimestamp(diffRows[0].DBInsertTimestamp)),
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 {
213 func CommitRowsToPersistCols(commitRows []e.AnalyzedCommitRow, timestamp e.RepoTimestamp) [][]inter…
228 func SQLRowToDiffRow(iterRow *sql.Rows) (e.AnalyzedDiffRow, error) {
229 var d e.AnalyzedDiffRow
246 d.Date = utils.TimestampToDate(e.RepoTimestamp(d.DBInsertTimestamp))
250 func SQLRowToCommitRow(iterRow *sql.Rows) (e.AnalyzedCommitRow, error) {
251 var c e.AnalyzedCommitRow
254 var timestamp e.RepoTimestamp
270 func PrependMappedDiffTarget(target e.MappedDiffTarget, rowsOfCols [][]interface{}) [][]interface{}…
285 func AppendDiffTarget(target e.DiffTarget, rowsOfCols [][]interface{}) [][]interface{} {