HomeSort by relevance Sort by last modified time
    Searched defs:file1 (Results 1 - 25 of 52) sorted by null

1 2 3

  /libcore/support/src/test/java/tests/support/
Support_DeleteOnExitTest.java 12 File file1 = new File(args[0]); local
15 file1.deleteOnExit();
  /external/chromium/chrome/browser/
browsing_data_indexed_db_helper_browsertest.cc 32 const FilePath::CharType file1[] = local
50 EXPECT_EQ(FilePath(file1).value(), result[0].file_path.BaseName().value());
browsing_data_local_storage_helper_browsertest.cc 141 const FilePath::CharType file1[] = local
159 EXPECT_EQ(FilePath(file1).value(), result[0].file_path.BaseName().value());
  /external/chromium_org/courgette/
disassembler_elf_32_x86_unittest.cc 20 std::string file1 = FileContents(file_name); local
23 new courgette::DisassemblerElf32X86(file1.c_str(), file1.length()));
31 EXPECT_EQ(file1.length(), disassembler->length());
34 EXPECT_EQ(reinterpret_cast<const void*>(file1.c_str()),
disassembler_win32_x86_unittest.cc 18 std::string file1 = FileContents("setup1.exe"); local
21 new courgette::DisassemblerWin32X86(file1.c_str(), file1.length()));
27 EXPECT_EQ(file1.length(), disassembler->length());
46 EXPECT_EQ(reinterpret_cast<const void*>(file1.c_str()),
52 EXPECT_EQ(reinterpret_cast<const void*>(file1.c_str()),
59 std::string file1 = FileContents("pe-64.exe"); local
62 new courgette::DisassemblerWin32X86(file1.c_str(), file1.length()));
68 EXPECT_EQ(file1.length(), disassembler->length())
77 std::string file1 = FileContents("en-US.dll"); local
    [all...]
bsdiff_memory_unittest.cc 66 std::string file1 = local
85 GenerateAndTestPatch(file1, file2);
96 std::string file1 = GenerateSyntheticInput(critical_size, 0); local
98 GenerateAndTestPatch(file1, file2);
100 std::string file1a = file1.substr(0, critical_size - 1);
103 std::string file1b = file1.substr(0, critical_size - 2);
106 std::string file1c = file1 + file1.substr(0, 1);
111 std::string file1 = FileContents("en-US.dll"); local
112 GenerateAndTestPatch(file1, file1)
116 std::string file1 = FileContents("setup1.exe"); local
122 std::string file1 = FileContents("elf-32-1"); local
    [all...]
encoded_program_fuzz_unittest.cc 36 std::string file1 = FileContents(file_name); local
38 const void* original_buffer = file1.c_str();
39 size_t original_length = file1.length();
  /frameworks/base/core/tests/coretests/src/android/os/storage/
StorageManagerIntegrationTest.java 78 File file1 = null; local
82 file1 = createObbFile(OBB_FILE_1, R.raw.obb_file1);
83 String filePath1 = file1.getAbsolutePath();
101 if (file1 != null) {
102 file1.delete();
142 File file1 = null; local
149 file1 = createObbFile(OBB_FILE_1_ENCRYPTED, R.raw.obb_enc_file100_orig1);
150 String filePath1 = file1.getAbsolutePath();
160 if (file1 != null) {
161 file1.delete()
    [all...]
  /external/chromium_org/chrome/browser/google_apis/
drive_api_parser_unittest.cc 255 const FileResource& file1 = *filelist->items()[0]; local
256 EXPECT_EQ("0B4v7G8yEYAWHUmRrU2lMS2hLABC", file1.file_id());
258 file1.etag());
259 EXPECT_EQ("My first file data", file1.title());
260 EXPECT_EQ("application/octet-stream", file1.mime_type());
262 EXPECT_FALSE(file1.labels().is_starred());
263 EXPECT_FALSE(file1.labels().is_hidden());
264 EXPECT_FALSE(file1.labels().is_trashed());
265 EXPECT_FALSE(file1.labels().is_restricted());
266 EXPECT_TRUE(file1.labels().is_viewed())
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor_database_unittest.cc 485 FileDescriptorProto file1, file2a, file2b; local
486 file1.set_name("foo.proto");
487 file1.set_package("foo");
488 file1.add_message_type()->set_name("Foo");
494 string data1 = file1.SerializeAsString();
  /external/chromium_org/tools/site_compare/commands/
compare2.py 151 file1 = drivers.windowing.URLtoFilename( variable in class:ExecuteCompare2.ScrapeInfo
156 comparison_result = compare.Compare(file1, file2,
  /external/protobuf/src/google/protobuf/
descriptor_database_unittest.cc 485 FileDescriptorProto file1, file2a, file2b; local
486 file1.set_name("foo.proto");
487 file1.set_package("foo");
488 file1.add_message_type()->set_name("Foo");
494 string data1 = file1.SerializeAsString();
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppCacheTest.java 243 File file1 = new File(fileArr[i], "testFile"+j+".txt"); local
246 fos = new FileOutputStream(file1);
250 Log.i(TAG, "wrote 10K bytes to "+file1);
366 File file1 = new File(cacheDir, testFilePrefix+i+".txt"); local
369 fos = new FileOutputStream(file1);
393 File file1 = new File(cacheDir, testFilePrefix+i+".txt"); local
394 if(file1.exists()) {
395 files.add(file1.getName());
416 File file1 = new File(fileArr[i], testFilePrefix+j+".txt"); local
419 fos = new FileOutputStream(file1);
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MountServiceTests.java 265 final File file1 = getFilePath("test1.obb"); local
268 ObbObserver oo1 = mountObbWithoutWait(sm, R.raw.test1, file1);
272 waitForObbActionCompletion(sm, file1, oo1, OnObbStateChangeListener.MOUNTED, false);
276 final String mountPath1 = checkMountedPath(sm, file1);
284 unmountObb(sm, file1, OnObbStateChangeListener.UNMOUNTED);
  /libcore/luni/src/test/java/dalvik/system/
DexClassLoaderTest.java 105 File file1; local
109 case ONE_DEX: file1 = DEX_FILE; file2 = null; break;
110 case ONE_JAR: file1 = JAR_FILE; file2 = null; break;
111 case TWO_DEX: file1 = DEX_FILE; file2 = DEX2_FILE; break;
112 case TWO_JAR: file1 = JAR_FILE; file2 = JAR2_FILE; break;
116 String path = file1.getAbsolutePath();
  /system/core/init/
devices.c 716 char *root, *loading, *data, *file1 = NULL, *file2 = NULL, *file3 = NULL; local
735 l = asprintf(&file1, FIRMWARE_DIR1"/%s", uevent->firmware);
756 fw_fd = open(file1, O_RDONLY);
788 free(file1);
  /system/core/logcat/
logcat.cpp 119 char *file0, *file1; local
121 asprintf(&file1, "%s.%d", g_outputFileName, i);
129 err = rename (file0, file1);
135 free(file1);
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerTest.java 236 String file1 = dir1 + "/test.mp3"; local
240 writeFile(R.raw.testmp3, file1);
241 mMediaScannerConnection.scanFile(file1, MEDIA_TYPE);
289 new File(file1).delete();
  /external/chromium_org/third_party/icu/source/tools/genrb/
wrtxml.cpp 1003 const char* file1 = "\" datatype = \"x-icu-resource-bundle\" "; local
    [all...]
  /external/icu4c/tools/genrb/
wrtxml.cpp 1002 const char* file1 = "\" datatype = \"x-icu-resource-bundle\" "; local
    [all...]
  /prebuilts/devtools/adt/lib/
sdktestutils.jar 
  /external/chromium/base/
file_util_unittest.cc 1634 FilePath file1 = temp_dir_.path().Append(FILE_PATH_LITERAL("file1.txt")); local
    [all...]
  /external/chromium_org/base/
file_util_unittest.cc 1848 FilePath file1 = temp_dir_.path().Append(FILE_PATH_LITERAL("file1.txt")); local
    [all...]
  /external/openssh/
sftp.c 201 int interactive_loop(struct sftp_conn *, char *file1, char *file2);
2088 char *file1 = NULL, *sftp_server = NULL; local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileTest.java 226 File ref1 = new File("/dir1/file1");
228 File file1 = new File("/", "/dir1/file1"); local
229 assertEquals("wrong result 1", ref1.getPath(), file1.getPath());
230 File file2 = new File("/", "//dir1/file1");
234 File file3 = new File("\\", "\\dir1\\file1");
236 File file4 = new File("\\", "\\\\dir1\\file1");
249 File ref1 = new File("/dir1/file1");
252 File file1 = new File(root, "/dir1/file1"); local
    [all...]

Completed in 799 milliseconds

1 2 3