/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_dep_util.py | 17 old_file = os.path.abspath(__file__) 20 self.assertRaises(DistutilsFileError, newer, new_file, old_file) 23 # 'old_file', or if 'new_file' exists and 'old_file' doesn't. 26 self.assertTrue(newer(new_file, old_file)) 28 # Return false if both exist and 'old_file' is the same age or younger 30 self.assertFalse(newer(old_file, new_file)) 56 old_file = os.path.abspath(__file__) 58 # return true if 'old_file' is out-of-date with respect to any file 63 self.assertTrue(newer_group([one, two, three], old_file)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_dep_util.py | 17 old_file = os.path.abspath(__file__) 20 self.assertRaises(DistutilsFileError, newer, new_file, old_file) 23 # 'old_file', or if 'new_file' exists and 'old_file' doesn't. 26 self.assertTrue(newer(new_file, old_file)) 28 # Return false if both exist and 'old_file' is the same age or younger 30 self.assertFalse(newer(old_file, new_file)) 56 old_file = os.path.abspath(__file__) 58 # return true if 'old_file' is out-of-date with respect to any file 63 self.assertTrue(newer_group([one, two, three], old_file)) [all...] |
/external/chromium_org/chrome/installer/mac/ |
dirpatcher.sh | 148 local old_file="${1}" 153 if [[ -L "${old_file}" ]] || ! [[ -f "${old_file}" ]]; then 154 err "can't patch nonexistent or irregular file ${old_file}" 158 if ! "${patcher}" "${old_file}" "${new_file}" "${patch_file}"; then 159 err "couldn't create ${new_file} by applying ${patch_file} to ${old_file}" 165 local old_file="${1}" 177 local old_file="${1}" 188 local old_file="${1}" 219 old_file="${old_file:0:${#old_file} - ${strip_length}} [all...] |
dirdiffer.sh | 218 local old_file="${1}" 308 if [[ -f "${old_file}" ]] && ! [[ -L "${old_file}" ]] && 315 if ! "${GOOBSDIFF}" "${old_file}" "${new_file}" "${gbs_file}"; then 316 err "couldn't create ${gbs_file} by comparing ${old_file} to ${new_file}" 363 local old_file="${old_dir}/${file}" 379 make_patch_dir "${old_file}" "${new_file}" "${patch_file}" 384 make_patch_file "${old_file}" "${new_file}" "${patch_file}"
|
/external/chromium_org/chrome/tools/build/win/ |
scan_server_dlls.py | 74 old_file = open(output_file, 'r') 78 old_contents = old_file.read() 79 old_file.close()
|
/external/chromium_org/courgette/third_party/ |
bsdiff_apply.cc | 178 base::MemoryMappedFile old_file; local 179 if (!old_file.Initialize(old_file_path)) { 183 old_file_stream.Init(old_file.data(), old_file.length());
|
/external/openfst/src/lib/ |
flags.cc | 104 string old_file; local 118 if (file != old_file) { 124 old_file = file;
|
/external/chromium_org/courgette/ |
courgette_tool.cc | 310 void GenerateEnsemblePatch(const base::FilePath& old_file, 313 std::string old_buffer = ReadOrFail(old_file, "'old' input"); 330 void ApplyEnsemblePatch(const base::FilePath& old_file, 338 courgette::ApplyEnsemblePatch(old_file.value().c_str(), 373 std::string old_buffer = ReadOrFail(old_file, "'old' input"); 387 void GenerateBSDiffPatch(const base::FilePath& old_file, 390 std::string old_buffer = ReadOrFail(old_file, "'old' input"); 407 void ApplyBSDiffPatch(const base::FilePath& old_file, 410 std::string old_buffer = ReadOrFail(old_file, "'old' input"); 491 UsageProblem("-gen <old_file> <new_file> <patch_file>") [all...] |
ensemble_apply.cc | 399 // Read the old_file. 401 base::MemoryMappedFile old_file; local 402 if (!old_file.Initialize(old_file_path)) 408 old_source_stream.Init(old_file.data(), old_file.length());
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_pair_schedule.c | 762 rc_register_file old_file, 775 old_file, new_index); [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_pair_schedule.c | 762 rc_register_file old_file, 775 old_file, new_index); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
PyShell.py | 218 with open(self.breakpointPath,"r") as old_file: 219 lines = old_file.readlines() [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
PyShell.py | 218 with open(self.breakpointPath,"r") as old_file: 219 lines = old_file.readlines() [all...] |
/external/chromium_org/gpu/command_buffer/ |
build_gles2_cmd_buffer.py | [all...] |