/external/chromium_org/chrome/installer/util/ |
move_tree_work_item_unittest.cc | 81 base::FilePath to_file(to_dir); 82 to_file = to_file.AppendASCII("From_Dir2"); 83 to_file = to_file.AppendASCII("From_File"); 84 ASSERT_FALSE(base::PathExists(to_file)); 96 EXPECT_TRUE(base::PathExists(to_file)); 132 orig_to_file = orig_to_file.AppendASCII("To_File"); 180 base::FilePath to_file(temp_from_dir_.path()); 181 to_file = to_file.AppendASCII("To_File") [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
line-map.h | 47 /* Physical source file TO_FILE at line TO_LINE at column 0 is represented 60 const char *to_file; variable 127 The text pointed to by TO_FILE must have a lifetime 129 TO_FILE means standard input. If reason is LC_LEAVE, and 130 TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their 137 const char *to_file, linenum_type to_line);
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
line-map.h | 47 /* Physical source file TO_FILE at line TO_LINE at column 0 is represented 60 const char *to_file; variable 127 The text pointed to by TO_FILE must have a lifetime 129 TO_FILE means standard input. If reason is LC_LEAVE, and 130 TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their 137 const char *to_file, linenum_type to_line);
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
line-map.h | 47 /* Physical source file TO_FILE at line TO_LINE at column 0 is represented 60 const char *to_file; variable 127 The text pointed to by TO_FILE must have a lifetime 129 TO_FILE means standard input. If reason is LC_LEAVE, and 130 TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their 137 const char *to_file, linenum_type to_line);
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
line-map.h | 47 /* Physical source file TO_FILE at line TO_LINE at column 0 is represented 60 const char *to_file; variable 127 The text pointed to by TO_FILE must have a lifetime 129 TO_FILE means standard input. If reason is LC_LEAVE, and 130 TO_FILE is NULL, then TO_FILE, TO_LINE and SYSP are given their 137 const char *to_file, linenum_type to_line);
|
/external/chromium_org/webkit/browser/fileapi/ |
local_file_util_unittest.cc | 292 const char *to_file = "todir/fromfile"; local 321 EXPECT_TRUE(FileExists(to_file)); 322 EXPECT_EQ(1020, GetSize(to_file)); 327 const char *to_file = "tofile"; local 344 CreateURL(to_file))); 347 EXPECT_TRUE(FileExists(to_file)); 348 EXPECT_EQ(1020, GetSize(to_file)); 355 const char *to_file = "todir/fromfile"; local 383 EXPECT_TRUE(FileExists(to_file)); 384 EXPECT_EQ(1020, GetSize(to_file)); [all...] |
native_file_util_unittest.cc | 276 base::FilePath to_file = Path("tofile"); local 288 NativeFileUtil::CopyOrMoveFile(from_file, to_file, false)); 291 EXPECT_TRUE(FileExists(to_file)); 292 EXPECT_EQ(1020, GetSize(to_file));
|
obfuscated_file_util_unittest.cc | [all...] |
/ndk/sources/host-tools/make-3.81/ |
file.c | 225 struct file *to_file; 247 to_file = *file_slot; 253 if (HASH_VACANT (to_file)) 257 /* TO_FILE already exists under TO_HNAME. 258 We must retain TO_FILE and merge FROM_FILE into it. */ 262 if (to_file->cmds == 0) 263 to_file->cmds = from_file->cmds; 264 else if (from_file->cmds != to_file->cmds) 269 if (to_file->cmds->fileinfo.filenm != 0) 272 from_file->name, to_file->cmds->fileinfo.filenm 224 struct file *to_file; local [all...] |
/external/chromium_org/third_party/lcov/bin/ |
lcov | 148 our $to_file; # If set, indicates that output is written to a file 295 $to_file = ($output_filename && ($output_filename ne "-")); 299 if (!$to_file) 732 if ($to_file) [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/ |
input.py | [all...] |
/external/chromium_org/third_party/lcov-1.9/bin/ |
lcov | 162 our $to_file; # If set, indicates that output is written to a file 351 $to_file = ($output_filename && ($output_filename ne "-")); 355 if (!$to_file) 1262 if ($to_file) [all...] |
/external/clang/tools/c-index-test/ |
c-index-test.c | 139 FILE *to_file; local 151 to_file = fopen(semi + 1, "rb"); 152 if (!to_file) { 162 fseek(to_file, 0, SEEK_END); 163 unsaved->Length = ftell(to_file); 164 fseek(to_file, 0, SEEK_SET); 168 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) { 170 (feof(to_file) ? "EOF" : "error"), semi + 1); 171 fclose(to_file); 182 fclose(to_file); [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
PrettyPatch.rb | 722 open(filepath, 'wb') do |to_file| 723 to_file << open(svn_uri) { |from_file| from_file.read }
|