/external/chromium_org/third_party/jemalloc/chromium/ |
apply-ed-patches.pl | 44 my ($ed, $target_file, $patch_file, $fh) = @_; 49 print "$ed -s $target_file < $patch_file\n"; 50 system "$ed -s $target_file < $patch_file\n"; 54 my ($target_file,$patch_file) = ('',''); 73 do_patch $ed, $target_file, $patch_file, $fh; 76 $patch_file = $new_patch_file; 77 $fh = new FileHandle($patch_file, 'w'); 84 do_patch $ed, $target_file, $patch_file, $fh;
|
/external/chromium_org/third_party/jemalloc/vendor/ |
apply-ed-patches.pl | 44 my ($ed, $target_file, $patch_file, $fh) = @_; 49 print "$ed -s $target_file < $patch_file\n"; 50 system "$ed -s $target_file < $patch_file\n"; 54 my ($target_file,$patch_file) = ('',''); 73 do_patch $ed, $target_file, $patch_file, $fh; 76 $patch_file = $new_patch_file; 77 $fh = new FileHandle($patch_file, 'w'); 84 do_patch $ed, $target_file, $patch_file, $fh;
|
/external/chromium_org/chrome/installer/mac/ |
dirpatcher.sh | 127 local patch_file="${1}" 131 mode="$(stat "-f%OMp%OLp" "${patch_file}")" 141 if ! touch -r "${patch_file}" "${new_file}"; then 149 local patch_file="${2}" 158 if ! "${patcher}" "${old_file}" "${new_file}" "${patch_file}"; then 159 err "couldn't create ${new_file} by applying ${patch_file} to ${old_file}" 166 local patch_file="${2}" 170 if ! "${decompressor}" -c < "${patch_file}" > "${new_file}"; then 171 err "couldn't decompress ${patch_file} to ${new_file} with ${decompressor}" 178 local patch_file="${2} 187 patch_file() { function [all...] |
dirdiffer.sh | 192 local patch_file="${2}" 196 if ! chmod -h "${mode}" "${patch_file}"; then 200 if ! [[ -L "${patch_file}" ]]; then 205 if ! touch -r "${new_file}" "${patch_file}"; then 220 local patch_file="${3}" 222 local uncompressed_file="${patch_file}${PLAIN_SUFFIX}" 232 local bz2_file="${patch_file}${BZ2_SUFFIX}" 252 local gz_file="${patch_file}${GZ_SUFFIX}" 288 local xz_file="${patch_file}${XZ_SUFFIX}" 310 local gbs_file="${patch_file}${GBS_SUFFIX} [all...] |
/external/chromium_org/courgette/ |
versioning_unittest.cc | 16 const char* patch_file, 21 const char* patch_file, 24 std::string new_buffer = FileContents(patch_file);
|
courgette_tool.cc | 312 const base::FilePath& patch_file) { 327 WriteSinkToFile(&patch_stream, patch_file); 331 const base::FilePath& patch_file, 339 patch_file.value().c_str(), 375 std::string patch_buffer = ReadOrFail(patch_file, "'patch' input"); 389 const base::FilePath& patch_file) { 404 WriteSinkToFile(&patch_stream, patch_file); 408 const base::FilePath& patch_file, 411 std::string patch_buffer = ReadOrFail(patch_file, "'patch' input"); 491 UsageProblem("-gen <old_file> <new_file> <patch_file>"); [all...] |
ensemble_apply.cc | 387 base::MemoryMappedFile patch_file; local 388 if (!patch_file.Initialize(patch_file_path)) 393 patch_header_stream.Init(patch_file.data(), patch_file.length()); 409 patch_source_stream.Init(patch_file.data(), patch_file.length());
|
/external/chromium_org/chrome/browser/component_updater/ |
component_patcher_win.h | 17 const base::FilePath& patch_file,
|
component_patcher.h | 43 // specified by |patch_type| using |patch_file|. Sets the value of error to 56 const base::FilePath& patch_file, 67 const base::FilePath& patch_file,
|
component_patcher_win.cc | 67 const base::FilePath& patch_file, 81 cl.AppendSwitchPath(installer::switches::kPatchFile, patch_file);
|
component_patcher.cc | 42 const base::FilePath& patch_file,
|
/external/chromium_org/chrome/browser/component_updater/test/ |
component_patcher_mock.h | 21 const base::FilePath& patch_file,
|
component_patcher_unittest.cc | 42 const base::FilePath& patch_file, 49 patch_file.value().c_str(), 56 patch_file,
|
/external/chromium_org/courgette/third_party/ |
bsdiff_apply.cc | 186 base::MemoryMappedFile patch_file; local 187 if (!patch_file.Initialize(patch_file_path)) { 191 patch_file_stream.Init(patch_file.data(), patch_file.length());
|
/external/chromium_org/chrome/tools/build/win/ |
create_installer_archive.py | 128 def GenerateDiffPatch(options, orig_file, new_file, patch_file): 131 cmd = '%s -gen "%s" "%s" "%s"' % (exe_file, orig_file, new_file, patch_file) 134 cmd = [exe_file, orig_file, new_file, patch_file,] 228 patch_file = os.path.join(options.build_dir, patch_name_prefix + 230 GenerateDiffPatch(options, prev_archive_file, archive_file, patch_file) 234 orig_file = patch_file 256 patch_file = os.path.join(options.build_dir, SETUP_PATCH_FILE_PREFIX + 258 GenerateDiffPatch(options, prev_setup_file, new_setup_file, patch_file) 262 CompressUsingLZMA(options.build_dir, setup_file_path, patch_file)
|
/external/chromium_org/v8/tools/push-to-trunk/ |
common_includes.py | 46 PATCH_FILE = "PATCH_FILE" 425 def WaitForResolvingConflicts(self, patch_file): 440 def ApplyPatch(self, patch_file, reverse_patch=""): 441 args = "apply --index --reject %s \"%s\"" % (reverse_patch, patch_file) 443 self.WaitForResolvingConflicts(patch_file)
|
/external/clang/tools/clang-format/ |
git-clang-format | 266 def extract_lines(patch_file): 267 """Extract the changed lines in `patch_file`. 276 for line in patch_file:
|
/external/chromium_org/chrome/installer/setup/ |
setup_main.cc | [all...] |