Home | History | Annotate | Download | only in dumprendertree

Lines Matching refs:File

5  * you may not use this file except in compliance with the License.
31 import java.io.File;
94 File externalDir = Environment.getExternalStorageDirectory();
95 File resultsPassedFile = new File(externalDir, "layout_tests_passed.txt");
96 File resultsFailedFile = new File(externalDir, "layout_tests_failed.txt");
97 File resultsIgnoreResultFile = new File(externalDir, "layout_tests_ignored.txt");
98 File noExpectedResultFile = new File(externalDir, "layout_tests_nontext.txt");
208 File f = new File(TEST_STATUS_FILE);
224 // Gets the file which contains WebKit's expected results for this test.
238 File f = new File(androidExpectedResult);
244 f = new File(androidExpectedResult);
248 // Gets the file which contains the actual results of running the test on
255 private void failedCase(String file) {
256 Log.w("Layout test: ", file + " failed");
257 mResultRecorder.failed(file);
260 private void passedCase(String file) {
261 Log.v("Layout test:", file + " passed");
262 mResultRecorder.passed(file);
265 private void ignoreResultCase(String file) {
266 Log.v("Layout test:", file + " ignore result");
267 mResultRecorder.ignoreResult(file);
270 private void noResultCase(String file) {
271 Log.v("Layout test:", file + " no expected result");
272 mResultRecorder.noResult(file);
283 File actual = new File(actualResultFile);
284 File expected = new File(expectedResultFile);
293 Log.e(LOGTAG, "File not found : " + ex.getMessage());
330 File f = new File(expectedResultFile);
361 File f = new File(expectedResultFile);
385 mTestPathPrefix = (new File(LAYOUT_TESTS_ROOT + runner.mTestPath)).getAbsolutePath();
430 test_path = new File(test_path).getAbsolutePath();
438 File tests_list = new File(LAYOUT_TESTS_LIST_FILE);
454 File tests_list = new File(LAYOUT_TESTS_LIST_FILE);
471 File cacheDir = targetContext.getCacheDir();
476 OutputStream out = new FileOutputStream(new File(cacheDir,