/external/chromium_org/third_party/libaddressinput/chromium/tools/ |
update-strings.py | 28 to_file = os.path.abspath(os.path.join( variable 33 with open(to_file, 'w') as destination:
|
/external/chromium_org/content/browser/fileapi/ |
native_file_util_unittest.cc | 284 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));
|
local_file_util_unittest.cc | 282 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/clang/tools/c-index-test/ |
c-index-test.c | 172 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...] |