/aosp14/frameworks/base/test-runner/tests/src/android/test/suitebuilder/ |
H A D | TestSuiteBuilderTest.java | 55 assertTrue(recorder.passed("SimpleTest.testSimpleOne")); in testShouldRunSimpleTests() 56 assertTrue(recorder.passed("SimpleTest.testSimpleTwo")); in testShouldRunSimpleTests() 57 assertTrue(recorder.passed("AnotherSimpleTest.testAnotherOne")); in testShouldRunSimpleTests() 68 assertTrue(recorder.passed("SimpleTest.testSimpleTwo")); in testShouldOnlyIncludeTestsThatSatisfyAllPredicates() 96 assertTrue(recorder.passed("SubclassTest.testSubclass")); in testShouldRunTestsInheritedFromSuperclass() 97 assertTrue(recorder.passed("SubclassTest.testSuperclass")); in testShouldRunTestsInheritedFromSuperclass() 106 assertTrue(recorder.passed("Level1Test.testLevel1")); in testShouldIncludeTestsInSubPackagesRecursively() 107 assertTrue(recorder.passed("Level2Test.testLevel2")); in testShouldIncludeTestsInSubPackagesRecursively() 126 assertTrue(recorder.passed("PartiallySuppressedTest.testUnSuppressedMethod")); in testShouldExcludeSuppressedTests() 222 public boolean passed(String testName) {
|
H A D | UnitTestSuiteBuilderTest.java | 100 public boolean passed(String testName) { in passed() method in UnitTestSuiteBuilderTest.SuiteExecutionRecorder
|
/aosp14/frameworks/base/core/proto/android/internal/ |
H A D | protolog.proto | 33 /* string parameters passed to the log call. */ 35 /* integer parameters passed to the log call. */ 37 /* floating point parameters passed to the log call. */ 39 /* boolean parameters passed to the log call. */
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/ |
H A D | DiagonalClassifier.java | 71 return Result.passed(0); in calculateFalsingResult() 76 return Result.passed(0); in calculateFalsingResult() 91 return falsed ? falsed(0.5f, getReason()) : Result.passed(0.5); in calculateFalsingResult()
|
H A D | ProximityClassifier.java | 125 return Result.passed(0); in calculateFalsingResult() 133 : Result.passed(0.5); in calculateFalsingResult() 136 return Result.passed(0.5); in calculateFalsingResult()
|
H A D | TypeClassifier.java | 51 return Result.passed(0); in calculateFalsingResult() 107 return wrongDirection ? falsed(confidence, getReason(interactionType)) : Result.passed(0.5); in calculateFalsingResult()
|
H A D | DistanceClassifier.java | 163 return Result.passed(0); in calculateFalsingResult() 166 return !getPassedFlingThreshold() ? falsed(0.5, getReason()) : Result.passed(0.5); in calculateFalsingResult() 189 return longSwipe ? Result.passed(0.5) : falsed(0.5, getReason()); in isLongSwipe()
|
H A D | ZigZagClassifier.java | 96 return Result.passed(0); in calculateFalsingResult() 109 return Result.passed(0); in calculateFalsingResult() 170 ? falsed(0.5, getReason()) : Result.passed(0.5); in calculateFalsingResult()
|
H A D | TapClassifier.java | 65 return Result.passed(0); in isTap()
|
H A D | PointerCountClassifier.java | 67 ? falsed(1, getReason(allowedPointerCount)) : Result.passed(0); in calculateFalsingResult()
|
H A D | DoubleTapClassifier.java | 62 ? falsed(0.5, reason.toString()) : Result.passed(0.5); in calculateFalsingResult()
|
H A D | FalsingClassifier.java | 206 public static Result passed(double confidence) { in passed() method in FalsingClassifier.Result
|
/aosp14/frameworks/base/test-runner/src/android/test/ |
H A D | TestPrinter.java | 60 private void passed(String className) { in passed() method in TestPrinter 89 passed(test.toString()); in endTest()
|
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/fudger/ |
H A D | LocationFudgerTest.java | 109 int passed = 0; in testCoarsen_AvgMany() local 143 passed++; in testCoarsen_AvgMany() 152 assertThat(passed / (double) iterations).isGreaterThan(.70); in testCoarsen_AvgMany()
|
/aosp14/frameworks/base/tests/ActivityManagerPerfTests/ |
H A D | README.txt | 43 * The target package can report the time it measures through an ITimeReceiverCallback passed 45 (or however a Binder needs to be passed to the target package)
|
/aosp14/frameworks/base/core/proto/android/app/ |
H A D | time_zone_detector.proto | 25 // Represents a LocationTimeZoneProviderEvent that can be / has been passed to the time zone 35 // Represents a LocationTimeZoneAlgorithmStatus that can be / has been passed to the time zone
|
/aosp14/frameworks/base/cmds/am/proto/ |
H A D | instrumentation_data.proto | 46 * The command ran successfully. This does not imply that the tests passed.
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/ |
H A D | HistoryTrackerTest.java | 126 : FalsingClassifier.Result.passed(confidence)), in addResult()
|
H A D | ProximityClassifierTest.java | 56 private final FalsingClassifier.Result mPassedResult = FalsingClassifier.Result.passed(1);
|
H A D | DoubleTapClassifierTest.java | 58 private final FalsingClassifier.Result mPassedResult = FalsingClassifier.Result.passed(1);
|
/aosp14/frameworks/base/tools/bit/ |
H A D | main.cpp | 465 static void print_results(int passed, int failed, int ignored) { in print_results() argument 473 } else if (passed > 0 || ignored > 0) { in print_results() 474 cp = passed > 0 ? g_escapeGreenBold : nothing; in print_results() 482 printf("%s%d passed%s, %s%d failed%s, %s%d ignored%s\n", cp, passed, g_escapeEndColor, cf, in print_results() 485 printf("%s%d passed%s, %s%d failed%s\n", cp, passed, g_escapeEndColor, cf, failed, in print_results()
|
/aosp14/frameworks/base/core/java/android/widget/ |
H A D | Scroller.java | 519 int passed = timePassed(); in extendDuration() local 520 mDuration = passed + extend; in extendDuration()
|
/aosp14/frameworks/base/core/java/android/window/ |
H A D | SurfaceSyncGroup.md | 25 An additional Runnable argument can be passed in which ensures the Runnable has executed before add… 37 …an the transaction has been applied since it could be passed to a parent SurfaceSyncGroup or passe… 47 …e with a new SurfaceSyncGroup object. The old active SurfaceSyncGroup is passed via lambda when th…
|
/aosp14/frameworks/base/tools/dump-coverage/ |
H A D | README.md | 44 and then saves the result to a file specified by the passed in directory
|
/aosp14/frameworks/base/cmds/incidentd/src/ |
H A D | report_file.proto | 58 * Flattened IncidentHeaderProto that was passed with this
|