HomeSort by relevance Sort by last modified time
    Searched full:checker (Results 276 - 300 of 1436) sorted by null

<<11121314151617181920>>

  /external/clang/www/analyzer/
installation.html 48 archive has the name <b><tt>checker-XXX.tar.bz2</tt></b> then the
49 archive will expand to a directory called <b><tt>checker-XXX</tt></b>.
54 <p>Most of the files in the <b><tt>checker-XXX</tt></b> directory will
57 the <b><tt>checker-XXX</tt></b> directory:</p>
74 <b><tt>checker-XXX</tt></b> directory to your path or specify a complete
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
CompatibilityTest.java 233 @Option(name = "system-status-checker-config", description = "Configuration file for system "
340 throw new RuntimeException("failed to load system status checker config", ce);
368 // execute pre module execution checker
489 CLog.i("Running system status checker before module execution: %s", moduleName);
491 for (SystemStatusChecker checker : checkers) {
492 boolean result = checker.preExecutionCheck(device);
494 failures.add(checker.getClass().getCanonicalName());
495 CLog.w("System status checker [%s] failed with message: %s",
496 checker.getClass().getCanonicalName(), checker.getFailureMessage())
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp 1 //===--- CheckerManager.cpp - Static Analyzer Checker Manager -------------===//
10 // Defines the Static Analyzer Checker Manager.
17 #include "clang/StaticAnalyzer/Core/Checker.h"
158 Pred->getLocationContext(), checkFn.Checker);
212 const ProgramPoint &L = Msg.getProgramPoint(IsPreVisit,checkFn.Checker);
266 const ProgramPoint &L = Call.getProgramPoint(IsPreVisit,checkFn.Checker);
315 checkFn.Checker);
355 const ProgramPoint &L = PP.withTag(checkFn.Checker);
381 // Note, We do not chain the checker output (like in expandGraphWithCheckers)
397 checkFn.Checker);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DivZeroChecker.cpp 1 //== DivZeroChecker.cpp - Division by zero checker --------------*- C++ -*--==//
17 #include "clang/StaticAnalyzer/Core/Checker.h"
25 class DivZeroChecker : public Checker< check::PreStmt<BinaryOperator> > {
NSAutoreleasePoolChecker.cpp 10 // This file defines a NSAutoreleasePoolChecker, a small checker that warns
23 #include "clang/StaticAnalyzer/Core/Checker.h"
34 : public Checker<check::PreObjCMessage> {
ObjCAtSyncChecker.cpp 1 //== ObjCAtSyncChecker.cpp - nil mutex checker for @synchronized -*- C++ -*--=//
18 #include "clang/StaticAnalyzer/Core/Checker.h"
28 : public Checker< check::PreStmt<ObjCAtSynchronizedStmt> > {
UndefCapturedBlockVarChecker.cpp 10 // This checker detects blocks that capture uninitialized values.
17 #include "clang/StaticAnalyzer/Core/Checker.h"
29 : public Checker< check::PostStmt<BlockExpr> > {
  /external/clang/test/Analysis/inlining/
RetainCountExamples.m 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.cocoa.RetainCount -analyzer-config ipa=dynamic-bifurcate -verify %s
36 // Test that retain release checker warns on leaks and use-after-frees when
55 return self; // Self Init checker would produce a warning here.
  /external/mesa3d/src/gallium/docs/source/
debugging.rst 26 Controls if the :ref:`galahad` sanity checker module should be used.
45 Gallium has a built-in shader sanity checker. This option controls whether
46 the shader sanity checker prints its warnings and errors to stderr.
  /prebuilts/go/darwin-x86/src/go/types/
ordering.go 26 func (check *Checker) resolveOrder() []Object {
75 func (check *Checker) interfaceFor(obj Object) *ast.InterfaceType {
92 func (check *Checker) appendInPostOrder(order *[]Object, obj Object) {
  /prebuilts/go/darwin-x86/src/sync/
cond.go 28 checker copyChecker
53 c.checker.check()
83 c.checker.check()
  /prebuilts/go/linux-x86/src/go/types/
ordering.go 26 func (check *Checker) resolveOrder() []Object {
75 func (check *Checker) interfaceFor(obj Object) *ast.InterfaceType {
92 func (check *Checker) appendInPostOrder(order *[]Object, obj Object) {
  /prebuilts/go/linux-x86/src/sync/
cond.go 28 checker copyChecker
53 c.checker.check()
83 c.checker.check()
  /external/clang/docs/analyzer/
nullability.rst 27 Because bar corresponds to the same symbol all the time it is not easy to implement the checker that way the cast only suppress the first call but not the second. For this reason in the first implementation after a contradictory cast happens, I will treat bar as nullable unspecified, this way all of the warnings will be suppressed. Treating the symbol as nullable unspecified also has an advantage that in case the takesNonNull function body is being inlined, the will be no warning, when the symbol is dereferenced. In case I have time after the initial version I might spend additional time to try to find a more sophisticated solution, in which we would produce the second warning (*).
49 - We can assume that these pointers are not null and we lose coverage with the analyzer. (This can be implemented either in constraint solver or in the checker itself.)
78 Tracking multiple levels of annotations for pointers pointing to pointers would make the checker more complicated, because this way a vector of nullability qualifiers would be needed to be tracked for each symbol. This is not a big caveat, since once the top level pointer is dereferenced, the symvol for the inner pointer will have the nullability information. The lack of multi level annotation tracking only observable, when multiple levels of pointers are passed to a function which has a parameter with multiple levels of annotations. So for now the checker support the top level nullability qualifiers only.::
88 - The checker would track memory regions, and to each relevant region a qualifier information would be attached which is either nullable, nonnull or null unspecified (or contradicted to suppress warnings for a specific region).
89 - On a branch, where a nullable pointer is known to be non null, the checker treat it as a same way as a pointer annotated as nonnull.
  /external/guice/lib/build/
jsr305.jar 
  /external/owasp/sanitizer/distrib/lib/
jsr305.jar 
  /external/owasp/sanitizer/lib/jsr305/
jsr305.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
jsr305.jar 
  /external/vogar/lib/
jsr305.jar 
  /frameworks/base/services/core/java/com/android/server/
TextServicesManagerService.java 188 // Set the current spell checker if there is one or more spell checkers
221 // If no spell checker is enabled, just return. The user should explicitly
222 // enable the spell checker.
286 Slog.w(TAG, "Unable to load the spell checker " + compName, e);
288 Slog.w(TAG, "Unable to load the spell checker " + compName, e);
338 Slog.d(TAG, "--- current spell checker = "+ spellCheckerInfo.getPackageName()
377 Slog.w(TAG, "no available spell checker services found");
392 // Look up a spell checker based on the system locale.
424 Slog.w(TAG, "more than one spell checker service found, picking first");
430 // checker is saved
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/1.3.9/
jsr305-1.3.9.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/2.0.1/
jsr305-2.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/2.0.2/
jsr305-2.0.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/2.0.3/
jsr305-2.0.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jsr305/3.0.0/
jsr305-3.0.0.jar 

Completed in 635 milliseconds

<<11121314151617181920>>