Home | History | Annotate | Download | only in scripts

Lines Matching refs:base_content

629       A tuple (base_content, new_content, is_binary, status)
630 base_content: The contents of the base file.
702 base_content, new_content, is_binary, status = files[filename]
705 base_content = None
708 if base_content != None:
709 UploadFile(filename, file_id, base_content, is_binary, status, True)
900 base_content = None
912 base_content = ""
936 base_content = ""
948 base_content = ""
961 base_content = RunShell(["svn", "cat", url],
965 base_content = RunShell(["svn", "cat", filename],
978 base_content = self._CollapseKeywords(base_content, keywords)
982 return base_content, new_content, is_binary, status[0:5]
1028 base_content = None
1033 base_content = ""
1036 base_content, returncode = RunShellWithReturnCode(["git", "show", hash])
1039 return (base_content, new_content, is_binary, status)
1106 base_content = ""
1125 base_content = RunShell(["hg", "cat", "-r", self.base_rev, oldrelpath],
1127 is_binary = "\0" in base_content # Mercurial's heuristic
1131 if is_binary and base_content:
1133 base_content = RunShell(["hg", "cat", "-r", self.base_rev, oldrelpath],
1137 return base_content, new_content, is_binary, status