Searched defs:to_file (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/libaddressinput/chromium/tools/
H A Dupdate-strings.py28 to_file = os.path.abspath(os.path.join( variable
33 with open(to_file, 'w') as destination:
/external/chromium_org/content/browser/fileapi/
H A Dnative_file_util_unittest.cc284 base::FilePath to_file = Path("tofile"); local
298 from_file, to_file, FileSystemOperation::OPTION_NONE, move));
301 EXPECT_TRUE(FileExists(to_file));
302 EXPECT_EQ(1020, GetSize(to_file));
H A Dlocal_file_util_unittest.cc282 const char *to_file = "todir/fromfile"; local
311 EXPECT_TRUE(FileExists(to_file));
312 EXPECT_EQ(1020, GetSize(to_file));
317 const char *to_file = "tofile"; local
334 CreateURL(to_file)));
337 EXPECT_TRUE(FileExists(to_file));
338 EXPECT_EQ(1020, GetSize(to_file));
345 const char *to_file = "todir/fromfile"; local
373 EXPECT_TRUE(FileExists(to_file));
374 EXPECT_EQ(1020, GetSize(to_file));
[all...]
/external/pcre/dist/
H A Dpcretest.c3463 pcre_uint8 *to_file = NULL; local
3887 to_file = pp;
4403 if (to_file != NULL)
4405 FILE *f = fopen((char *)to_file, "wb");
4408 fprintf(outfile, "Unable to open %s: %s\n", to_file, strerror(errno));
4427 fprintf(outfile, "Write error on %s: %s\n", to_file, strerror(errno));
4431 fprintf(outfile, "Compiled pattern written to %s\n", to_file);
4440 fprintf(outfile, "Write error on %s: %s\n", to_file,
4443 else fprintf(outfile, "Study data written to %s\n", to_file);
/external/clang/tools/c-index-test/
H A Dc-index-test.c172 FILE *to_file; local
184 to_file = fopen(sep + 1, "rb");
185 if (!to_file) {
195 fseek(to_file, 0, SEEK_END);
196 unsaved->Length = ftell(to_file);
197 fseek(to_file, 0, SEEK_SET);
201 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) {
203 (feof(to_file) ? "EOF" : "error"), sep + 1);
204 fclose(to_file);
215 fclose(to_file);
[all...]

Completed in 551 milliseconds