Lines Matching refs:line

560       line = p.stdout.readline()
561 if not line:
563 print line.strip("\n")
564 output_array.append(line)
595 options: Command line options.
618 for line in unknown_files:
619 print line
651 for line in diff.splitlines(True):
652 if line.startswith('Index:') or line.startswith('Property changes on:'):
653 unused, filename = line.split(':', 1)
754 for line in info.splitlines():
755 words = line.split()
797 for line in data.splitlines():
798 if line.startswith("Index:") or line.startswith("Property changes on:"):
800 logging.info(line)
839 for line in status.split("\n"):
840 if line and line[0] == "?":
841 unknown_files.append(line)
995 # the diff output to include an svn-style "Index:" line as well as record
1003 for line in gitdiff.splitlines():
1004 match = re.match(r"diff --git a/(.*) b/.*$", line)
1010 # The "index" line in a git diff looks like this (long hashes elided):
1013 match = re.match(r"index (\w+)\.\.", line)
1016 svndiff.append(line + "\n")
1071 for line in data.splitlines():
1072 m = re.match("diff --git a/(\S+) b/(\S+)", line)
1074 # Modify line to make it look like as it comes from svn diff.
1083 logging.info(line)
1085 svndiff.append(line)
1096 for line in status.splitlines():
1097 st, fn = line.split(" ", 1)
1154 for line in data.splitlines(True):
1156 if line.startswith('Index:'):
1157 unused, new_filename = line.split(':', 1)
1159 elif line.startswith('Property changes on:'):
1160 unused, temp_filename = line.split(':', 1)
1172 diff = [line]
1175 diff.append(line)
1254 argv: Command line arguments.