Searched refs:outFile (Results 1 – 2 of 2) sorted by relevance
211 File outFile = mTmpDir.newFile(); in testTakeScreenshot() local212 assertTrue(mDevice.takeScreenshot(outFile)); in testTakeScreenshot()214 Bitmap screenshot = BitmapFactory.decodeFile(outFile.getPath()); in testTakeScreenshot()222 File outFile = mTmpDir.newFile(); in testTakeScreenshot_scaled() local223 assertTrue(mDevice.takeScreenshot(outFile, 0.5f, 100)); in testTakeScreenshot_scaled()225 Bitmap screenshot = BitmapFactory.decodeFile(outFile.getPath()); in testTakeScreenshot_scaled()
440 File outFile = mTmpDir.newFile(); in testDumpWindowHierarchy_withString() local441 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() local452 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() local463 FileOutputStream outStream = new FileOutputStream(outFile); in testDumpWindowHierarchy_withOutputStream()466 Document xml = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(outFile); in testDumpWindowHierarchy_withOutputStream()