/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/lldb/scripts/ |
build-lldb-llvm-clang | 33 for patch_file in ../scripts/llvm.*.diff 35 echo "Applying patch from '$patch_file'" 36 patch -p0 < "$patch_file" 41 for patch_file in ../../../scripts/clang.*.diff 43 echo "Applying patch from '$patch_file'" 44 patch -p0 < "$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/utility/ |
chrome_content_utility_client.h | 55 const base::FilePath& patch_file, 58 const base::FilePath& patch_file,
|
chrome_content_utility_client.cc | 376 const base::FilePath& patch_file, 378 if (input_file.empty() || patch_file.empty() || output_file.empty()) { 382 patch_file, 394 const base::FilePath& patch_file, 396 if (input_file.empty() || patch_file.empty() || output_file.empty()) { 401 patch_file.value().c_str(),
|
/external/chromium_org/chrome/tools/build/win/ |
create_installer_archive.py | 126 def GenerateDiffPatch(options, orig_file, new_file, patch_file): 129 cmd = '%s -gen "%s" "%s" "%s"' % (exe_file, orig_file, new_file, patch_file) 132 cmd = [exe_file, orig_file, new_file, patch_file,] 226 patch_file = os.path.join(options.build_dir, patch_name_prefix + 228 GenerateDiffPatch(options, prev_archive_file, archive_file, patch_file) 232 orig_file = patch_file 254 patch_file = os.path.join(options.build_dir, SETUP_PATCH_FILE_PREFIX + 256 GenerateDiffPatch(options, prev_setup_file, new_setup_file, patch_file) 260 CompressUsingLZMA(options.build_dir, setup_file_path, patch_file)
|
/external/chromium_org/v8/tools/push-to-trunk/ |
git_recipes.py | 139 def GitApplyPatch(self, patch_file, reverse=False): 140 assert patch_file 144 args.append(Quoted(patch_file))
|
common_includes.py | 51 PATCH_FILE = "PATCH_FILE" 418 def WaitForResolvingConflicts(self, patch_file): 433 def ApplyPatch(self, patch_file, revert=False): 435 self.GitApplyPatch(patch_file, revert) 437 self.WaitForResolvingConflicts(patch_file)
|
/external/clang/tools/clang-format/ |
git-clang-format | 269 def extract_lines(patch_file): 270 """Extract the changed lines in `patch_file`. 279 for line in patch_file:
|
/external/chromium_org/chrome/installer/setup/ |
setup_main.cc | [all...] |