Lines Matching full:lines
9 def VerifyLineLength(filename, lines, max_length): argument
10 """Checks to make sure the file has no lines with lines exceeding the length
15 lines: contents of the file as string array
24 for line in lines:
38 def VerifyTabs(filename, lines): argument
43 lines: contents of the file as string array
52 for line in lines:
59 def VerifyTrailingWhitespace(filename, lines): argument
60 """Checks to make sure the file has no lines with trailing whitespace.
64 lines: contents of the file as string array
73 for line in lines:
81 def RunOnFile(filename, lines): argument
102 lines = file.readlines()
103 lint.extend(linter.RunOnFile(filename, lines))