OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:common_lint
(Results
1 - 2
of
2
) sorted by null
/external/llvm/utils/lint/
generic_lint.py
6
import
common_lint
9
class GenericCodeLint(
common_lint
.BaseLint):
13
common_lint
.VerifyLineLength(filename, lines,
15
common_lint
.VerifyTrailingWhitespace(filename, lines)
19
common_lint
.RunLintOverAllFiles(GenericCodeLint(), filenames)
cpp_lint.py
9
import
common_lint
73
class CppLint(
common_lint
.BaseLint):
79
lint.extend(
common_lint
.VerifyLineLength(filename, lines,
81
lint.extend(
common_lint
.VerifyTabs(filename, lines))
82
lint.extend(
common_lint
.VerifyTrailingWhitespace(filename, lines))
87
all_lint =
common_lint
.RunLintOverAllFiles(CppLint(), filenames)
Completed in 150 milliseconds