/external/clang/test/Analysis/ |
division-by-zero.c | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=unix.Malloc %s
|
ObjCRetSigs.m | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core -analyzer-checker=osx.cocoa.IncompatibleMethodTypes -verify -Wno-objc-root-class %s
|
check-deserialization.cpp | 2 // RUN: %clang_cc1 -error-on-deserialized-decl S1_method -include-pch %t -analyze -analyzer-checker=core %s 3 // RUN: %clang_cc1 -include-pch %t -analyze -analyzer-checker=core -verify %s
|
PR7218.c | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store region -verify %s
|
checker-plugins.c | 1 // RUN: %clang_cc1 -load %llvmshlibdir/SampleAnalyzerPlugin%pluginext -analyze -analyzer-checker='example.MainCallChecker' -verify %s
|
complex-init-list.cpp | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-output=text -verify %s
|
concrete-address.c | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core -analyzer-store=region -verify %s
|
div-zero.cpp | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core.DivideZero -verify %s
|
inline3.c | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core -verify %s
|
/external/compiler-rt/test/cfi/cross-dso/icall/ |
lit.local.cfg | 1 # The cfi-icall checker is only supported on x86 and x86_64 for now.
|
/external/compiler-rt/test/cfi/icall/ |
lit.local.cfg | 1 # The cfi-icall checker is only supported on x86 and x86_64 for now.
|
/external/compiler-rt/test/ubsan/TestCases/TypeCheck/Function/ |
lit.local.cfg | 1 # The function type checker is only supported on x86 and x86_64 for now.
|
/external/e2fsprogs/lib/ |
Makefile.checker | 4 $(E) " MKDIR checker" 5 $(Q) mkdir -p checker 8 $(RM) -rf checker 13 $(Q) (cd checker; $(ARGEN) $@ $(OBJS))
|
/external/libcxx/utils/sym_check/sym_check/ |
__init__.py | 1 """libcxx abi symbol checker"""
|
/frameworks/base/docs/html/guide/topics/text/ |
spell-checker-framework.jd | 1 page.title=Spelling Checker Framework 12 <a href="#SpellCheckImplementation">Implementing a Spell Checker Service</a> 15 <a href="#SpellCheckClient">Implementing a Spell Checker Client</a> 22 Spell Checker Service</a> sample app 26 Spell Checker Client</a> sample app 33 The Android platform offers a spelling checker framework that lets you implement 39 generates a spelling checker <strong>session</strong> object. Based on text you provide, 40 the session object returns spelling suggestions generated by the spelling checker. 42 <h2 id="SpellCheckLifeCycle">Spell Checker Lifecycle</h2> 44 The following diagram shows the lifecycle of the spelling checker service [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
Checkers.td | 19 // (For example, a Cocoa-specific checker that is alpha should be in 34 // The checker hierarchy under OptIn should mirror that in Alpha: checkers 84 def DereferenceChecker : Checker<"NullDereference">, 88 def CallAndMessageChecker : Checker<"CallAndMessage">, 92 def NonNullParamChecker : Checker<"NonNullParamChecker">, 96 def VLASizeChecker : Checker<"VLASize">, 100 def DivZeroChecker : Checker<"DivideZero">, 104 def UndefResultChecker : Checker<"UndefinedBinaryOperatorResult">, 108 def StackAddrEscapeChecker : Checker<"StackAddressEscape">, 112 def DynamicTypePropagation : Checker<"DynamicTypePropagation"> [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
Checker.cpp | 1 //== Checker.cpp - Registration mechanism for checkers -----------*- C++ -*--=// 10 // This file defines Checker, used to create and register checkers. 15 #include "clang/StaticAnalyzer/Core/Checker.h" 30 CheckerProgramPointTag::CheckerProgramPointTag(const CheckerBase *Checker, 32 : SimpleProgramPointTag(Checker->getCheckName().getName(), Msg) {} 35 const CheckerBase &Checker) { 36 Out << Checker.getCheckName().getName();
|
/prebuilts/go/darwin-x86/src/go/types/ |
errors.go | 26 func (check *Checker) qualifier(pkg *Package) string { 33 func (check *Checker) sprintf(format string, args ...interface{}) string { 56 func (check *Checker) trace(pos token.Pos, format string, args ...interface{}) { 65 func (check *Checker) dump(format string, args ...interface{}) { 69 func (check *Checker) err(pos token.Pos, msg string, soft bool) { 81 func (check *Checker) error(pos token.Pos, msg string) { 85 func (check *Checker) errorf(pos token.Pos, format string, args ...interface{}) { 89 func (check *Checker) softErrorf(pos token.Pos, format string, args ...interface{}) { 93 func (check *Checker) invalidAST(pos token.Pos, format string, args ...interface{}) { 97 func (check *Checker) invalidArg(pos token.Pos, format string, args ...interface{}) [all...] |
check.go | 21 // If Strict is set, the type-checker enforces additional 60 // A Checker maintains the state of the type checker. 62 type Checker struct { 64 // (initialized by NewChecker, valid for the life-time of checker) 94 func (check *Checker) addUnusedDotImport(scope *Scope, pkg *Package, pos token.Pos) { 109 func (check *Checker) addDeclDep(to Object) { 120 func (check *Checker) assocMethod(tname string, meth *Func) { 129 func (check *Checker) rememberUntyped(e ast.Expr, lhs bool, mode operandMode, typ *Basic, val constant.Value) { 138 func (check *Checker) later(name string, decl *declInfo, sig *Signature, body *ast.BlockStmt) [all...] |
/prebuilts/go/linux-x86/src/go/types/ |
errors.go | 26 func (check *Checker) qualifier(pkg *Package) string { 33 func (check *Checker) sprintf(format string, args ...interface{}) string { 56 func (check *Checker) trace(pos token.Pos, format string, args ...interface{}) { 65 func (check *Checker) dump(format string, args ...interface{}) { 69 func (check *Checker) err(pos token.Pos, msg string, soft bool) { 81 func (check *Checker) error(pos token.Pos, msg string) { 85 func (check *Checker) errorf(pos token.Pos, format string, args ...interface{}) { 89 func (check *Checker) softErrorf(pos token.Pos, format string, args ...interface{}) { 93 func (check *Checker) invalidAST(pos token.Pos, format string, args ...interface{}) { 97 func (check *Checker) invalidArg(pos token.Pos, format string, args ...interface{}) [all...] |
check.go | 21 // If Strict is set, the type-checker enforces additional 60 // A Checker maintains the state of the type checker. 62 type Checker struct { 64 // (initialized by NewChecker, valid for the life-time of checker) 94 func (check *Checker) addUnusedDotImport(scope *Scope, pkg *Package, pos token.Pos) { 109 func (check *Checker) addDeclDep(to Object) { 120 func (check *Checker) assocMethod(tname string, meth *Func) { 129 func (check *Checker) rememberUntyped(e ast.Expr, lhs bool, mode operandMode, typ *Basic, val constant.Value) { 138 func (check *Checker) later(name string, decl *declInfo, sig *Signature, body *ast.BlockStmt) [all...] |
/art/test/534-checker-bce-deoptimization/ |
info.txt | 0 Checker test for testing the behavior of deoptimization generated by
|
/external/autotest/client/tests/isic/ |
control | 9 Runs the ISIC (IP Stack Integrity Checker) test. For more information see
|
/external/chromium-trace/catapult/third_party/closure_linter/ |
README | 1 This repository contains the Closure Linter - a style checker for JavaScript.
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
CheckerRegistry.h | 18 // At the very least, a checker plugin is a dynamic library that exports 29 // To add a custom checker to the analyzer, the plugin must also define the 38 // The first method argument is the full name of the checker, including its 39 // enclosing package. By convention, the registered name of a checker is the 42 // checker. 48 // To load a checker plugin, specify the full path to the dynamic library as 50 // your custom checker using the -analyzer-checker: 53 // -analyzer-checker=<example.MainCallChecker> 77 /// For example, the checker "core.builtin.NoReturnFunctionChecker" will b [all...] |