Home
last modified time | relevance | path

Searched refs:outFile (Results 1 – 2 of 2) sorted by relevance

/test/uiautomator/uiautomator/src/androidTest/java/androidx/test/uiautomator/
DUiDeviceTest.java211 File outFile = mTmpDir.newFile(); in testTakeScreenshot() local
212 assertTrue(mDevice.takeScreenshot(outFile)); in testTakeScreenshot()
214 Bitmap screenshot = BitmapFactory.decodeFile(outFile.getPath()); in testTakeScreenshot()
222 File outFile = mTmpDir.newFile(); in testTakeScreenshot_scaled() local
223 assertTrue(mDevice.takeScreenshot(outFile, 0.5f, 100)); in testTakeScreenshot_scaled()
225 Bitmap screenshot = BitmapFactory.decodeFile(outFile.getPath()); in testTakeScreenshot_scaled()
/test/uiautomator/integration-tests/testapp/src/androidTest/java/androidx/test/uiautomator/testapp/
DUiDeviceTest.java440 File outFile = mTmpDir.newFile(); in testDumpWindowHierarchy_withString() local
441 mDevice.dumpWindowHierarchy(outFile.getAbsolutePath()); in testDumpWindowHierarchy_withString()
444 Document xml = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(outFile); in testDumpWindowHierarchy_withString()
451 File outFile = mTmpDir.newFile(); in testDumpWindowHierarchy_withFile() local
452 mDevice.dumpWindowHierarchy(outFile); in testDumpWindowHierarchy_withFile()
455 Document xml = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(outFile); in testDumpWindowHierarchy_withFile()
462 File outFile = mTmpDir.newFile(); in testDumpWindowHierarchy_withOutputStream() local
463 FileOutputStream outStream = new FileOutputStream(outFile); in testDumpWindowHierarchy_withOutputStream()
466 Document xml = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(outFile); in testDumpWindowHierarchy_withOutputStream()