Home
last modified time | relevance | path

Searched refs:f (Results 1 – 9 of 9) sorted by relevance

/platform_testing/tests/perf/PerformanceLaunch/
Dgen_locales.py32 with open("res/values-{0}/strings.xml".format(locale), "w") as f:
33 f.write(template.format(locale))
/platform_testing/libraries/device-collectors/src/test/java/android/device/collectors/
DLogcatOnFailureCollectorTest.java126 Failure f = new Failure(TEST_DESCRIPTION, new RuntimeException("I failed.")); in testLogcatOnFailure() local
127 listener.testFailure(f); in testLogcatOnFailure()
174 Failure f = new Failure(testDescription, new RuntimeException("I failed.")); in testRetrievingLogcat() local
175 listener.testFailure(f); in testRetrievingLogcat()
318 Failure f = new Failure(TEST_DESCRIPTION, new RuntimeException("I failed.")); in testMultipleIterations() local
325 listener.testFailure(f); in testMultipleIterations()
332 listener.testFailure(f); in testMultipleIterations()
/platform_testing/libraries/device-collectors/src/test/platform/android/device/collectors/
DStatsdListenerTest.java544 return argThat(f -> f.getParent().contains(parentName) && f.getName().equals(filename)); in getExactFileNameMatcher()
551 f -> in getPartialFileNameMatcher()
552 f.getParent().contains(parentName) in getPartialFileNameMatcher()
553 && f.getName().contains(component) in getPartialFileNameMatcher()
555 .allMatch(c -> f.getName().contains(c))); in getPartialFileNameMatcher()
/platform_testing/libraries/health/runners/longevity/platform/tests/src/android/platform/test/longevity/
DProfileSuiteTest.java276 f -> { in testTimestampScheduling_respectsSuiteTimeout()
277 if (!(f.getException() instanceof TestTimedOutException)) { in testTimestampScheduling_respectsSuiteTimeout()
281 (TestTimedOutException) f.getException(); in testTimestampScheduling_respectsSuiteTimeout()
DScheduledScenarioRunnerTest.java134 f -> { in testOverTimeTest_throwsTestTimedOutException()
135 if (!(f.getException() instanceof TestTimedOutException)) { in testOverTimeTest_throwsTestTimedOutException()
139 (TestTimedOutException) f.getException(); in testOverTimeTest_throwsTestTimedOutException()
DLongevityClassRunnerTest.java432 f -> ((FrameworkMethod) f).getName().contains(methodName))); in getMethodNameMatcher()
/platform_testing/libraries/health/runners/longevity/platform/src/android/platform/test/longevity/
DLongevityClassRunner.java175 .map(f -> Pattern.compile(f).matcher(name)) in isIgnored()
DProfile.java272 } catch (IOException f) { in getConfigurationArgument()
/platform_testing/libraries/device-collectors/src/main/platform-collectors/src/android/device/collectors/
DStatsdListener.java364 protected File writeToFile(File f, byte[] content) throws IOException { in writeToFile() argument
365 Files.write(f.toPath(), content); in writeToFile()
366 return f; in writeToFile()