Home
last modified time | relevance | path

Searched refs:diffLines (Results 1 – 25 of 179) sorted by relevance

12345678

/dports/textproc/libkomparediff2/libkomparediff2-21.12.3/src/
H A Dparser.cpp28 int Parser::cleanUpCrap(QStringList& diffLines) in cleanUpCrap() argument
30 QStringList::Iterator it = diffLines.begin(); in cleanUpCrap()
36 for (; it != diffLines.end(); ++it) in cleanUpCrap()
40 it = diffLines.erase(it); in cleanUpCrap()
58 m_generator = determineGenerator(diffLines); in parse()
60 int nol = cleanUpCrap(diffLines); in parse()
67 parser = new CVSDiffParser(m_list, diffLines); in parse()
71 parser = new DiffParser(m_list, diffLines); in parse()
75 parser = new PerforceParser(m_list, diffLines); in parse()
107 QStringList::ConstIterator it = diffLines.begin(); in determineGenerator()
[all …]
H A Dparser.h26 DiffModelList* parse(QStringList& diffLines, bool* malformed = nullptr);
33 enum Kompare::Generator determineGenerator(const QStringList& diffLines);
35 int cleanUpCrap(QStringList& diffLines);
/dports/devel/py-opengrok-tools/opengrok-1.3.16/opengrok-indexer/src/test/java/org/opengrok/indexer/util/
H A DCustomAssertions.java77 List<Integer> diffLines = new ArrayList<>(); in assertLinesEqual() local
88 diffLines.clear(); in assertLinesEqual()
92 diffLines.add(i); in assertLinesEqual()
96 if (!diffLines.isEmpty()) { in assertLinesEqual()
98 diffLines.clear(); in assertLinesEqual()
165 List<Integer> diffLines) { in printDiffs() argument
167 if (diffLines.size() < 1) return; in printDiffs()
169 int ln0 = diffLines.get(0); in printDiffs()
170 int numln = diffLines.size(); in printDiffs()
179 for (int i : diffLines) { in printDiffs()
[all …]
/dports/audio/gonic/gonic-0.8.4/vendor/github.com/josephburnett/jd/lib/
H A Dcommon_test.go79 func checkDiff(ctx *testContext, a, b string, diffLines ...string) {
89 for _, dl := range diffLines {
104 func checkPatch(ctx *testContext, a, e string, diffLines ...string) {
106 for _, dl := range diffLines {
127 a, diffLines, renderJson(b), e)
131 func checkPatchError(ctx *testContext, a string, diffLines ...string) {
133 for _, dl := range diffLines {
H A Dinput_test.go99 func checkReadDiff(t *testing.T, d Diff, diffLines ...string) {
101 for _, dl := range diffLines {
114 func checkReadDiffError(t *testing.T, diffLines ...string) {
116 for _, dl := range diffLines {
H A Dinput.go52 diffLines := strings.Split(s, "\n")
61 for i, dl := range diffLines {
130 return errorAt(len(diffLines), "Unexpected end of diff. Expecting - or +.")
137 return errorAt(len(diffLines), errString)
H A Ddiff_test.go28 func checkDiffRender(t *testing.T, a, b string, diffLines ...string) {
30 for _, dl := range diffLines {
/dports/devel/gitlist/gitlist/vendor/sebastian/diff/src/
H A DParser.php86 $diffLines = array();
100 $diffLines[] = new Line($type, $match['line']);
103 $chunk->setLines($diffLines);
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/diffs/components/
H A Ddiff_line_note_form.vue74 ...mapGetters('diffs', ['getDiffFileByHash', 'diffLines']),
116 return this.diffLines(this.diffFile).reduce(combineSides, []);
128 const diffLines = this.diffFile[INLINE_DIFF_LINES_KEY];
131 for (let i = 0, diffLinesLength = diffLines.length - 1; i <= diffLinesLength; i += 1) {
132 const line = diffLines[i];
H A Ddiff_view.vue32 diffLines: {
61 return this.diffLines.length;
66 this.diffLines,
155 <template v-for="(line, index) in diffLines">
/dports/devel/hs-threadscope/threadscope-0.2.14/_cabal_deps/ghc-events-0.15.1/test/
H A DUtils.hs28 diffLines :: String -> String -> String
29 diffLines o n = diff 1 (lines o) (lines n) function
H A DTestVersions.hs20 import Utils (files, diffLines)
33 else do putStrLn $ diffLines oldlog newlog
H A DWriteMerge.hs12 import Utils (files, diffLines)
40 putStrLn $ diffLines old new
/dports/devel/hs-ghc-events/ghc-events-0.17.0/test/
H A DUtils.hs29 diffLines :: String -> String -> String
30 diffLines o n = diff 1 (lines o) (lines n) function
H A DTestVersions.hs20 import Utils (files, diffLines)
33 else do putStrLn $ diffLines oldlog newlog
H A DWriteMerge.hs12 import Utils (files, diffLines)
40 putStrLn $ diffLines old new
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/views/vcs/common/diff/
H A DDiffChunk.java23 ArrayList<Line> diffLines, in DiffChunk() argument
28 this.diffLines_ = diffLines; in DiffChunk()
/dports/devel/pear-PHP_CodeSniffer/PHP_CodeSniffer-3.6.1/src/
H A DFixer.php269 $diffLines = explode(PHP_EOL, $diff);
270 if (count($diffLines) === 1) {
272 $diffLines = explode("\n", $diff);
276 foreach ($diffLines as $line) {
/dports/devel/gh/cli-2.4.0/pkg/cmd/pr/diff/
H A Ddiff.go164 diffLines := bufio.NewReaderSize(r, lineBufferSize)
169 diffLine, isPrefix, err := diffLines.ReadLine()
/dports/net/gscloud/gscloud-0.11.0/vendor/golang.org/x/sys/unix/
H A Dmkmerge_test.go421 diffLines(t, got, expected)
441 diffLines(t, got, expected)
477 func diffLines(t *testing.T, got, expected []byte) { func
/dports/net/inlets/inlets-3.0.2/vendor/golang.org/x/sys/sys-5cba982894dd/unix/
H A Dmkmerge_test.go420 diffLines(t, got, expected)
440 diffLines(t, got, expected)
476 func diffLines(t *testing.T, got, expected []byte) { func
/dports/net-mgmt/bind_exporter/bind_exporter-0.4.0/vendor/golang.org/x/sys/unix/
H A Dmkmerge_test.go420 diffLines(t, got, expected)
440 diffLines(t, got, expected)
476 func diffLines(t *testing.T, got, expected []byte) { func
/dports/net/nsq/nsq-1.2.1/vendor/golang.org/x/sys/unix/
H A Dmkmerge_test.go420 diffLines(t, got, expected)
440 diffLines(t, got, expected)
476 func diffLines(t *testing.T, got, expected []byte) { func
/dports/misc/cheat/cheat-4.2.2/vendor/golang.org/x/sys/sys-aa57babbf139/unix/
H A Dmkmerge_test.go421 diffLines(t, got, expected)
441 diffLines(t, got, expected)
477 func diffLines(t *testing.T, got, expected []byte) { func
/dports/net/go-bapu/carlostrub-bapu-23ca6b019fbc/vendor/golang.org/x/sys/unix/
H A Dmkmerge_test.go420 diffLines(t, got, expected)
440 diffLines(t, got, expected)
476 func diffLines(t *testing.T, got, expected []byte) { func

12345678