OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Checker
(Results
51 - 75
of
180
) sorted by null
1
2
3
4
5
6
7
8
/external/owasp/sanitizer/tools/findbugs/lib/
jsr305.jar
/external/vogar/lib/
jsr305.jar
/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
/external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp
10
// This
checker
evaluates clang builtin functions.
16
#include "clang/StaticAnalyzer/Core/
Checker
.h"
25
class BuiltinFunctionChecker : public
Checker
<eval::Call> {
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> > {
NoReturnFunctionChecker.cpp
18
#include "clang/StaticAnalyzer/Core/
Checker
.h"
30
class NoReturnFunctionChecker : public
Checker
< check::PostCall,
ObjCAtSyncChecker.cpp
1
//== ObjCAtSyncChecker.cpp - nil mutex
checker
for @synchronized -*- C++ -*--=//
18
#include "clang/StaticAnalyzer/Core/
Checker
.h"
28
: public
Checker
< check::PreStmt<ObjCAtSynchronizedStmt> > {
UndefBranchChecker.cpp
17
#include "clang/StaticAnalyzer/Core/
Checker
.h"
26
class UndefBranchChecker : public
Checker
<check::BranchCondition> {
UndefCapturedBlockVarChecker.cpp
10
// This
checker
detects blocks that capture uninitialized values.
17
#include "clang/StaticAnalyzer/Core/
Checker
.h"
29
: public
Checker
< check::PostStmt<BlockExpr> > {
UndefResultChecker.cpp
17
#include "clang/StaticAnalyzer/Core/
Checker
.h"
29
: public
Checker
< check::PostStmt<BinaryOperator> > {
LocalizationChecker.cpp
11
// 1) A
checker
that warns about uses of non-localized NSStrings passed to
13
// 2) A syntactic
checker
that warns against the bad practice of
24
#include "clang/StaticAnalyzer/Core/
Checker
.h"
61
: public
Checker
<check::PostCall, check::PreObjCMessage,
93
// When this parameter is set to true, the
checker
assumes all
[
all
...]
/external/deqp/modules/glshared/
glsFboUtil.hpp
393
class
Checker
396
Checker
(const glu::RenderContext&);
397
virtual ~
Checker
(void) {}
420
virtual
Checker
* createChecker (const glu::RenderContext&) = 0;
/external/llvm/include/llvm/IR/
PassManagerInternal.h
59
struct
Checker
;
61
template <typename T> static SmallType f(
Checker
<T, &T::run> *);
161
struct
Checker
;
163
template <typename T> static SmallType f(
Checker
<T, &T::invalidate> *);
/external/deqp/modules/gles2/functional/
es2fFboCompletenessTests.cpp
194
class ES2Checker : public
Checker
206
:
Checker
(ctx)
340
Checker
* createChecker (const glu::RenderContext& ctx) { return new ES2Checker(ctx); }
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h
239
RuntimeDyldCheckerImpl *
Checker
;
432
: MemMgr(MemMgr), Resolver(Resolver),
Checker
(nullptr),
442
void setRuntimeDyldChecker(RuntimeDyldCheckerImpl *
Checker
) {
443
this->
Checker
=
Checker
;
/prebuilts/go/darwin-x86/src/go/types/
decl.go
13
func (check *
Checker
) reportAltDecl(obj Object) {
22
func (check *
Checker
) declare(scope *Scope, id *ast.Ident, obj Object, pos token.Pos) {
42
func (check *
Checker
) objDecl(obj Object, def *Named, path []*TypeName) {
93
func (check *
Checker
) constDecl(obj *Const, typ, init ast.Expr) {
129
func (check *
Checker
) varDecl(obj *Var, lhs []*Var, typ, init ast.Expr) {
199
func (check *
Checker
) typeDecl(obj *TypeName, typ ast.Expr, def *Named, path []*TypeName) {
235
func (check *
Checker
) addMethodDecls(obj *TypeName) {
257
//
Checker
.Files may be called multiple times; additional package files
291
func (check *
Checker
) funcDecl(obj *Func, decl *declInfo) {
313
func (check *
Checker
) declStmt(decl ast.Decl)
[
all
...]
assignments.go
22
func (check *
Checker
) assignment(x *operand, T Type) bool {
68
func (check *
Checker
) initConst(lhs *Const, x *operand) {
102
func (check *
Checker
) initVar(lhs *Var, x *operand, result bool) Type {
140
func (check *
Checker
) assignVar(lhs ast.Expr, x *operand) Type {
206
func (check *
Checker
) initVars(lhs []*Var, rhs []ast.Expr, returnPos token.Pos) {
245
func (check *
Checker
) assignVars(lhs, rhs []ast.Expr) {
274
func (check *
Checker
) shortVarDecl(pos token.Pos, lhs, rhs []ast.Expr) {
return.go
17
func (check *
Checker
) isTerminating(s ast.Stmt, label string) bool {
85
func (check *
Checker
) isTerminatingList(list []ast.Stmt, label string) bool {
90
func (check *
Checker
) isTerminatingSwitch(body *ast.BlockStmt, label string) bool {
/prebuilts/go/linux-x86/src/go/types/
decl.go
13
func (check *
Checker
) reportAltDecl(obj Object) {
22
func (check *
Checker
) declare(scope *Scope, id *ast.Ident, obj Object, pos token.Pos) {
42
func (check *
Checker
) objDecl(obj Object, def *Named, path []*TypeName) {
93
func (check *
Checker
) constDecl(obj *Const, typ, init ast.Expr) {
129
func (check *
Checker
) varDecl(obj *Var, lhs []*Var, typ, init ast.Expr) {
199
func (check *
Checker
) typeDecl(obj *TypeName, typ ast.Expr, def *Named, path []*TypeName) {
235
func (check *
Checker
) addMethodDecls(obj *TypeName) {
257
//
Checker
.Files may be called multiple times; additional package files
291
func (check *
Checker
) funcDecl(obj *Func, decl *declInfo) {
313
func (check *
Checker
) declStmt(decl ast.Decl)
[
all
...]
assignments.go
22
func (check *
Checker
) assignment(x *operand, T Type) bool {
68
func (check *
Checker
) initConst(lhs *Const, x *operand) {
102
func (check *
Checker
) initVar(lhs *Var, x *operand, result bool) Type {
140
func (check *
Checker
) assignVar(lhs ast.Expr, x *operand) Type {
206
func (check *
Checker
) initVars(lhs []*Var, rhs []ast.Expr, returnPos token.Pos) {
245
func (check *
Checker
) assignVars(lhs, rhs []ast.Expr) {
274
func (check *
Checker
) shortVarDecl(pos token.Pos, lhs, rhs []ast.Expr) {
/external/v8/test/mjsunit/regress/
regress-binop.js
49
function
Checker
() {
62
var left = new
Checker
();
63
var right = new
Checker
();
Completed in 588 milliseconds
1
2
3
4
5
6
7
8