/development/tools/idegen/ |
index-gen.sh | 41 tmp_file=tmp.txt 49 > $tmp_file 50 sed -e 's/LOCAL_PACKAGE_NAME *:= *//g' -e 's/LOCAL_MODULE *:= *//g' -e 's/\^M*$//g' < $tmp_file > $dest_file 52 mv $dest_file $tmp_file 55 grep -v "^$root_dir/vendor/google" $tmp_file > $dest_file 57 rm $tmp_file
|
/external/chromium_org/base/files/ |
important_file_writer.cc | 67 PlatformFile tmp_file = local 69 if (tmp_file == kInvalidPlatformFileValue) { 77 tmp_file, 0, data.data(), static_cast<int>(data.length())); 78 FlushPlatformFile(tmp_file); // Ignore return value. 80 if (!ClosePlatformFile(tmp_file)) {
|
/external/chromium/chrome/common/ |
important_file_writer.cc | 39 FILE* tmp_file = file_util::CreateAndOpenTemporaryFileInDir( local 41 if (!tmp_file) { 46 size_t bytes_written = fwrite(data_.data(), 1, data_.length(), tmp_file); 47 if (!file_util::CloseFile(tmp_file)) {
|
/ndk/build/tools/ |
build-docs.sh | 98 TMP_FILE=$TEMP_DIR/$(basename "$DST_FILE").temp 99 run $SUBST_PROGRAM --output "$TMP_FILE" "$SRC_FILE" 102 run run $MARKDOWN --file="$DST_FILE" "$TMP_FILE"
|
/external/chromium_org/third_party/sqlite/src/src/ |
test_onefile.c | 116 typedef struct tmp_file tmp_file; typedef in typeref:struct:tmp_file 117 struct tmp_file { struct 145 ** Method declarations for tmp_file. 258 tmp_file *pTmp = (tmp_file *)pFile; 272 tmp_file *pTmp = (tmp_file *)pFile; 289 tmp_file *pTmp = (tmp_file *)pFile [all...] |
/external/chromium_org/v8/tools/ |
android-run.py | 81 tmp_file = open(fname, "w") 82 tmp_file.write(data) 83 tmp_file.close()
|
nacl-run.py | 76 tmp_file = open(fname, "w") 77 tmp_file.write(data) 78 tmp_file.close()
|
/external/chromium_org/tools/resources/ |
optimize-png-files.sh | 285 local tmp_file=$TMP_DIR/$name 289 local new=$(stat -c%s $tmp_file) 297 mv "$tmp_file" "$file" 305 rm $tmp_file
|
/external/chromium/chrome/browser/chromeos/login/ |
google_authenticator_unittest.cc | 96 FILE* tmp_file = CreateAndOpenTemporaryFile(&out); local 97 EXPECT_NE(tmp_file, static_cast<FILE*>(NULL)); 99 EXPECT_TRUE(CloseFile(tmp_file)); 107 FILE* tmp_file = CreateAndOpenTemporaryFileInDir(exe_dir, local 110 EXPECT_NE(tmp_file, static_cast<FILE*>(NULL)); 113 EXPECT_TRUE(CloseFile(tmp_file));
|
parallel_authenticator_unittest.cc | 119 FILE* tmp_file = CreateAndOpenTemporaryFile(&out); local 120 EXPECT_NE(tmp_file, static_cast<FILE*>(NULL)); 122 EXPECT_TRUE(CloseFile(tmp_file)); 130 FILE* tmp_file = CreateAndOpenTemporaryFileInDir(exe_dir, local 133 EXPECT_NE(tmp_file, static_cast<FILE*>(NULL)); 136 EXPECT_TRUE(CloseFile(tmp_file));
|
/external/valgrind/main/massif/ |
ms_print.in | 55 my $tmp_file = "ms_print.tmp.$$"; 390 # Print snapshot list header to $tmp_file. 392 open(TMPFILE, "> $tmp_file") 393 || die "Cannot open $tmp_file for reading\n"; 423 # Print the snapshot data to $tmp_file. 442 # snapshot list header to $tmp_file. 651 # Print snapshots, from $tmp_file. 653 open(TMPFILE, "< $tmp_file") 654 || die "Cannot open $tmp_file for reading\n"; 659 unlink($tmp_file); [all...] |
/external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
download_operation_unittest.cc | 117 const base::FilePath tmp_file = local 119 ASSERT_TRUE(google_apis::test_util::WriteStringToFile(tmp_file, content)); 127 "<id>", "<md5>", tmp_file,
|
/external/chromium_org/chrome/browser/chromeos/login/ |
parallel_authenticator_unittest.cc | 98 FILE* tmp_file = base::CreateAndOpenTemporaryFile(&out); local 99 EXPECT_NE(tmp_file, static_cast<FILE*>(NULL)); 101 EXPECT_TRUE(base::CloseFile(tmp_file));
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
common.py | 340 self.tmp_file = os.fdopen(tmp_fd, 'wb') 347 # Delegate everything else to self.tmp_file 348 return getattr(self.tmp_file, attrname) 353 self.tmp_file.close()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_urllib.py | 228 fd, tmp_file = tempfile.mkstemp() 229 tmp_fileurl = 'file://localhost/' + tmp_file.replace(os.path.sep, '/') 231 self.assertTrue(os.path.exists(tmp_file)) 236 os.unlink(tmp_file) 238 self.assertFalse(os.path.exists(tmp_file)) [all...] |
test_mailbox.py | 661 tmp_file = self._box._create_tmp() 662 head, tail = os.path.split(tmp_file.name) 687 tmp_file.write(_sample_message) 688 tmp_file.seek(0) 689 self.assertTrue(tmp_file.read() == _sample_message) 690 tmp_file.close() [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_urllib.py | 228 fd, tmp_file = tempfile.mkstemp() 229 tmp_fileurl = 'file://localhost/' + tmp_file.replace(os.path.sep, '/') 231 self.assertTrue(os.path.exists(tmp_file)) 236 os.unlink(tmp_file) 238 self.assertFalse(os.path.exists(tmp_file)) [all...] |
test_mailbox.py | 661 tmp_file = self._box._create_tmp() 662 head, tail = os.path.split(tmp_file.name) 687 tmp_file.write(_sample_message) 688 tmp_file.seek(0) 689 self.assertTrue(tmp_file.read() == _sample_message) 690 tmp_file.close() [all...] |
/external/chromium_org/third_party/leveldatabase/ |
env_chromium_unittest.cc | 207 base::FilePath new_file_dir = dir.Append(FPL("tmp_file"));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
mailbox.py | 271 tmp_file = self._create_tmp() 273 self._dump_message(message, tmp_file) 275 tmp_file.close() 276 os.remove(tmp_file.name) 278 _sync_close(tmp_file) 287 uniq = os.path.basename(tmp_file.name).split(self.colon)[0] 291 os.link(tmp_file.name, dest) 292 os.remove(tmp_file.name) 294 os.rename(tmp_file.name, dest) 296 os.remove(tmp_file.name [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
mailbox.py | 271 tmp_file = self._create_tmp() 273 self._dump_message(message, tmp_file) 275 tmp_file.close() 276 os.remove(tmp_file.name) 278 _sync_close(tmp_file) 287 uniq = os.path.basename(tmp_file.name).split(self.colon)[0] 291 os.link(tmp_file.name, dest) 292 os.remove(tmp_file.name) 294 os.rename(tmp_file.name, dest) 296 os.remove(tmp_file.name [all...] |
/external/chromium_org/tools/valgrind/ |
valgrind_test.py | [all...] |