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

<<21222324252627282930>>

  /external/nanohttpd/src/main/checkstyle/
nanohttpd-style.xml 11 <module name="Checker">
15 <!-- If you set the basedir property below, then all reported file names will be relative to the specified directory. See http://checkstyle.sourceforge.net/5.x/config.html#Checker
  /frameworks/base/core/java/android/view/textservice/
SuggestionsInfo.java 133 * @return the attributes of suggestions. This includes whether the spell checker has the word
134 * in its dictionary or not and whether the spell checker has confident suggestions for the
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
RequestFocusTest.java 132 // Register the invocation order checker.
175 // Register the invocation order checker.
  /frameworks/native/opengl/tools/glgen/src/
GenerateGL.java 134 ParameterChecker checker = new ParameterChecker(checksReader); local
138 checker,
  /libcore/luni/src/test/etc/loading-test-jar/
TestMethods.java 44 * Simple sameness assertion checker.
54 * Simple sameness assertion checker.
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertPathValidatorTest.java 88 for (PKIXCertPathChecker checker : params.getCertPathCheckers()) {
89 assertFalse(checker instanceof PKIXRevocationChecker);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
PKIXMasterCertPathValidator.java 111 debug.println("-Using checker" + (j + 1) + " ... [" +
122 debug.println("-checker" + (j + 1) +
  /prebuilts/go/darwin-x86/src/go/types/
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() {
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/
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() {
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/
ObjCSelfInitChecker.cpp 1 //== ObjCSelfInitChecker.cpp - Checker for 'self' initialization -*- C++ -*--=//
34 // receives a reference to 'self', the checker keeps track and passes the flags
42 #include "clang/StaticAnalyzer/Core/Checker.h"
58 class ObjCSelfInitChecker : public Checker< check::PostObjCMessage,
329 // Stop tracking the checker-specific state in the state.
DynamicTypePropagation.cpp 15 // This checker defines the rules for dynamic type gathering and propagation.
17 // Generics Checker for Objective-C:
18 // This checker tries to find type errors that the compiler is not able to catch
28 #include "clang/StaticAnalyzer/Core/Checker.h"
51 public Checker< check::PreCall,
109 /// This value is set to true, when the Generics checker is turned on.
516 // This checker detects the subtyping relationships using the assignment
518 // first. The checker treats every type as kindof type anyways: when the
933 DynamicTypePropagation *checker = local
    [all...]
IvarInvalidationChecker.cpp 10 // This checker implements annotation driven invalidation checking. If a class
25 // the invalidation method. The checker checks that each invalidation
36 #include "clang/StaticAnalyzer/Core/Checker.h"
731 public Checker<check::ASTDecl<ObjCImplementationDecl> > {
745 IvarInvalidationChecker *checker = \
747 checker->Filter.check_##name = true; \
748 checker->Filter.checkName_##name = mgr.getCurrentCheckName(); \
DereferenceChecker.cpp 1 //== NullDerefChecker.cpp - Null dereference checker ------------*- C++ -*--==//
19 #include "clang/StaticAnalyzer/Core/Checker.h"
31 : public Checker< check::Location,
MallocOverflowSecurityChecker.cpp 10 // This checker detects a common memory allocation security flaw.
24 #include "clang/StaticAnalyzer/Core/Checker.h"
44 class MallocOverflowSecurityChecker : public Checker<check::ASTCodeBody> {
ObjCMissingSuperCallChecker.cpp 10 // This file defines a ObjCMissingSuperCallChecker, a checker that
23 #include "clang/StaticAnalyzer/Core/Checker.h"
65 class ObjCSuperCallChecker : public Checker<
  /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;
  /external/protobuf/python/google/protobuf/internal/
type_checkers.py 64 """Returns a type checker for a message field of the specified types.
88 """Type checker used to catch type errors as early as possible
111 """Checker used for integer fields. Performs type-check and range check."""
129 """Checker used for enum fields. Performs type-check and range check."""
146 """Checker used for string fields.
  /frameworks/base/docs/html/about/versions/
android-4.0.3.jd 135 <li>For apps that accessing spell-checker services, a new {@link
137 any pending and running spell-checker tasks in a session.</li>
139 <li>For spell-checker services, a new suggestions flag,
142 lower-confidence ones. For example, a spell-checker could set the flag if an
147 <p>Apps connected to the spell-checker can use the {@link
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
LevenbergMarquardtOptimizer.java 41 * inherited convergence checker and the Q.R. decomposition which has been
153 * <li>{@link #setConvergenceChecker(VectorialConvergenceChecker) vectorial convergence checker}: null</li>
163 * #setConvergenceChecker vectorial convergence checker} is set to a non-null value, it
198 * convergence checker} is set to null.</p>
208 * convergence checker} is set to null.</p>
219 * vectorial convergence checker} being null or non-null.</p>
435 if (checker != null) {
436 // we use the vectorial convergence checker
437 if (checker.converged(getIterations(), previous, current)) {
455 if (checker==null)
    [all...]
  /frameworks/base/core/java/android/widget/
SpellChecker.java 130 false /* means any available languages from current spell checker */);
160 * @return true if a spell checker session has successfully been created. Returns false if not,
230 // Spell checker has been turned of or off since last spellCheck
340 // checker that will probably be in dictionary.
347 // Allow the spell checker to remove existing misspelled span by
484 // to share the logic of word level spell checker and sentence level spell checker
    [all...]
  /frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
ShortcutManagerTestUtils.java 644 public static <T> T checkArgument(Predicate<T> checker, String description,
653 if (!checker.test(value)) {
    [all...]
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 
  /art/test/
Android.run-test.mk 240 # 569-checker-pattern-replacement tests behaviour present only on host.
243 569-checker-pattern-replacement
295 529-checker-unresolved \
296 555-checker-regression-x86const \
297 608-checker-unresolved-lse
426 # 802 and 570-checker-osr:
433 570-checker-osr \
472 510-checker-try-catch \
528 # more parallel moves on x86, thus some Checker assertions may fail.
534 484-checker-register-hints
    [all...]

Completed in 670 milliseconds

<<21222324252627282930>>