Lines Matching +full:- +full:dcheckstyle
10 # http://www.apache.org/licenses/LICENSE-2.0
62 CHECKSTYLE_STYLE = os.path.join(MAIN_DIRECTORY, 'android-style.xml')
67 SUBPATH_FOR_TEST_FILES = ['/tests/', '/test/', '/androidTest/', '/perftests/', '/gts-tests/',
80 classpath: The colon-delimited list of JARs in the classpath.
100 It will run Checkstyle on the changed Java files in a specified commit SHA-1
105 commit: A full 40 character SHA-1 of a commit to check.
106 classpath: The colon-delimited list of JARs in the classpath.
167 check = subprocess.Popen(['java', '--help'],
182 classpath: The colon-delimited list of JARs in the classpath.
194 '-Dcheckstyle.enableExternalDtdLoad=true',
195 '-cp', classpath,
196 'com.puppycrawl.tools.checkstyle.Main', '-c',
197 config_xml, '-f', 'xml'] + java_files,
202 # A work-around for Checkstyle printing error count to stdio.
205 elif len(stdout_lines) >= 2 and '</checkstyle>' in stdout_lines[-2]:
206 stdout = '\n'.join(stdout_lines[:-1])
317 commit: A full 40 character SHA-1 of a commit.
348 then the check will be run on a specified commit SHA-1 and if that
353 parser.add_argument('--file', '-f', nargs='+')
354 parser.add_argument('--sha', '-s')
355 parser.add_argument('--config_xml', '-c')
356 parser.add_argument('--file_whitelist', '-fw', nargs='+')
357 parser.add_argument('--add_classpath', '-p')