/third_party/python/Lib/test/test_sqlite3/ |
H A D | test_backup.py | 22 self.cx.backup(None) 24 self.cx.backup() 28 self.cx.backup('some_file_name.db') 32 self.cx.backup(self.cx) 38 self.cx.backup(bck) 45 source.backup(bck) 52 self.cx.backup(bck) 59 self.cx.backup(bck, 1) 63 self.cx.backup(bck) 73 self.cx.backup(bc [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | importCallExpressionInCJS5.js | 11 export function backup() { return "backup"; } 24 console.log(one.backup()); 38 console.log(one.backup()); 56 exports.backup = void 0;
57 function backup() { return "backup"; }
function 58 exports.backup = backup;
74 console.log(one.backup());
[all...] |
H A D | importCallExpressionInCJS2.js | 7 export function backup() { return "backup"; } 14 return j.backup(); 30 exports.backup = void 0;
31 function backup() { return "backup"; }
function 32 exports.backup = backup;
38 return j.backup();
|
H A D | importCallExpressionNoModuleKindSpecified.js | 11 export function backup() { return "backup"; } 24 console.log(one.backup()); 45 exports.backup = void 0;
46 function backup() { return "backup"; }
function 47 exports.backup = backup;
103 console.log(one.backup());
|
/third_party/ltp/testcases/kernel/syscalls/setdomainname/ |
H A D | setdomainname.h | 28 static char backup[_UTSNAME_DOMAIN_LENGTH]; variable 60 if ((GET_SYSCALL(backup, sizeof(backup))) < 0) in setup() 66 if ((SET_SYSCALL(backup, strlen(backup))) < 0) in cleanup() 67 tst_res(TWARN | TERRNO, "set" SYSCALL_NAME "() failed ('%s')", backup); in cleanup()
|
/third_party/python/Tools/freeze/ |
H A D | bkfile.py | 7 backup = file + '~' 9 os.unlink(backup) 13 os.rename(file, backup) 21 if filecmp.cmp(backup, file, shallow=False): 24 os.rename(backup, file)
|
/third_party/python/Lib/ |
H A D | fileinput.py | 58 to a backup file and standard output is directed to the input file. 60 in place. If the keyword argument backup=".<some extension>" is also 61 given, it specifies the extension for the backup file, and the backup 78 def input(files=None, inplace=False, backup="", *, mode="r", openhook=None, 89 _state = FileInput(files, inplace, backup, mode=mode, openhook=openhook, 172 """FileInput([files[, inplace[, backup]]], *, mode=None, openhook=None) 184 def __init__(self, files=None, inplace=False, backup="", *, 199 self._backup = backup 429 backup [all...] |
/third_party/python/Tools/scripts/ |
H A D | untabify.py | 39 backup = filename + "~" 41 os.unlink(backup) 45 os.rename(filename, backup)
|
H A D | fixnotice.py | 7 throughout the file. It writes a backup file and then does an os.rename() 101 backup = file + ".bak" 104 os.rename(file, backup)
|
H A D | pindent.py | 375 backup = filename + '~' 376 if os.path.lexists(backup): 378 os.remove(backup) 380 print("Can't remove backup %r" % (backup,), file=sys.stderr) 384 os.rename(filename, backup) 386 print("Can't rename %r to %r" % (filename, backup), file=sys.stderr)
|
/third_party/python/Lib/lib2to3/ |
H A D | main.py | 43 nobackups: If true no backup '.bak' files will be created for those 88 # Make backup 89 backup = filename + ".bak" 90 if os.path.lexists(backup): 92 os.remove(backup) 94 self.log_message("Can't remove backup %s", backup) 96 os.rename(filename, backup) 98 self.log_message("Can't rename %s to %s", filename, backup) 103 shutil.copymode(backup, filenam [all...] |
/third_party/python/Lib/test/test_tools/ |
H A D | test_pindent.py | 48 backup = data_path + '~' 49 self.assertTrue(os.path.exists(backup)) 50 with open(backup, encoding='utf-8') as f: 61 with open(backup, encoding='utf-8') as f: 72 with open(backup, encoding='utf-8') as f:
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
H A D | SeriesMatcher.java | 45 ParsedNumber backup = new ParsedNumber(); in match() 46 backup.copyFrom(result); in match() 78 result.copyFrom(backup); in match()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/ |
H A D | SeriesMatcher.java | 47 ParsedNumber backup = new ParsedNumber(); in match() 48 backup.copyFrom(result); in match() 80 result.copyFrom(backup); in match()
|
/third_party/node/deps/base64/base64/test/ |
H A D | test_base64.c | 277 char backup = enc[i]; in test_invalid_dec_input() local 284 enc[i] = backup; in test_invalid_dec_input() 287 enc[i] = backup; in test_invalid_dec_input() 294 char backup = enc[i+0]; in test_invalid_dec_input() local 303 enc[i+0] = backup; in test_invalid_dec_input() 307 enc[i+0] = backup; in test_invalid_dec_input()
|
/third_party/python/Tools/c-analyzer/c_analyzer/ |
H A D | datafiles.py | 66 backup=True, 76 backup=backup,
|
/third_party/python/Tools/c-analyzer/c_common/ |
H A D | fsutil.py | 17 def create_backup(old, backup=None): 24 if not backup or backup is True: 25 backup = f'{filename}.bak' 27 shutil.copyfile(filename, backup) 31 backup = None 32 return backup
|
/third_party/skia/tools/viewer/ |
H A D | SkSLSlide.cpp | 91 // To guard against losing your work, write out the shader to a backup file, then remove it in rebuild() 94 FILE* backup = fopen(kBackupFile, "w"); in rebuild() local 95 if (backup) { in rebuild() 96 fwrite(fSkSL.c_str(), 1, fSkSL.size(), backup); in rebuild() 97 fclose(backup); in rebuild() 100 if (backup) { in rebuild()
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | datafiles.py | 54 def write_decls(decls, outfile, fmt=None, *, backup=False): 58 write_all(decls, outfile, backup=backup)
|
/third_party/icu/icu4c/source/i18n/ |
H A D | numparse_compositions.cpp | 23 ParsedNumber backup(result); in match() 55 result = backup; in match()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | numparse_compositions.cpp | 23 ParsedNumber backup(result); in match() 55 result = backup; in match()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | numparse_compositions.cpp | 23 ParsedNumber backup(result); in match() 55 result = backup; in match()
|
/third_party/backends/backend/genesys/ |
H A D | device.cpp | 248 GenesysRegisterSettingSet backup; in apply_reg_settings_to_device_write_only() local 263 GenesysRegisterSettingSet backup; in apply_reg_settings_to_device_with_backup() local 270 backup.push_back(SettingType{reg.address, in apply_reg_settings_to_device_with_backup() 274 return backup; in apply_reg_settings_to_device_with_backup()
|
/third_party/icu/icu4c/source/common/ |
H A D | uniset_props.cpp | 284 RuleCharacterIterator::Pos backup; in applyPattern() local 322 // Prepare to backup if necessary in applyPattern() 323 chars.getPos(backup); in applyPattern() 329 chars.setPos(backup); // backup in applyPattern() 335 chars.getPos(backup); // prepare to backup in applyPattern() 341 chars.getPos(backup); // prepare to backup in applyPattern() 351 chars.setPos(backup); // backu in applyPattern() [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | uniset_props.cpp | 284 RuleCharacterIterator::Pos backup; in applyPattern() local 322 // Prepare to backup if necessary in applyPattern() 323 chars.getPos(backup); in applyPattern() 329 chars.setPos(backup); // backup in applyPattern() 335 chars.getPos(backup); // prepare to backup in applyPattern() 341 chars.getPos(backup); // prepare to backup in applyPattern() 351 chars.setPos(backup); // backu in applyPattern() [all...] |