Home
last modified time | relevance | path

Searched refs:AnalyzedCommitRow (Results 1 – 13 of 13) sorted by relevance

/development/tools/repo_diff/service/repodiff/repositories/
Ddenormalizer_test.go75 fixture := e.AnalyzedCommitRow{
85 fixtures := []e.AnalyzedCommitRow{
104 fakeCommitRows := []e.AnalyzedCommitRow{
105 e.AnalyzedCommitRow{
115 e.AnalyzedCommitRow{
125 e.AnalyzedCommitRow{
165 fakeCommitRows := []e.AnalyzedCommitRow{
166 e.AnalyzedCommitRow{
176 e.AnalyzedCommitRow{
186 e.AnalyzedCommitRow{
Dhelpers_test.go29 func fakeCommitFixtures() []ent.AnalyzedCommitRow {
30 return []ent.AnalyzedCommitRow{
31 ent.AnalyzedCommitRow{
Dcommit.go22 func (n NullCommit) InsertCommitRows(commitRows []e.AnalyzedCommitRow) error {
28 func (n NullCommit) GetMostRecentCommits() ([]e.AnalyzedCommitRow, error) {
46 func (c Commit) InsertCommitRows(commitRows []e.AnalyzedCommitRow) error {
96 func (c Commit) GetMostRecentCommits() ([]e.AnalyzedCommitRow, error) {
106 var commitRows []e.AnalyzedCommitRow
107 var commitCursor e.AnalyzedCommitRow
Ddenormalizer.go241 func (s ScopedDenormalizer) DenormalizeToRecentCommits(commitRows []ent.AnalyzedCommitRow, commitTo…
/development/tools/repo_diff/service/repodiff/interactors/
Dapplication.go18 …yApplicationMutations(p AppProcessingParameters) ([]ent.AnalyzedDiffRow, []ent.AnalyzedCommitRow) {
24 …mmitRowsToAnalyzed(commitRows []ent.CommitRow, projectNameToType TypeMap) []ent.AnalyzedCommitRow {
25 analyzed := make([]ent.AnalyzedCommitRow, len(commitRows))
27 analyzed[i] = ent.AnalyzedCommitRow{
/development/tools/repo_diff/service/repodiff/mappers/
Dcsv_test.go12 commitRow := e.AnalyzedCommitRow{
51 commitRow := e.AnalyzedCommitRow{
63 []e.AnalyzedCommitRow{
Dcsv.go20 func CommitEntityToCSVRow(a e.AnalyzedCommitRow) []string { argument
33 func CommitEntitiesToCSVRows(commits []e.AnalyzedCommitRow) [][]string { argument
Dmappers.go90 func commitRowToDenormalizedCols(commitRow e.AnalyzedCommitRow, firstSeen e.RepoTimestamp, rowIndex… argument
120 func commitRowToPersistCols(c e.AnalyzedCommitRow, uuidBytes string, timestamp e.RepoTimestamp, row… argument
159 func CommitRowsToDenormalizedCols(commitRows []e.AnalyzedCommitRow, commitToTimestamp map[string]e.… argument
213 func CommitRowsToPersistCols(commitRows []e.AnalyzedCommitRow, timestamp e.RepoTimestamp) [][]inter… argument
250 func SQLRowToCommitRow(iterRow *sql.Rows) (e.AnalyzedCommitRow, error) {
251 var c e.AnalyzedCommitRow
/development/tools/repo_diff/service/repodiff/controllers/
Dcontract.go9 InsertCommitRows(commitRows []ent.AnalyzedCommitRow) error argument
11 GetMostRecentCommits() ([]ent.AnalyzedCommitRow, error)
Dregression_test.go15 analyzed := make([]ent.AnalyzedCommitRow, len(commitRows))
17 analyzed[i] = ent.AnalyzedCommitRow{
Ddenormalize.go142 func extractCommitHashes(commitRows []e.AnalyzedCommitRow) []string { argument
Ddifferential.go211 …(target ent.DiffTarget, diffRows []ent.AnalyzedDiffRow, commitRows []ent.AnalyzedCommitRow) error { argument
/development/tools/repo_diff/service/repodiff/entities/
Dentities.go52 type AnalyzedCommitRow struct { struct