/prebuilts/go/darwin-x86/pkg/darwin_amd64_race/go/ |
types.a | 331 type @"".Checker struct { @"".conf *@"".Config; @"".fset *@"go/token".FileSet; @"".pkg *@"".Package; ? *@"".Info; @"".objMap map[@"".Object]*@"".declInfo; @"".files []*@"go/ast".File; @"".unusedDotImports map[*@"".Scope]map[*@"".Package]@"go/token".Pos; @"".firstErr error; @"".methods map[string][]*@"".Func; @"".untyped map[@"go/ast".Expr]@"".exprInfo; @"".funcs []@"".funcInfo; @"".delayed []func(); ? @"".context; @"".pos @"go/token".Pos; @"".indent int } 332 func (@"".check·2 *@"".Checker) Files (@"".files·3 []*@"go/ast".File "esc:0x9") (@"".err·1 error) 333 func (@"".check·1 *@"".Checker "esc:0x9") @"".addDeclDep (@"".to·2 @"".Object) { var @"".from·3 *@"".declInfo; @"".from·3 = @"".check·1.@"".context.@"".decl; if @"".from·3 == nil { return }; { var @"".found·4 bool; _, @"".found·4 = @"".check·1.@"".objMap[@"".to·2]; if !@"".found·4 { return }}; @"".from·3.@"".addDep(@"".to·2) } 334 func (@"".check·1 *@"".Checker) @"".addMethodDecls (@"".obj·2 *@"".TypeName "esc:0x9" [all...] |
/prebuilts/go/linux-x86/pkg/linux_amd64_race/go/ |
types.a | 331 type @"".Checker struct { @"".conf *@"".Config; @"".fset *@"go/token".FileSet; @"".pkg *@"".Package; ? *@"".Info; @"".objMap map[@"".Object]*@"".declInfo; @"".files []*@"go/ast".File; @"".unusedDotImports map[*@"".Scope]map[*@"".Package]@"go/token".Pos; @"".firstErr error; @"".methods map[string][]*@"".Func; @"".untyped map[@"go/ast".Expr]@"".exprInfo; @"".funcs []@"".funcInfo; @"".delayed []func(); ? @"".context; @"".pos @"go/token".Pos; @"".indent int } 332 func (@"".check·2 *@"".Checker) Files (@"".files·3 []*@"go/ast".File "esc:0x9") (@"".err·1 error) 333 func (@"".check·1 *@"".Checker "esc:0x9") @"".addDeclDep (@"".to·2 @"".Object) { var @"".from·3 *@"".declInfo; @"".from·3 = @"".check·1.@"".context.@"".decl; if @"".from·3 == nil { return }; { var @"".found·4 bool; _, @"".found·4 = @"".check·1.@"".objMap[@"".to·2]; if !@"".found·4 { return }}; @"".from·3.@"".addDep(@"".to·2) } 334 func (@"".check·1 *@"".Checker) @"".addMethodDecls (@"".obj·2 *@"".TypeName "esc:0x9" [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
DeadStoresChecker.cpp | 10 // This file defines a DeadStores, a flow-sensitive checker that looks for 22 #include "clang/StaticAnalyzer/Core/Checker.h" 127 const CheckerBase *Checker; 139 const CheckerBase *checker, AnalysisDeclContext *ac, 142 : cfg(cfg), Ctx(ctx), BR(br), Checker(checker), AC(ac), Parents(parents), 204 BR.EmitBasicReport(AC->getDecl(), Checker, BugType, "Dead store", os.str(), 214 // Reference types confuse the dead stores checker. Skip them 323 // Reference types confuse the dead stores checker. Skip them 392 // Driver function to invoke the Dead-Stores checker on a CFG [all...] |
PaddingChecker.cpp | 10 // This file defines a checker that checks for padding that could be 22 #include "clang/StaticAnalyzer/Core/Checker.h" 33 class PaddingChecker : public Checker<check::ASTDecl<TranslationUnitDecl>> { 51 const PaddingChecker *Checker; 54 explicit LocalVisitor(const PaddingChecker *Checker) : Checker(Checker) {} 56 Checker->visitRecord(RD); 60 Checker->visitVariable(VD); 73 /// checker [all...] |
ChrootChecker.cpp | 10 // This file defines chroot checker, which checks improper use of chroot. 16 #include "clang/StaticAnalyzer/Core/Checker.h" 34 // This checker checks improper use of chroot. 41 class ChrootChecker : public Checker<eval::Call, check::PreStmt<CallExpr> > {
|
/external/mesa3d/src/mesa/main/ |
APIspec.py | 216 self.checker = Checker() 226 self.checker.add_desc(desc) 229 self.checker.validate(self, param_nodes) 319 class Checker(object): 320 """A checker is the collection of all descriptions on the same level. 350 """Validate the checker against a function.""" 351 tmp = Checker() 376 flat_list.extend(desc.checker.flatten(name)) 389 if not desc.checker.always_check(name) [all...] |
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldChecker.cpp | 30 RuntimeDyldCheckerExprEval(const RuntimeDyldCheckerImpl &Checker, 32 : Checker(Checker) {} 63 Checker.ErrStream << "Expression '" << Expr << "' is false: " 84 const RuntimeDyldCheckerImpl &Checker; 146 Checker.ErrStream << "Error evaluating expression '" << Expr 227 if (!Checker.isSymbolValid(Symbol)) 263 Inst.dump_pretty(ErrMsgStream, Checker.InstPrinter); 273 Inst.dump_pretty(ErrMsgStream, Checker.InstPrinter); 295 if (!Checker.isSymbolValid(Symbol) [all...] |
/art/test/537-checker-debuggable/smali/ |
TestCase.smali | 21 # Checker runs the correct test for each compilation mode.
|
/art/test/701-easy-div-rem/ |
genMain.py | 52 for checker, name, values in tests: 53 local_vars['@CHECKER@'] = checker 65 @INT@@CHECKER@("@NAME@", @NAME@(x), x, @VALUE@@SUFFIX@);''')
|
/development/samples/SpellChecker/SampleSpellCheckerService/src/com/example/android/samplespellcheckerservice/ |
SpellCheckerSettingsActivity.java | 24 * Spell checker preference screen.
|
/device/google/dragon/ |
fstab.dragon | 3 # The filesystem that contains the filesystem checker binary (typically /system) cannot
|
/device/google/marlin/ |
fstab.aosp_common | 2 # The filesystem that contains the filesystem checker binary (typically /system) cannot
|
fstab.common | 2 # The filesystem that contains the filesystem checker binary (typically /system) cannot
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
AbstractScalarDifferentiableOptimizer.java | 45 /** Convergence checker. */ 47 protected RealConvergenceChecker checker; field in class:AbstractScalarDifferentiableOptimizer 128 this.checker = convergenceChecker; 133 return checker;
|
/external/autotest/site_utils/presubmit_hooks/ |
check_suite_scheduler.py | 31 Main function, invokes suite scheduler's sanity checker if the
|
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/ |
runner.py | 16 """Main lint function. Tokenizes file, runs passes, and feeds to checker.""" 27 from closure_linter import checker 46 flags.ADOPT_module_key_flags(checker) 191 style_checker = checker.JavaScriptStyleChecker(
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
CheckerOptInfo.h | 19 /// Represents a request to include or exclude a checker or package from a
|
/external/clang/include/clang/StaticAnalyzer/Frontend/ |
CheckerRegistration.h | 1 //===-- CheckerRegistration.h - Checker Registration Function ---*- C++ -*-===//
|
/external/clang/lib/StaticAnalyzer/Core/ |
Android.mk | 23 Checker.cpp \
|
/external/clang/test/Analysis/ |
DynamicTypePropagation.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.cocoa.ObjCGenerics -verify %s
|
NewDeleteLeaks-PR19102.cpp | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDeleteLeaks -verify %s
|
array-struct-region.cpp | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core,debug.ExprInspection -verify -x c %s 2 // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core,debug.ExprInspection -verify -x c++ -analyzer-config c++-inlining=constructors %s 3 // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core,debug.ExprInspection -DINLINE -verify -x c %s 4 // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core,debug.ExprInspection -DINLINE -verify -x c++ -analyzer-config c++-inlining=constructors %s
|
builtin-functions.cpp | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core,debug.ExprInspection %s -std=c++11 -verify
|
cxx-crashes.cpp | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,debug.ExprInspection -verify %s
|
debug-CallGraph.c | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=debug.DumpCallGraph %s -fblocks 2>&1 | FileCheck %s
|