Lines Matching refs:interface
74 func diffRowToDenormalizedCols(d e.AnalyzedDiffRow, rowIndex int) []interface{} {
75 return []interface{}{
90 func commitRowToDenormalizedCols(commitRow e.AnalyzedCommitRow, firstSeen e.RepoTimestamp, rowIndex int) []interface{} {
91 return []interface{}{
103 func diffRowToPersistCols(d e.AnalyzedDiffRow, uuidBytes string, timestamp e.RepoTimestamp, rowIndex int) []interface{} {
104 return []interface{}{
120 func commitRowToPersistCols(c e.AnalyzedCommitRow, uuidBytes string, timestamp e.RepoTimestamp, rowIndex int) []interface{} {
121 return []interface{}{
133 func DiffRowsToPersistCols(diffRows []e.AnalyzedDiffRow, timestamp e.RepoTimestamp) [][]interface{} {
136 rows := make([][]interface{}, len(diffRows))
148 func DiffRowsToDenormalizedCols(diffRows []e.AnalyzedDiffRow) [][]interface{} {
149 rows := make([][]interface{}, len(diffRows))
159 func CommitRowsToDenormalizedCols(commitRows []e.AnalyzedCommitRow, commitToTimestamp map[string]e.RepoTimestamp) [][]interface{} {
160 rows := make([][]interface{}, len(commitRows))
171 func DiffRowsToAggregateChangesOverTime(diffRows []e.AnalyzedDiffRow) [][]interface{} {
175 cols := []interface{}{
199 rows := [][]interface{}{
213 func CommitRowsToPersistCols(commitRows []e.AnalyzedCommitRow, timestamp e.RepoTimestamp) [][]interface{} {
216 rows := make([][]interface{}, len(commitRows))
270 func PrependMappedDiffTarget(target e.MappedDiffTarget, rowsOfCols [][]interface{}) [][]interface{} {
271 remapped := make([][]interface{}, len(rowsOfCols))
272 prefix := []interface{}{
285 func AppendDiffTarget(target e.DiffTarget, rowsOfCols [][]interface{}) [][]interface{} {
286 remapped := make([][]interface{}, len(rowsOfCols))
287 suffix := []interface{}{