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

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PKIXCertPathValidator.java 194 for (PKIXCertPathChecker checker : checkers) {
195 if (checker instanceof PKIXRevocationChecker) {
202 if (checker instanceof RevocationChecker) {
203 ((RevocationChecker)checker).init(anchor, params);
  /ndk/sources/third_party/googletest/googletest/samples/
sample10_unittest.cc 32 // a primitive leak checker.
123 // leak checker.
127 // Adds the leak checker to the end of the test event listener list,
132 // leak checker's OnTestEnd() method are processed by the text and XML
  /packages/inputmethods/LatinIME/java/res/values-lo-rLA/
strings-appname.xml 26 <string name="android_spell_checker_settings" msgid="6123949487832861885">"Android Spell Checker Settings (AOSP)"</string>
  /prebuilts/go/darwin-x86/src/cmd/api/
run.go 33 log.Fatalf("Error running API checker: %v\n%s", err, out)
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
composite.go 5 // This file contains tests for the untagged struct literal checker.
rangeloop.go 5 // This file contains tests for the rangeloop checker.
  /prebuilts/go/darwin-x86/src/go/types/testdata/
importdecl0b.src 16 // and the type checker report it. Eventually, this test should not be
  /prebuilts/go/linux-x86/src/cmd/api/
run.go 33 log.Fatalf("Error running API checker: %v\n%s", err, out)
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
composite.go 5 // This file contains tests for the untagged struct literal checker.
rangeloop.go 5 // This file contains tests for the rangeloop checker.
  /prebuilts/go/linux-x86/src/go/types/testdata/
importdecl0b.src 16 // and the type checker report it. Eventually, this test should not be
  /prebuilts/go/darwin-x86/src/go/types/
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) {
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...]
operand.go 200 // TODO(gri) The functions operand.assignableTo, checker.convertUntyped,
201 // checker.representable, and checker.assignment are
258 // TODO(gri) This is borrowing from checker.convertUntyped and
259 // checker.representable. Need to clean up.
  /prebuilts/go/linux-x86/src/go/types/
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) {
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...]
operand.go 200 // TODO(gri) The functions operand.assignableTo, checker.convertUntyped,
201 // checker.representable, and checker.assignment are
258 // TODO(gri) This is borrowing from checker.convertUntyped and
259 // checker.representable. Need to clean up.
  /external/clang/lib/StaticAnalyzer/Checkers/
DebugCheckers.cpp 18 #include "clang/StaticAnalyzer/Core/Checker.h"
35 class DominatorsTreeDumper : public Checker<check::ASTCodeBody> {
57 class LiveVariablesDumper : public Checker<check::ASTCodeBody> {
77 class CFGViewer : public Checker<check::ASTCodeBody> {
97 class CFGDumper : public Checker<check::ASTCodeBody> {
123 class CallGraphViewer : public Checker< check::ASTDecl<TranslationUnitDecl> > {
143 class CallGraphDumper : public Checker< check::ASTDecl<TranslationUnitDecl> > {
164 class ConfigDumper : public Checker< check::EndOfTranslationUnit > {
202 class ExplodedGraphViewer : public Checker< check::EndAnalysis > {
221 class BugHashDumper : public Checker<check::PostStmt<Stmt>>
    [all...]
ObjCUnusedIVarsChecker.cpp 10 // This file defines a CheckObjCUnusedIvars, a checker that
25 #include "clang/StaticAnalyzer/Core/Checker.h"
109 const CheckerBase *Checker) {
166 BR.EmitBasicReport(D, Checker, "Unused instance variable", "Optimization",
176 class ObjCUnusedIvarsChecker : public Checker<
CheckObjCDealloc.cpp 10 // This file defines a CheckObjCDealloc, a checker that
24 #include "clang/StaticAnalyzer/Core/Checker.h"
79 static void checkObjCDealloc(const CheckerBase *Checker,
158 BR.EmitBasicReport(D, Checker, name, categories::CoreFoundationObjectiveC,
222 BR.EmitBasicReport(MD, Checker, name,
233 class ObjCDeallocChecker : public Checker<
  /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/e2fsprogs/lib/quota/
Makefile.in 52 @CHECKER_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $<
67 @CHECKER_CMT@ $(Q) $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c \
103 $(RM) -f \#* *.s *.o *.a *~ *.bak core profiled/* checker/*
  /prebuilts/tools/common/m2/repository/com/android/tools/jill/jill-api/0.9.0/
jill-api-0.9.0.jar 
  /external/chromium-trace/catapult/third_party/coverage/
pylintrc 6 # This is the main checker controling the other ones and the reports
7 # generation. It is itself both a raw checker and an astng checker in order
41 # Enable only checker(s) with the given id(s). This option conflicts with the
42 # disable-checker option
43 #enable-checker=
45 # Enable all checker(s) except those with the given id(s). This option
46 # conflicts with the enable-checker option
47 #disable-checker=
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 75 /// by the checker using this context. For example, a new transition has been
115 /// the state of the program before the checker ran. Note, checkers should
120 /// \brief Check if the checker changed the state of the execution; ex: added
203 /// will not be changed, but the new node will have the checker's tag.
205 /// tag is specified, a default tag, unique to the given checker,
240 /// the default tag for the checker will be used.
253 /// the default tag for the checker will be used.
318 // prevent accidental caching out by checker API clients. Unless there is a
319 // tag or the client checker has requested that the generated node be

Completed in 1745 milliseconds

<<11121314151617181920>>