Searched refs:lint (Results 1 – 25 of 317) sorted by relevance
12345678910>>...13
/external/llvm/utils/lint/ |
D | cpp_lint.py | 21 lint = [] 46 lint.append((filename, line_num, 57 lint.append((filename, line_num, 62 lint.append((filename, line_num, 70 return lint 77 lint = [] 78 lint.extend(VerifyIncludes(filename, lines)) 79 lint.extend(common_lint.VerifyLineLength(filename, lines, 81 lint.extend(common_lint.VerifyTabs(filename, lines)) 82 lint.extend(common_lint.VerifyTrailingWhitespace(filename, lines)) [all …]
|
D | common_lint.py | 20 lint = [] 25 lint.append((filename, line_num, 28 return lint 41 lint = [] 46 lint.append((filename, line_num, 'Tab found instead of whitespace')) 48 return lint 62 lint = [] 67 lint.append((filename, line_num, 'Trailing whitespace')) 69 return lint 88 lint = [] [all …]
|
/external/chromium_org/build/android/ |
D | lint_action.gypi | 6 # run lint on java/class files. 22 '<(DEPTH)/build/android/gyp/lint.py', 23 '<(DEPTH)/build/android/lint/suppressions.xml', 28 'python', '<(DEPTH)/build/android/gyp/lint.py', 29 '--lint-path=<(android_sdk_root)/tools/lint', 30 '--config-path=<(DEPTH)/build/android/lint/suppressions.xml',
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
D | lint_test_expectations_unittest.py | 94 res = lint_test_expectations.lint(host, options) 111 res = lint_test_expectations.lint(host, options) 131 res = lint_test_expectations.lint(host, options) 164 self.orig_lint_fn = lint_test_expectations.lint 172 lint_test_expectations.lint = self.orig_lint_fn 176 lint_test_expectations.lint = lambda host, options: False 182 lint_test_expectations.lint = lambda host, options: True 191 lint_test_expectations.lint = interrupting_lint 198 lint_test_expectations.lint = exception_raising_lint
|
D | lint_test_expectations.py | 49 def lint(host, options): function 112 lint_failed = lint(host, options)
|
/external/stlport/test/unit/ |
D | alg_test.cpp | 139 list<int> lint(ints, ints + ARRAY_SIZE(ints)); in search_n_test() local 140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3); in search_n_test() 141 CPPUNIT_ASSERT( lit != lint.end() ); in search_n_test() 172 list<int> lint(ints, ints + ARRAY_SIZE(ints)); in search_n_test() local 173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>()); in search_n_test() 174 CPPUNIT_ASSERT( lit != lint.end() ); in search_n_test()
|
/external/libvpx/libvpx/tools/ |
D | lint-hunks.py | 114 lint = Subprocess(cpplint_cmd, expected_returncode=(0, 1), 116 lint_out = lint.communicate()[1] 119 lint = Subprocess(cpplint_cmd, expected_returncode=(0, 1), 122 lint_out = lint.communicate(stdin)[1]
|
/external/chromium_org/third_party/libvpx/source/libvpx/tools/ |
D | lint-hunks.py | 114 lint = Subprocess(cpplint_cmd, expected_returncode=(0, 1), 116 lint_out = lint.communicate()[1] 119 lint = Subprocess(cpplint_cmd, expected_returncode=(0, 1), 122 lint_out = lint.communicate(stdin)[1]
|
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
D | private.h | 22 #ifndef lint 230 #ifdef lint 233 #ifndef lint
|
/external/icu/icu4c/source/tools/tzcode/ |
D | private.h | 22 #ifndef lint 230 #ifdef lint 233 #ifndef lint
|
/external/chromium_org/third_party/yasm/source/patched-yasm/ |
D | util.h | 51 #if !defined(lint) && !defined(NDEBUG) 70 #ifdef lint
|
/external/tcpdump/ |
D | l2vpn.c | 16 #ifndef lint
|
D | pcap_dump_ftell.c | 22 #ifndef lint
|
D | print-raw.c | 22 #ifndef lint
|
D | nlpid.c | 16 #ifndef lint
|
/external/libpcap/ |
D | fad-null.c | 35 #ifndef lint
|
D | pcap-null.c | 21 #ifndef lint
|
/external/libpcap/Win32/Src/ |
D | ffs.c | 34 #if defined(LIBC_SCCS) && !defined(lint)
|
D | inet_aton.c | 41 #ifndef lint
|
/external/tcpdump/missing/ |
D | inet_pton.c | 41 #ifndef lint
|
D | inet_aton.c | 41 #ifndef lint
|
D | datalinks.c | 34 #ifndef lint
|
D | strdup.c | 34 #if defined(LIBC_SCCS) && !defined(lint)
|
/external/chromium_org/third_party/skia/platform_tools/android/ |
D | .gitignore | 11 app/lint.xml
|
/external/skia/platform_tools/android/ |
D | .gitignore | 11 app/lint.xml
|
12345678910>>...13