Lines Matching refs:line
575 line = p.stdout.readline()
576 if not line:
578 print line.strip("\n")
579 output_array.append(line)
610 options: Command line options.
633 for line in unknown_files:
634 print line
666 for line in diff.splitlines(True):
667 if line.startswith('Index:') or line.startswith('Property changes on:'):
668 unused, filename = line.split(':', 1)
769 for line in info.splitlines():
770 words = line.split()
812 for line in data.splitlines():
813 if line.startswith("Index:") or line.startswith("Property changes on:"):
815 logging.info(line)
854 for line in status.split("\n"):
855 if line and line[0] == "?":
856 unknown_files.append(line)
1010 # the diff output to include an svn-style "Index:" line as well as record
1018 for line in gitdiff.splitlines():
1019 match = re.match(r"diff --git a/(.*) b/.*$", line)
1025 # The "index" line in a git diff looks like this (long hashes elided):
1028 match = re.match(r"index (\w+)\.\.", line)
1031 svndiff.append(line + "\n")
1086 for line in data.splitlines():
1087 m = re.match("diff --git a/(\S+) b/(\S+)", line)
1089 # Modify line to make it look like as it comes from svn diff.
1098 logging.info(line)
1100 svndiff.append(line)
1111 for line in status.splitlines():
1112 st, fn = line.split(" ", 1)
1169 for line in data.splitlines(True):
1171 if line.startswith('Index:'):
1172 unused, new_filename = line.split(':', 1)
1174 elif line.startswith('Property changes on:'):
1175 unused, temp_filename = line.split(':', 1)
1187 diff = [line]
1190 diff.append(line)
1269 argv: Command line arguments.