Home | History | Annotate | Download | only in codereview

Lines Matching refs:base_content

3199 			A tuple (base_content, new_content, is_binary, status)
3200 base_content: The contents of the base file.
3305 base_content, new_content, is_binary, status = files[filename]
3308 base_content = None
3311 if base_content != None:
3312 StartUploadFile(filename, file_id, base_content, is_binary, status, True)
3464 base_content = ""
3479 base_content = RunShell(["hg", "cat", "-r", base_rev, oldrelpath], silent_ok=True)
3481 base_content = str(self.repo[base_rev][oldrelpath].data())
3482 is_binary = "\0" in base_content # Mercurial's heuristic
3486 if is_binary and base_content and use_hg_shell:
3488 base_content = RunShell(["hg", "cat", "-r", base_rev, oldrelpath],
3492 return base_content, new_content, is_binary, status