HomeSort by relevance Sort by last modified time
    Searched refs:Checker (Results 76 - 100 of 180) sorted by null

1 2 34 5 6 7 8

  /prebuilts/go/darwin-x86/src/go/types/
typexpr.go 21 func (check *Checker) ident(x *operand, e *ast.Ident, def *Named, path []*TypeName) {
122 func (check *Checker) typExpr(e ast.Expr, def *Named, path []*TypeName) (T Type) {
139 func (check *Checker) typ(e ast.Expr) Type {
144 func (check *Checker) funcType(sig *Signature, recvPar *ast.FieldList, ftyp *ast.FuncType) {
210 func (check *Checker) typExprInternal(e ast.Expr, def *Named, path []*TypeName) Type {
346 func (check *Checker) typOrNil(e ast.Expr) Type {
367 func (check *Checker) arrayLength(e ast.Expr) int64 {
388 func (check *Checker) collectParams(scope *Scope, list *ast.FieldList, variadicOk bool) (params []*Var, variadic bool) {
443 func (check *Checker) declareInSet(oset *objset, pos token.Pos, obj Object) bool {
452 func (check *Checker) interfaceType(iface *Interface, ityp *ast.InterfaceType, def *Named, path []*TypeName)
    [all...]
resolver.go 50 func (check *Checker) arityMatch(s, init *ast.ValueSpec) {
99 func (check *Checker) declarePkgObj(ident *ast.Ident, obj Object, d *declInfo) {
115 func (check *Checker) filename(fileNo int) string {
126 func (check *Checker) collectObjects() {
380 func (check *Checker) packageObjects(objList []Object) {
381 // add new methods to already type-checked types (from a prior Checker.Files call)
403 func (check *Checker) functionBodies() {
410 func (check *Checker) unusedImports() {
stmt.go 16 func (check *Checker) funcBody(decl *declInfo, name string, sig *Signature, body *ast.BlockStmt) {
59 func (check *Checker) usage(scope *Scope) {
80 func (check *Checker) simpleStmt(s ast.Stmt) {
86 func (check *Checker) stmtList(ctxt stmtContext, list []ast.Stmt) {
98 func (check *Checker) multipleDefaults(list []ast.Stmt) {
124 func (check *Checker) openScope(s ast.Stmt, comment string) {
130 func (check *Checker) closeScope() {
142 func (check *Checker) suspendedCall(keyword string, call *ast.CallExpr) {
158 func (check *Checker) caseValues(x operand /* copy argument (not *operand!) */, values []ast.Expr) {
180 func (check *Checker) caseTypes(x *operand, xtyp *Interface, types []ast.Expr, seen map[Type]token.Pos) (T Type)
    [all...]
call.go 14 func (check *Checker) call(x *operand, e *ast.CallExpr) exprKind {
94 func (check *Checker) use(arg ...ast.Expr) {
105 func (check *Checker) useGetter(get getter, n int) {
181 func (check *Checker) arguments(x *operand, call *ast.CallExpr, sig *Signature, arg getter, n int) {
223 func (check *Checker) argument(sig *Signature, i int, x *operand, ellipsis token.Pos) {
269 func (check *Checker) selector(x *operand, e *ast.SelectorExpr) {
410 // of checker once we rely on MethodSet lookup instead of individual
expr.go 20 Expressions are checked recursively, top down. Expression checker functions
55 on the way down in updateExprType, or at the end of the type checker run,
68 func (check *Checker) op(m opPredicates, x *operand, op token.Token) bool {
82 func (check *Checker) unary(x *operand, e *ast.UnaryExpr, op token.Token) {
326 func (check *Checker) representable(x *operand, typ *Basic) {
361 func (check *Checker) updateExprType(x ast.Expr, typ Type, final bool) {
461 func (check *Checker) updateExprVal(x ast.Expr, val constant.Value) {
469 func (check *Checker) convertUntyped(x *operand, target Type) {
569 func (check *Checker) comparison(x, y *operand, op token.Token) {
621 func (check *Checker) shift(x, y *operand, op token.Token)
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
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 {
typexpr.go 21 func (check *Checker) ident(x *operand, e *ast.Ident, def *Named, path []*TypeName) {
122 func (check *Checker) typExpr(e ast.Expr, def *Named, path []*TypeName) (T Type) {
139 func (check *Checker) typ(e ast.Expr) Type {
144 func (check *Checker) funcType(sig *Signature, recvPar *ast.FieldList, ftyp *ast.FuncType) {
210 func (check *Checker) typExprInternal(e ast.Expr, def *Named, path []*TypeName) Type {
346 func (check *Checker) typOrNil(e ast.Expr) Type {
367 func (check *Checker) arrayLength(e ast.Expr) int64 {
388 func (check *Checker) collectParams(scope *Scope, list *ast.FieldList, variadicOk bool) (params []*Var, variadic bool) {
443 func (check *Checker) declareInSet(oset *objset, pos token.Pos, obj Object) bool {
452 func (check *Checker) interfaceType(iface *Interface, ityp *ast.InterfaceType, def *Named, path []*TypeName)
    [all...]
resolver.go 50 func (check *Checker) arityMatch(s, init *ast.ValueSpec) {
99 func (check *Checker) declarePkgObj(ident *ast.Ident, obj Object, d *declInfo) {
115 func (check *Checker) filename(fileNo int) string {
126 func (check *Checker) collectObjects() {
380 func (check *Checker) packageObjects(objList []Object) {
381 // add new methods to already type-checked types (from a prior Checker.Files call)
403 func (check *Checker) functionBodies() {
410 func (check *Checker) unusedImports() {
stmt.go 16 func (check *Checker) funcBody(decl *declInfo, name string, sig *Signature, body *ast.BlockStmt) {
59 func (check *Checker) usage(scope *Scope) {
80 func (check *Checker) simpleStmt(s ast.Stmt) {
86 func (check *Checker) stmtList(ctxt stmtContext, list []ast.Stmt) {
98 func (check *Checker) multipleDefaults(list []ast.Stmt) {
124 func (check *Checker) openScope(s ast.Stmt, comment string) {
130 func (check *Checker) closeScope() {
142 func (check *Checker) suspendedCall(keyword string, call *ast.CallExpr) {
158 func (check *Checker) caseValues(x operand /* copy argument (not *operand!) */, values []ast.Expr) {
180 func (check *Checker) caseTypes(x *operand, xtyp *Interface, types []ast.Expr, seen map[Type]token.Pos) (T Type)
    [all...]
call.go 14 func (check *Checker) call(x *operand, e *ast.CallExpr) exprKind {
94 func (check *Checker) use(arg ...ast.Expr) {
105 func (check *Checker) useGetter(get getter, n int) {
181 func (check *Checker) arguments(x *operand, call *ast.CallExpr, sig *Signature, arg getter, n int) {
223 func (check *Checker) argument(sig *Signature, i int, x *operand, ellipsis token.Pos) {
269 func (check *Checker) selector(x *operand, e *ast.SelectorExpr) {
410 // of checker once we rely on MethodSet lookup instead of individual
expr.go 20 Expressions are checked recursively, top down. Expression checker functions
55 on the way down in updateExprType, or at the end of the type checker run,
68 func (check *Checker) op(m opPredicates, x *operand, op token.Token) bool {
82 func (check *Checker) unary(x *operand, e *ast.UnaryExpr, op token.Token) {
326 func (check *Checker) representable(x *operand, typ *Basic) {
361 func (check *Checker) updateExprType(x ast.Expr, typ Type, final bool) {
461 func (check *Checker) updateExprVal(x ast.Expr, val constant.Value) {
469 func (check *Checker) convertUntyped(x *operand, target Type) {
569 func (check *Checker) comparison(x, y *operand, op token.Token) {
621 func (check *Checker) shift(x, y *operand, op token.Token)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 15 #include "clang/StaticAnalyzer/Core/Checker.h"
35 class AnalyzerStatsChecker : public Checker<check::EndAnalysis> {
BoolAssignmentChecker.cpp 1 //== BoolAssignmentChecker.cpp - Boolean assignment checker -----*- C++ -*--==//
17 #include "clang/StaticAnalyzer/Core/Checker.h"
25 class BoolAssignmentChecker : public Checker< check::Bind > {
CastSizeChecker.cpp 17 #include "clang/StaticAnalyzer/Core/Checker.h"
25 class CastSizeChecker : public Checker< check::PreStmt<CastExpr> > {
CheckerDocumentation.cpp 1 //= CheckerDocumentation.cpp - Documentation checker ---------------*- C++ -*-//
10 // This checker lists all the checker callbacks and provides documentation for
11 // checker writers.
17 #include "clang/StaticAnalyzer/Core/Checker.h"
31 /// This checker documents the callback functions checkers can use to implement
37 class CheckerDocumentation : public Checker< check::PreStmt<ReturnStmt>,
154 /// up/reduce the checker state, which is important for reducing the overall
155 /// memory usage. Specifically, if a checker keeps symbol specific information
157 /// In addition, reporting a bug as soon as the checker becomes dead leads t
    [all...]
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...]
ReturnUndefChecker.cpp 18 #include "clang/StaticAnalyzer/Core/Checker.h"
27 class ReturnUndefChecker : public Checker< check::PreStmt<ReturnStmt> > {
CallAndMessageChecker.cpp 10 // This defines CallAndMessageChecker, a builtin checker that checks for various
19 #include "clang/StaticAnalyzer/Core/Checker.h"
40 : public Checker< check::PreStmt<CallExpr>,
591 CallAndMessageChecker *Checker = \
593 Checker->Filter.Check_##name = true; \
594 Checker->Filter.CheckName_##name = mgr.getCurrentCheckName(); \
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
StatisticsTool.java 41 "-c run the checker.\n" +
356 Checker[] checkers = new Checker[file_count];
361 checkers[i] = new Checker(tool.collectStatistics(file), file);
371 Checker checker = checkers[c]; local
374 checker.check(input_files[f]);
401 // for each checker
403 // find highest score, update histogram for that checker
404 // show checker histogra
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
RuntimeDyld.h 251 RuntimeDyldCheckerImpl *Checker;
  /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/deqp/modules/glshared/
glsFboUtil.cpp 470 static void checkAttachmentCompleteness (Checker& cctx, const Attachment& attachment,
521 Checker::Checker (const glu::RenderContext& ctx)
527 void Checker::addGLError (glw::GLenum error, const char* description)
533 void Checker::addPotentialGLError (glw::GLenum error, const char* description)
538 void Checker::addFBOStatus (GLenum status, const char* description)
544 void Checker::addPotentialFBOStatus (GLenum status, const char* description)
576 const UniquePtr<Checker> cctx(m_factory.createChecker(m_renderCtx));
  /prebuilts/tools/common/m2/repository/com/android/tools/jill/jill-api/0.9.0/
jill-api-0.9.0.jar 
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 1 //===--- CheckerManager.h - Static Analyzer Checker Manager -----*- C++ -*-===//
10 // Defines the Static Analyzer Checker Manager.
55 CheckerBase *Checker;
56 CheckerFn(CheckerBase *checker, Func fn) : Fn(fn), Checker(checker) { }
58 return Fn(Checker, ps...);
135 /// \returns a pointer to the checker object.
136 template <typename CHECKER>
137 CHECKER *registerChecker()
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboCompletenessTests.cpp 174 class ES3Checker : public Checker
178 : Checker (ctx)
438 Checker* createChecker (const glu::RenderContext& ctx) { return new ES3Checker(ctx); }

Completed in 1220 milliseconds

1 2 34 5 6 7 8