Home
last modified time | relevance | path

Searched full:lint (Results 1 – 25 of 962) sorted by relevance

12345678910>>...39

/external/dagger2/java/dagger/lint/
DBUILD16 # Dagger Lint Rules
25 name = "lint-artifact-lib",
27 tags = ["maven_coordinates=com.google.dagger:dagger-lint:" + POM_VERSION],
41 name = "dagger-lint-sources",
55 name = "lint-artifact",
56 artifact_coordinates = "com.google.dagger:dagger-lint:" + POM_VERSION,
57 artifact_name = "Dagger Lint Rules",
58 artifact_target = ":lint-artifact-lib",
63 "com.android.tools.lint:lint",
64 "com.android.tools.lint:lint-api",
[all …]
DDaggerKotlinIssueDetector.kt16 package dagger.lint in <lambda>()
18 import com.android.tools.lint.client.api.JavaEvaluator in <lambda>()
19 import com.android.tools.lint.client.api.UElementHandler in <lambda>()
20 import com.android.tools.lint.detector.api.Category in <lambda>()
21 import com.android.tools.lint.detector.api.Detector in <lambda>()
22 import com.android.tools.lint.detector.api.Implementation in <lambda>()
23 import com.android.tools.lint.detector.api.Issue in <lambda>()
24 import com.android.tools.lint.detector.api.JavaContext in <lambda>()
25 import com.android.tools.lint.detector.api.LintFix in <lambda>()
26 import com.android.tools.lint.detector.api.Scope in <lambda>()
[all …]
DDaggerIssueRegistry.kt16 package dagger.lint
18 import com.android.tools.lint.client.api.IssueRegistry
19 import com.android.tools.lint.detector.api.CURRENT_API
20 import com.android.tools.lint.detector.api.Issue
24 * Dagger Lint Issues Registry.
26 * A META-INF/services entry is added for this class that Lint will discover and call into for
32 // The minApi is set to the Api this registry was compiled with, if a user has an older Api, Lint
36 // higher number without depending on a newer Lint to avoid Lint warning users of custom checks
/external/llvm-project/llvm/utils/lint/
Dcpp_lint.py22 lint = []
47 lint.append((filename, line_num,
58 lint.append((filename, line_num,
63 lint.append((filename, line_num,
71 return lint
78 lint = []
79 lint.extend(VerifyIncludes(filename, lines))
80 lint.extend(common_lint.VerifyLineLength(filename, lines,
82 lint.extend(common_lint.VerifyTabs(filename, lines))
83 lint.extend(common_lint.VerifyTrailingWhitespace(filename, lines))
[all …]
Dcommon_lint.py3 # Common lint functions applicable to multiple types of files.
21 lint = []
26 lint.append((filename, line_num,
29 return lint
42 lint = []
47 lint.append((filename, line_num, 'Tab found instead of whitespace'))
49 return lint
63 lint = []
68 lint.append((filename, line_num, 'Trailing whitespace'))
70 return lint
[all …]
/external/llvm/utils/lint/
Dcpp_lint.py21 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 …]
Dcommon_lint.py3 # Common lint functions applicable to multiple types of files.
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
[all …]
/external/doclava/src/com/google/doclava/
DErrors.java56 case LINT: res.append("\033[36mlint: "); break; in toString()
68 case LINT: res.append("lint "); break; in toString()
85 if (error.getLevel() == Errors.LINT) { in error()
110 if (resolvedLevel == LINT && lintsAreErrors) { in error()
152 * Lint level means that we encountered inconsistent or broken documentation.
155 public static final int LINT = 1; field in Errors
287 public static final Error UNRESOLVED_LINK = new Error(101, LINT);
288 public static final Error BAD_INCLUDE_TAG = new Error(102, LINT);
289 public static final Error UNKNOWN_TAG = new Error(103, LINT);
290 public static final Error UNKNOWN_PARAM_TAG_NAME = new Error(104, LINT);
[all …]
/external/dagger2/util/
Ddeploy-dagger.sh118 java/dagger/lint/lint-artifact.jar \
119 java/dagger/lint/lint-pom.xml \
120 java/dagger/lint/lint-artifact-src.jar \
121 java/dagger/lint/lint-artifact-javadoc.jar
124 java/dagger/lint/lint-android-artifact.aar \
125 java/dagger/lint/lint-android-pom.xml \
/external/llvm/lib/Analysis/
DLint.cpp1 //===-- Lint.cpp - Check for common errors in LLVM IR ---------------------===//
37 #include "llvm/Analysis/Lint.h"
69 class Lint : public FunctionPass, public InstVisitor<Lint> { class
70 friend class InstVisitor<Lint>;
118 Lint() : FunctionPass(ID), MessagesStr(Messages) { in Lint() function in __anondcc8723c0111::Lint
164 char Lint::ID = 0;
165 INITIALIZE_PASS_BEGIN(Lint, "lint", "Statically lint-checks LLVM IR",
171 INITIALIZE_PASS_END(Lint, "lint", "Statically lint-checks LLVM IR", in INITIALIZE_PASS_DEPENDENCY()
178 // Lint::run - This is the main Analysis entry point for a
181 bool Lint::runOnFunction(Function &F) {
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLint.cpp1 //===-- Lint.cpp - Check for common errors in LLVM IR ---------------------===//
36 #include "llvm/Analysis/Lint.h"
91 class Lint : public FunctionPass, public InstVisitor<Lint> { class
92 friend class InstVisitor<Lint>;
140 Lint() : FunctionPass(ID), MessagesStr(Messages) { in Lint() function in __anon0c0c929e0111::Lint
186 char Lint::ID = 0;
187 INITIALIZE_PASS_BEGIN(Lint, "lint", "Statically lint-checks LLVM IR",
193 INITIALIZE_PASS_END(Lint, "lint", "Statically lint-checks LLVM IR", in INITIALIZE_PASS_DEPENDENCY()
200 // Lint::run - This is the main Analysis entry point for a
203 bool Lint::runOnFunction(Function &F) {
[all …]
/external/llvm-project/llvm/lib/Analysis/
DLint.cpp1 //===-- Lint.cpp - Check for common errors in LLVM IR ---------------------===//
36 #include "llvm/Analysis/Lint.h"
91 class Lint : public InstVisitor<Lint> { class
92 friend class InstVisitor<Lint>;
136 Lint(Module *Mod, const DataLayout *DL, AliasAnalysis *AA, in Lint() function in __anon20d3790a0111::Lint
181 void Lint::visitFunction(Function &F) { in visitFunction()
190 void Lint::visitCallBase(CallBase &I) { in visitCallBase()
374 void Lint::visitReturnInst(ReturnInst &I) { in visitReturnInst()
387 void Lint::visitMemoryReference(Instruction &I, const MemoryLocation &Loc, in visitMemoryReference()
476 void Lint::visitLoadInst(LoadInst &I) { in visitLoadInst()
[all …]
/external/llvm-project/llvm/include/llvm/Analysis/
DLint.h1 //===-- llvm/Analysis/Lint.h - LLVM IR Lint ---------------------*- C++ -*-===//
9 // This file defines lint interfaces that can be used for some sanity checking
11 // haven't done something bad. In contrast to the Verifier, the Lint checker
15 // To see what specifically is checked, look at Lint.cpp
32 /// Lint a module.
38 // Lint a function.
/external/OpenCL-CTS/test_conformance/generic_address_space/
Dbasic_tests.cpp270 NL " __local int lint;" in test_casting()
271 NL " lint = 2;" in test_casting()
286 NL " intp = &lint;" in test_casting()
309 NL " __local int lint;" in test_casting()
310 NL " lint = 2;" in test_casting()
326 NL " intp = &lint;" in test_casting()
357 NL " __local int lint;" in test_conditional_casting()
358 NL " lint = 2;" in test_conditional_casting()
363 NL " ptr = &lint;" in test_conditional_casting()
393 NL " __local int lint;" in test_chain_casting()
[all …]
/external/pigweed/pw_build/
Dpython.gni24 "lint",
25 "lint.mypy",
26 "lint.pylint",
76 deps += [ string_replace(dep, "(", ".lint.mypy(") ]
111 public_deps += [ string_replace(dep, "(", ".lint.pylint(") ]
120 # - $name.lint - Runs static analyis tools on the Python code. This is a group
122 # - $name.lint.mypy - Runs mypy (if enabled).
123 # - $name.lint.pylint - Runs pylint (if enabled).
239 # TODO(hepler): Remove support for the lint option.
240 if (defined(invoker.lint)) {
[all …]
/external/dagger2/
DWORKSPACE122 "com.android.tools.lint:lint:%s" % ANDROID_LINT_VERSION,
123 "com.android.tools.lint:lint-api:%s" % ANDROID_LINT_VERSION,
124 "com.android.tools.lint:lint-checks:%s" % ANDROID_LINT_VERSION,
125 "com.android.tools.lint:lint-tests:%s" % ANDROID_LINT_VERSION,
136 "https://jcenter.bintray.com/", # Lint has one trove4j dependency in jCenter
/external/python/ipaddress/
DMakefile1 default: test lint
6 lint: target
9 lint-if-2.7:
10 @if python --version 2>&1 | grep -q ' 2\.7\.'; then $(MAKE) lint ; fi
44 .PHONY: default test clean pypi lint docker-test-all docker-test-2.6 docker-test-2.7 docker-test-3.…
/external/webrtc/tools_webrtc/android/
Dsuppressions.xml2 <lint>
3 <!-- These lint settings is for the Android linter that gets run by
5 should lint cleanly for the issues below. -->
26 <!-- We no longer supply class files to lint. -->
35 <!-- Ignore all lint errors in Chromium code. -->
48 <!-- This is rewritten by desugar after lint runs. -->
61 </lint>
/external/sonivox/arm-wt-22k/lib_src/
Deas_wtengine.c80 /*lint -esym(715, pWTVoice) reserved for future use */
121 /*lint -e{704} <avoid divide>*/ in WT_VoiceGain()
130 /*lint -e{704} <avoid divide>*/ in WT_VoiceGain()
138 /*lint -e{704} <avoid divide>*/ in WT_VoiceGain()
148 /*lint -e{704} <avoid divide>*/ in WT_VoiceGain()
158 /*lint -e{704} <avoid divide>*/ in WT_VoiceGain()
204 /*lint -e{713} truncation is OK */ in WT_Interpolate()
210 /*lint -e{701} <avoid multiply for performance>*/ in WT_Interpolate()
212 /*lint -e{701} <avoid multiply for performance>*/ in WT_Interpolate()
224 /*lint -e{704} <avoid divide>*/ in WT_Interpolate()
[all …]
Deas_dlssynth.c80 /*lint -esym(715, pVoice) standard API, pVoice may be used by other synthesizers */
90 /*lint -e{732} eg1Value is never negative */ in DLS_ReleaseVoice()
91 /*lint -e{703} use shift for performance */ in DLS_ReleaseVoice()
111 /*lint -esym(715, pChannel) pChannel reserved for future use */
148 /*lint -e{702} use shift for performance */ in DLS_UpdatePhaseInc()
152 /*lint -e{702} use shift for performance */ in DLS_UpdatePhaseInc()
162 /*lint -e{702} use shift for performance */ in DLS_UpdatePhaseInc()
166 /*lint -e{702} use shift for performance */ in DLS_UpdatePhaseInc()
193 /*lint -e{702} use shift for performance */ in DLS_UpdateGain()
197 /*lint -e{702} use shift for performance */ in DLS_UpdateGain()
[all …]
/external/llvm/include/llvm/Analysis/
DLint.h1 //===-- llvm/Analysis/Lint.h - LLVM IR Lint ---------------------*- C++ -*-===//
10 // This file defines lint interfaces that can be used for some sanity checking
12 // haven't done something bad. In contrast to the Verifier, the Lint checker
16 // To see what specifically is checked, look at Lint.cpp
29 /// @brief Create a lint pass.
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/
DDefaultRenderersFactory.java281 // Full class names used for constructor args so the LINT rule triggers if any of them move. in buildVideoRenderers()
282 // LINT.IfChange in buildVideoRenderers()
290 // LINT.ThenChange(../../../../../../../proguard-rules.txt) in buildVideoRenderers()
308 // Full class names used for constructor args so the LINT rule triggers if any of them move. in buildVideoRenderers()
309 // LINT.IfChange in buildVideoRenderers()
317 // LINT.ThenChange(../../../../../../../proguard-rules.txt) in buildVideoRenderers()
335 // Full class names used for constructor args so the LINT rule triggers if any of them move. in buildVideoRenderers()
336 // LINT.IfChange in buildVideoRenderers()
345 // LINT.ThenChange(../../../../../../../proguard-rules.txt) in buildVideoRenderers()
407 // Full class names used for constructor args so the LINT rule triggers if any of them move. in buildAudioRenderers()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DLint.h1 //===-- llvm/Analysis/Lint.h - LLVM IR Lint ---------------------*- C++ -*-===//
9 // This file defines lint interfaces that can be used for some sanity checking
11 // haven't done something bad. In contrast to the Verifier, the Lint checker
15 // To see what specifically is checked, look at Lint.cpp
28 /// Create a lint pass.
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/offline/
DDefaultDownloaderFactory.java39 // LINT.IfChange
43 // LINT.ThenChange(../../../../../../../../proguard-rules.txt)
50 // LINT.IfChange
54 // LINT.ThenChange(../../../../../../../../proguard-rules.txt)
61 // LINT.IfChange
66 // LINT.ThenChange(../../../../../../../../proguard-rules.txt)
131 // LINT.IfChange
142 // LINT.ThenChange(../../../../../../../../proguard-rules.txt)
/external/python/google-api-python-client/docs/dyn/
Diam_v1.iamPolicies.html90 Each lint operation consists of multiple lint validation units.
108 Regardless of any lint issues or their severities, successful calls to
115 { # The request to lint a Cloud IAM policy object. LintPolicy is currently
314 … "fullResourceName": "A String", # The full resource name of the policy this lint request is about.
321 # IAM database. The candidate policy for lint has to be provided in the same
394 # lint unit may depend on, in form of `{key: value}` pairs. Currently, this
395 # field is non-operational and it will not be used during the lint operation.
408 { # The response of a lint operation. An empty response indicates
409 # the operation was able to fully execute and no lint issue was found.
410 "lintResults": [ # List of lint results sorted by a composite <severity, binding_ordinal> key,
[all …]

12345678910>>...39