/tools/tradefederation/core/javatests/com/android/tradefed/testtype/rust/ |
D | RustBinaryTestTest.java | 197 when(mMockITestDevice.getChildren(testPath)).thenReturn(new String[0]); in testNotFound() 217 when(mMockITestDevice.getChildren(testPath)).thenReturn(dirs); in testNotFound2() 219 when(mMockITestDevice.getChildren(testPath + "/d1")).thenReturn(d1dirs); in testNotFound2() 221 when(mMockITestDevice.getChildren(testPath + "/d1/d1_1")).thenReturn(nofiles); in testNotFound2() 223 when(mMockITestDevice.getChildren(testPath + "/d2")).thenReturn(nofiles); in testNotFound2() 245 when(mMockITestDevice.getChildren(testPath)).thenReturn(files); in testRun() 321 when(mMockITestDevice.getChildren(testPath)).thenReturn(files); in testRun_nested() 323 when(mMockITestDevice.getChildren(subDirPath)).thenReturn(files2); in testRun_nested() 347 when(mMockITestDevice.getChildren(testPath)).thenReturn(files); in testGcovCoverage_GcovPrefixSet() 374 when(mMockITestDevice.getChildren(testPath)).thenReturn(files); in doTestFilter() [all …]
|
/tools/tradefederation/core/lite/com/android/tradefed/lite/ |
D | DryRunner.java | 57 if (desc.getMethodName() == null || !desc.getChildren().isEmpty()) { in fakeExecution() 58 for (Description child : desc.getChildren()) { in fakeExecution()
|
/tools/tradefederation/core/javatests/com/android/tradefed/device/ |
D | MockitoFileUtil.java | 60 when(rootEntry.getChildren(Mockito.anyBoolean())).thenReturn(mockChildren); in setMockDirContents() 86 when(rootEntry.getChildren(Mockito.anyBoolean())).thenReturn(childrenResult); in setMockDirPath()
|
D | TestDeviceFileFuncTest.java | 433 String[] pulledChildren = mTestDevice.getChildren(remotePath); in testGetChildren_Basic() 468 String[] pulledChildren = mTestDevice.getChildren(remotePath); in testGetChildren_NotDirectory() 494 String[] pulledChildren = mTestDevice.getChildren(remotePath); in testGetChildren_EmptyDirectory()
|
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/ |
D | AnnotationsMerger.kt | 43 import com.android.tools.lint.detector.api.getChildren in <lambda>() 421 for (item in getChildren(root)) { in <lambda>() 576 loop@ for (annotationElement in getChildren(xmlElement)) { in <lambda>() 626 val children = getChildren(annotationElement) in <lambda>() 653 val children = getChildren(annotationElement) in <lambda>() 765 val children = getChildren(annotationElement) in <lambda>() 778 val children = getChildren(annotationElement) in <lambda>() 802 val children = getChildren(annotationElement) in <lambda>()
|
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/ |
D | GoogleBenchmarkTestTest.java | 112 when(mMockITestDevice.getChildren(nativeTestPath)).thenReturn(files); in testRun() 195 when(mMockITestDevice.getChildren(nativeTestPath)).thenReturn(files); in testRun_withSingleModuleName() 255 when(mMockITestDevice.getChildren(nativeTestPath)).thenReturn(files); in testRun_withMultipleModuleNames() 306 when(mMockITestDevice.getChildren(nativeTestPath)).thenReturn(files); in testRun_withRunReportName() 343 when(mMockITestDevice.getChildren(nativeTestPath)).thenReturn(files); in testRun_exceptionDuringExecShell() 467 when(mMockITestDevice.getChildren(nativeTestPath)).thenReturn(files); in doTestFilter() 598 when(mMockITestDevice.getChildren(nativeTestPath)).thenReturn(files); in testCommandTooLong() 641 when(mMockITestDevice.getChildren(nativeTestPath)).thenReturn(files); in testRun_withLDLibPath()
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/ |
D | DeviceSuite.java | 60 for (Runner r : getChildren()) { in setTestInformation() 82 for (Runner r : getChildren()) { in setAbi()
|
D | UiAutomatorTest.java | 390 for (IFileEntry testDirectory : traceSrcDir.getChildren(false)) { in logTraceFiles() 395 for (IFileEntry traceFile : testDirectory.getChildren(false)) { in logTraceFiles()
|
D | NativeStressTest.java | 152 for (IFileEntry childEntry : rootEntry.getChildren(true)) { in doRunAllTestsInSubdirectory()
|
D | NativeBenchmarkTest.java | 177 for (IFileEntry childEntry : rootEntry.getChildren(true)) { in doRunAllTestsInSubdirectory()
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | IFileEntry.java | 93 public Collection<IFileEntry> getChildren(boolean useCache) throws DeviceNotAvailableException; in getChildren() method
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/junit4/ |
D | JUnit4ResultForwarder.java | 122 for (Description test : mRunDescription.getChildren()) { in testRunFinished() 175 for (Description child : description.getChildren()) { in testFinished() 253 for (Description child : description.getChildren()) { in pollLogsAndUpload()
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | JUnit4TestFilter.java | 46 for (Description desc : description.getChildren()) { in shouldRun()
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/binary/ |
D | KUnitModuleTest.java | 124 Arrays.asList(getDevice().getChildren(KUNIT_DEBUGFS_PATH)); in runBinary() 154 Arrays.asList(getDevice().getChildren(KUNIT_DEBUGFS_PATH))); in runBinary()
|
/tools/tradefederation/core/javatests/com/android/tradefed/result/proto/ |
D | FileProtoResultReporterTest.java | 196 assertEquals("child record1", record.getChildren(0).getTestRecordId()); in testWriteReadAtestResults() 197 assertEquals("child record2", record.getChildren(1).getTestRecordId()); in testWriteReadAtestResults()
|
/tools/metalava/metalava-model/src/testFixtures/java/com/android/tools/metalava/model/testing/ |
D | BaseModelProviderRunner.kt | 226 override fun getChildren(): List<FrameworkMethod> { in getChildren() method 227 return super.getChildren().filter { frameworkMethod -> in getChildren()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | FileEntryWrapper.java | 101 public Collection<IFileEntry> getChildren(boolean useCache) throws DeviceNotAvailableException { in getChildren() method in FileEntryWrapper
|
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/ |
D | FolderSaver.java | 100 if (!mIncludeEmpty && device.getChildren(path).length == 0) { in tearDown()
|
/tools/tradefederation/core/isolation/com/android/tradefed/isolation/ |
D | IsolationFilter.java | 71 for (Description child : desc.getChildren()) { in checkFilters()
|
D | IsolationResultForwarder.java | 71 for (Description child : desc.getChildren()) { in testAssumptionFailure()
|
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/binary/ |
D | KUnitModuleTestTest.java | 144 when(mMockDevice.getChildren(KUnitModuleTest.KUNIT_DEBUGFS_PATH)) in setUp() 277 when(mMockDevice.getChildren(KUnitModuleTest.KUNIT_DEBUGFS_PATH)) in test_missing_ktap_results_file()
|
/tools/tradefederation/contrib/src/com/android/media/tests/ |
D | Camera2StressTest.java | 116 for (IFileEntry remoteFile : screenshotDir.getChildren(false)) { in postScreenshotOnFailure()
|
D | Camera2FrameworkStressTest.java | 175 for (IFileEntry file : dirEntry.getChildren(false)) { in getCameraIdList()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | DefaultTestsZipInstaller.java | 184 for (IFileEntry dataSubDir : dataEntry.getChildren(false)) { in doDeleteData()
|
/tools/metalava/metalava-model/src/testFixtures/java/com/android/tools/metalava/model/junit4/ |
D | CustomizableParameterizedRunner.kt | 223 override fun getChildren() = children in getChildren() method
|