Lines Matching refs:DiffsByFilesPresent

197     DiffsCategorizedByFilesPresent &DiffsByFilesPresent,  in printDiffsCategorizedByFilesPresent()  argument
222 PrintDiffList(DiffsByFilesPresent.OnlyInA); in printDiffsCategorizedByFilesPresent()
223 PrintDiffList(DiffsByFilesPresent.OnlyInB); in printDiffsCategorizedByFilesPresent()
224 PrintDiffList(DiffsByFilesPresent.InBoth); in printDiffsCategorizedByFilesPresent()
369 DiffsCategorizedByFilesPresent &DiffsByFilesPresent) { in computeDiff() argument
379 DiffsByFilesPresent.addDiff(FuncDiff); in computeDiff()
452 const DiffsCategorizedByFilesPresent &DiffsByFilesPresent, in outputJSONForAllDiffs() argument
459 Output["OnlyInA"] = getFunctionDiffListAsJSON(DiffsByFilesPresent.OnlyInA, A); in outputJSONForAllDiffs()
460 Output["OnlyInB"] = getFunctionDiffListAsJSON(DiffsByFilesPresent.OnlyInB, B); in outputJSONForAllDiffs()
462 getFunctionDiffListAsJSON(DiffsByFilesPresent.InBoth, BOTH); in outputJSONForAllDiffs()
474 DiffsCategorizedByFilesPresent &DiffsByFilesPresent) { in outputAllDiffs() argument
481 printDiffsCategorizedByFilesPresent(DiffsByFilesPresent, OF->os()); in outputAllDiffs()
484 outputJSONForAllDiffs(InputFileNameA, InputFileNameB, DiffsByFilesPresent, in outputAllDiffs()
495 DiffsCategorizedByFilesPresent &DiffsByFilesPresent) { in tryOutputAllDiffs() argument
497 outputAllDiffs(InputFileNameA, InputFileNameB, DiffsByFilesPresent)) { in tryOutputAllDiffs()
518 DiffsCategorizedByFilesPresent DiffsByFilesPresent; in main() local
519 computeDiff(FuncNameToSizeInfoA, FuncNameToSizeInfoB, DiffsByFilesPresent); in main()
520 if (!tryOutputAllDiffs(InputFileNameA, InputFileNameB, DiffsByFilesPresent)) in main()