Lines Matching full:file_content
110 def CopywriteChecker(file_content, unused_file_path):
114 return file_content
117 def EOFOneAndOnlyOneNewlineAdder(file_content, file_path):
119 if file_content and (file_content[-1] != '\n' or file_content[-2:-1] == '\n'):
120 file_content = file_content.rstrip()
121 file_content += '\n'
123 return file_content
126 def SvnEOLChecker(file_content, file_path):
133 return file_content