Home
last modified time | relevance | path

Searched refs:getChildren (Results 1 – 25 of 33) sorted by relevance

12

/tools/tradefederation/core/javatests/com/android/tradefed/testtype/rust/
DRustBinaryTestTest.java197 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/
DDryRunner.java57 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/
DMockitoFileUtil.java60 when(rootEntry.getChildren(Mockito.anyBoolean())).thenReturn(mockChildren); in setMockDirContents()
86 when(rootEntry.getChildren(Mockito.anyBoolean())).thenReturn(childrenResult); in setMockDirPath()
DTestDeviceFileFuncTest.java433 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/
DAnnotationsMerger.kt43 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/
DGoogleBenchmarkTestTest.java112 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/
DDeviceSuite.java60 for (Runner r : getChildren()) { in setTestInformation()
82 for (Runner r : getChildren()) { in setAbi()
DUiAutomatorTest.java390 for (IFileEntry testDirectory : traceSrcDir.getChildren(false)) { in logTraceFiles()
395 for (IFileEntry traceFile : testDirectory.getChildren(false)) { in logTraceFiles()
DNativeStressTest.java152 for (IFileEntry childEntry : rootEntry.getChildren(true)) { in doRunAllTestsInSubdirectory()
DNativeBenchmarkTest.java177 for (IFileEntry childEntry : rootEntry.getChildren(true)) { in doRunAllTestsInSubdirectory()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DIFileEntry.java93 public Collection<IFileEntry> getChildren(boolean useCache) throws DeviceNotAvailableException; in getChildren() method
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/junit4/
DJUnit4ResultForwarder.java122 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/
DJUnit4TestFilter.java46 for (Description desc : description.getChildren()) { in shouldRun()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/binary/
DKUnitModuleTest.java124 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/
DFileProtoResultReporterTest.java196 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/
DBaseModelProviderRunner.kt226 override fun getChildren(): List<FrameworkMethod> { in getChildren() method
227 return super.getChildren().filter { frameworkMethod -> in getChildren()
/tools/tradefederation/core/src/com/android/tradefed/device/
DFileEntryWrapper.java101 public Collection<IFileEntry> getChildren(boolean useCache) throws DeviceNotAvailableException { in getChildren() method in FileEntryWrapper
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DFolderSaver.java100 if (!mIncludeEmpty && device.getChildren(path).length == 0) { in tearDown()
/tools/tradefederation/core/isolation/com/android/tradefed/isolation/
DIsolationFilter.java71 for (Description child : desc.getChildren()) { in checkFilters()
DIsolationResultForwarder.java71 for (Description child : desc.getChildren()) { in testAssumptionFailure()
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/binary/
DKUnitModuleTestTest.java144 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/
DCamera2StressTest.java116 for (IFileEntry remoteFile : screenshotDir.getChildren(false)) { in postScreenshotOnFailure()
DCamera2FrameworkStressTest.java175 for (IFileEntry file : dirEntry.getChildren(false)) { in getCameraIdList()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDefaultTestsZipInstaller.java184 for (IFileEntry dataSubDir : dataEntry.getChildren(false)) { in doDeleteData()
/tools/metalava/metalava-model/src/testFixtures/java/com/android/tools/metalava/model/junit4/
DCustomizableParameterizedRunner.kt223 override fun getChildren() = children in getChildren() method

12