/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/serializable/ |
SerializableChecker.java | 198 SerializableChecker checker = new SerializableChecker(path); local 201 handler.guide(checker, true, false);
|
/external/ltp/android/tools/ |
check_success_build.py | 205 checker = LtpModuleChecker(args.android_build_top, args.ltp_dir, 207 checker.CheckModules()
|
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/solver/binderprovider/ |
LiveDataQueryResultBinderProvider.kt | 41 context.checker.check(!tableNames.isEmpty(),
|
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/ |
BreadBot.java | 109 Predicate<String> checker = mMain.inFixedLayout() local 113 assertItemsPresent(items, checker);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/sqlite/ |
SqlChecker.java | 140 static void findTokens(@Nullable String sql, int options, Consumer<String> checker) { 159 checker.accept(token); 196 checker.accept(token); 218 checker.accept(token);
|
/prebuilts/go/darwin-x86/src/cmd/api/ |
run.go | 33 log.Fatalf("Error running API checker: %v\n%s", err, out)
|
/prebuilts/go/linux-x86/src/cmd/api/ |
run.go | 33 log.Fatalf("Error running API checker: %v\n%s", err, out)
|
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/ |
CheckAndroidIcu4JSource.java | 16 package com.android.icu4j.srcgen.checker;
|
/tools/tradefederation/core/tests/src/com/android/tradefed/suite/checker/ |
ActivityStatusCheckerTest.java | 16 package com.android.tradefed.suite.checker; 48 /** Test that the status checker is a success if the home/launcher activity is on top. */ 62 /** Test that if another activity is on top, then we fail the checker and take a screenshot. */
|
KeyguardStatusCheckerTest.java | 16 package com.android.tradefed.suite.checker;
|
SystemServerStatusCheckerTest.java | 16 package com.android.tradefed.suite.checker; 41 /** Test that system checker pass if the pid of system checker does not change. */ 53 /** Test that system checker fail if the pid of system checker does change. */ 66 /** Test that if the format of the pid is unexpected, we skip the system checker. */
|
/tools/tradefederation/core/util-apps/WifiUtil/src/com/android/tradefed/utils/wifi/ |
WifiConnector.java | 78 * @param checker a <code>Callable</code> to check the expected condition 84 private long waitForCallable(final Callable<Boolean> checker, final String description, 95 if (checker.call()) { 110 private void waitForCallable(final Callable<Boolean> checker, final String description) 112 waitForCallable(checker, description, DEFAULT_TIMEOUT);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
AbstractLeastSquaresOptimizer.java | 50 /** Convergence checker. */ 51 protected VectorialConvergenceChecker checker; field in class:AbstractLeastSquaresOptimizer 166 this.checker = convergenceChecker; 171 return checker;
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/anomaly/ |
AnomalyLoaderTest.java | 33 import com.android.settings.fuelgauge.anomaly.checker.BluetoothScanAnomalyDetector; 36 import com.android.settings.fuelgauge.anomaly.checker.WakeLockAnomalyDetector; 37 import com.android.settings.fuelgauge.anomaly.checker.WakeupAlarmAnomalyDetector;
|
/tools/test/connectivity/tools/lab/ |
main.py | 116 # Create health checker 117 checker = health_checker.HealthChecker(health_config) 123 reporters += cls._reporter_constructor[rep_type](checker) 126 reporters += [LoggerReporter(checker)]
|
/art/test/ |
run-test | 42 checker="${progdir}/../tools/checker/checker.py" 757 # Tests named '<number>-checker-*' will also have their CFGs verified with 758 # Checker when compiled with Optimizing on host. 759 if [[ "$TEST_NAME" =~ ^[0-9]+-checker- ]]; then 761 # In no-prebuild or no-image mode, the compiler only quickens so disable the checker. 822 "$checker" $checker_args "$cfg_output" "$tmp_dir" 2>&1 827 err_echo "checker exit status: $checker_exit" 844 "$checker" -q $checker_args "$cfg_output" "$tmp_dir" >> "$output" 2>& [all...] |
/cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/suite/ |
ModuleRepoSuiteTest.java | 331 TestInject checker = new TestInject(); local 332 config.setTest(checker); 350 assertEquals("value1", checker.test); 351 assertEquals(option2, checker.testList); 354 assertEquals(resMap, checker.testMap);
|
/external/autotest/client/cros/audio/ |
check_quality.py | 271 """Quality checker controls the flow of checking quality of raw data.""" 273 """Inits a quality checker. 485 checker = QualityChecker(raw_data, rate) variable 489 checker.do_spectral_analysis(ignore_high_freq=args.ignore_high_freq, 494 checker.dump(args.output_file) 497 checker.check_freqs(args.freqs, args.freq_threshold) 500 checker.check_quality()
|
/frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/processor/ |
EntityProcessor.kt | 57 context.checker.hasAnnotation(element, android.arch.persistence.room.Entity::class, 64 context.checker.check(pojo.relations.isEmpty(), element, RELATION_IN_ENTITY) 83 context.checker.notBlank(tableName, element, 117 context.checker.check( 235 context.checker.check(candidates.isNotEmpty(), element, ProcessorErrors.MISSING_PRIMARY_KEY) 244 context.checker.check(field.nonNull, field.element, 300 context.checker.check(field != null, typeElement, 332 context.checker.check(!autoGenerate || embeddedField.pojo.fields.size == 1, 378 context.checker.check(input.columnNames.isNotEmpty(), element, 384 context.checker.check(field != null, element [all...] |
/prebuilts/go/darwin-x86/src/go/types/ |
operand.go | 195 // TODO(gri) The functions operand.assignableTo, checker.convertUntyped, 196 // checker.representable, and checker.assignment are 218 // TODO(gri) This is borrowing from checker.convertUntyped and 219 // checker.representable. Need to clean up.
|
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/ |
operand.go | 195 // TODO(gri) The functions operand.assignableTo, checker.convertUntyped, 196 // checker.representable, and checker.assignment are 218 // TODO(gri) This is borrowing from checker.convertUntyped and 219 // checker.representable. Need to clean up.
|
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...] |
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/ |
ReportSupport.java | 126 final RulesChecker checker = new RulesChecker(); local 127 checker.setRules(rules); 128 formatters.add(checker.createVisitor(output));
|
/external/python/cpython2/Modules/_ctypes/ |
ctypes.h | 135 PyObject *checker; member in struct:__anon30170 248 PyObject *checker; member in struct:__anon30172 278 Currently, PyCFuncPtr types have 'converters' and 'checker' entries in their 319 PyObject *checker);
|