Home
last modified time | relevance | path

Searched refs:cpplint (Results 1 – 25 of 41) sorted by relevance

12

/aosp_15_r20/external/google-styleguide/cpplint/
H A Dcpplint_unittest.py44 import cpplint
57 _ERROR_CATEGORIES = cpplint._ERROR_CATEGORIES
64 cpplint.ResetNolintSuppressions()
72 if cpplint._ShouldPrintError(category, confidence, linenum):
130 cpplint.RemoveMultiLineComments('foo.h', lines, error_collector)
131 clean_lines = cpplint.CleansedLines(lines)
132 include_state = cpplint._IncludeState()
133 function_state = cpplint._FunctionState()
134 nesting_state = cpplint.NestingState()
135 cpplint.ProcessLine('foo.cc', 'cc', clean_lines, 0,
[all …]
H A DREADME3 heavily relies on regular expressions, cpplint.py won't catch all violations of
5 list of things we currently don't handle very well at the top of cpplint.py,
11 ./cpplint.py --help
19 cpplint.py and its corresponding unit tests are Copyright (C) 2009 Google Inc.
/aosp_15_r20/art/build/
H A DAndroid.cpplint.mk23 ART_CPPLINT := tools/repohooks/tools/cpplint.py
42 .PHONY: cpplint-art
43 cpplint-art: cpplint-art-phony
46 .PHONY: cpplint-art-all
47 cpplint-art-all:
50 OUT_CPPLINT := $(TARGET_COMMON_OUT_ROOT)/cpplint
55 define declare-art-cpplint-target
59 …cpplint_touch): $$(art_cpplint_file) $(ART_CPPLINT) $(ART_CPPLINT_CFG) art/build/Android.cpplint.mk
67 $(foreach file, $(ART_CPPLINT_SRC), $(eval $(call declare-art-cpplint-target,$(file))))
71 LOCAL_MODULE := cpplint-art-phony
/aosp_15_r20/external/openscreen/
H A DPRESUBMIT.py133 cpplint = input_api.cpplint
136 cpplint._cpplint_state.ResetErrorCounts()
138 cpplint._SetFilters('-build/c++11,-whitespace/braces')
144 cpplint.ProcessFile(file_name, CPPLINT_VERBOSE_LEVEL,
147 if cpplint._cpplint_state.error_count:
/aosp_15_r20/external/deqp-deps/amber/tools/
Drun-lint.sh19 ./third_party/cpplint/cpplint.py --filter "$FILTERS" `find src samples -type f`
20 ./third_party/cpplint/cpplint.py --filter "$FILTERS" --root include `find ./include -type f`
Droll-all19 cpplint=1
/aosp_15_r20/external/rappor/analysis/cpp/
H A Drun.sh56 http://google-styleguide.googlecode.com/svn/trunk/cpplint/cpplint.py
57 chmod +x _tmp/cpplint.py
61 _tmp/cpplint.py find_cliques.cc fast_em.cc
/aosp_15_r20/tools/repohooks/
H A DREADME.md68 cpplint = true
71 cpplint = --filter=-x ${PREUPLOAD_FILES}
199 * `cpplint`: Run through the cpplint tool (for C++ code).
220 # Turn on cpplint checking.
221 cpplint = true
240 # Pass more filter args to cpplint.
241 cpplint = --filter=-x ${PREUPLOAD_FILES}
262 # Run cpplint on all projects except ones under external/ and vendor/.
263 # The "external" and "vendor" projects, if they exist, will still run cpplint.
264 cpplint = external/* vendor/*
[all …]
/aosp_15_r20/external/vixl/
H A DREADME.md63 2. [Google's `cpplint.py`][cpplint]
227 2. `cpplint.py`, [as provided by Google][cpplint], must be available (and
231 `--nolint`. This removes the dependency on `cpplint.py` and Git. The `--nolint`
257 [cpplint]: https://github.com/google/styleguide/tree/gh-pages/cpplint
258 "Google's cpplint.py script."
H A DCPPLINT.cfg1 # Stop cpplint for looking for CPPLINT.cfg outside of vixl.
36 # cpplint.py enables these filters in reversed order.
/aosp_15_r20/external/google-styleguide/
H A DREADME.md21 also contains [cpplint][cpplint], a tool to assist with style guide compliance,
49 [cpplint]: https://github.com/google/styleguide/tree/gh-pages/cpplint
/aosp_15_r20/external/deqp-deps/amber/
DDEPS4 'cpplint_git': 'https://github.com/cpplint',
39 'third_party/cpplint': Var('cpplint_git') + '/cpplint.git@' +
/aosp_15_r20/external/conscrypt/openjdk/
H A Dbuild.gradle190 if (isExecutableOnPath('cpplint')) {
191 def cpplint = tasks.register("cpplint", Exec) {
192 executable = 'cpplint'
208 def reportDir = file("${buildDir}/cpplint")
228 // Extension method cpplint.output() can be used to obtain the report
240 check.dependsOn cpplint
/aosp_15_r20/packages/modules/NeuralNetworks/
DPREUPLOAD.cfg11 cpplint = true
15 cpplint = --quiet ${PREUPLOAD_FILES}
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/prop_tgt/
DLANG_CPPLINT.rst9 for the ``cpplint`` style checker. The :ref:`Makefile Generators` and the
10 :generator:`Ninja` generator will run ``cpplint`` along with the compiler
/aosp_15_r20/frameworks/base/cmds/idmap2/
H A Dstatic-checks.sh73 local cpplint="${ANDROID_BUILD_TOP}/tools/repohooks/tools/cpplint.py"
74 local output="$($cpplint --quiet $cpp_files 2>&1 >/dev/null | grep -v \
/aosp_15_r20/external/rappor/client/cpp/
H A Drun.sh95 cpplint() { function
96 ../../analysis/cpp/_tmp/cpplint.py "$@"
/aosp_15_r20/art/
H A DPREUPLOAD.cfg11 cpplint = true
55 cpplint = --quiet ${PREUPLOAD_FILES}
/aosp_15_r20/external/webrtc/
H A DPRESUBMIT.py295 import cpplint
298 cpplint._cpplint_state.ResetErrorCounts()
300 lint_filters = cpplint._Filters()
302 cpplint._SetFilters(','.join(lint_filters))
321 cpplint.ProcessFile(file_name, verbosity_level)
323 if cpplint._cpplint_state.error_count > 0:
/aosp_15_r20/external/pytorch/third_party/
H A DLICENSES_BUNDLED.txt86 Name: cpplint
88 Files: third_party/kineto/libkineto/third_party/dynolog/third_party/json/third_party/cpplint,
89 third_party/nlohmann/tools/cpplint
90 …see: third_party/kineto/libkineto/third_party/dynolog/third_party/json/third_party/cpplint/LICENSE,
91 third_party/nlohmann/tools/cpplint/LICENSE
/aosp_15_r20/frameworks/compile/mclinker/
DLICENSE.TXT62 cpplint utils/cpplint
/aosp_15_r20/device/google/trout/
DPREUPLOAD.cfg5 cpplint = true
/aosp_15_r20/system/update_engine/
H A DPREUPLOAD.cfg3 cpplint = true
/aosp_15_r20/hardware/google/pixel/
DPREUPLOAD.cfg3 cpplint = true
/aosp_15_r20/tools/repohooks/tools/
H A Dcpplint.py-update28 Helper script to quickly update the bundled cpplint.py script.

12