/external/javassist/sample/duplicate/ |
D | DuplicatedObject.java | 6 private DuplicatedObject backup; field in DuplicatedObject 15 backup = null; // self is a backup object. in DuplicatedObject() 21 backup = (DuplicatedObject)m._getMetaobject(); in DuplicatedObject() 24 backup = null; in DuplicatedObject() 33 if (backup != null) in trapMethodcall() 34 backup.trapMethodcall(identifier, args); in trapMethodcall()
|
/external/e2fsprogs/lib/blkid/ |
D | save.c | 140 char *backup; in blkid_flush_cache() local 142 backup = malloc(strlen(filename) + 5); in blkid_flush_cache() 143 if (backup) { in blkid_flush_cache() 144 sprintf(backup, "%s.old", filename); in blkid_flush_cache() 145 unlink(backup); in blkid_flush_cache() 146 link(filename, backup); in blkid_flush_cache() 147 free(backup); in blkid_flush_cache()
|
/external/v8/test/mjsunit/regress/ |
D | regress-351624.js | 8 var backup = new Float64Array(1); variable 12 backup[0] = prod; 14 assertEquals(prod, backup[0]);
|
/external/fsck_msdos/ |
D | boot.c | 57 u_char backup[DOSBOOTBLOCKSIZE]; local 177 || read(dosfs, backup, sizeof backup) != sizeof backup) { 181 backup[65] = block[65]; /* XXX */ 182 if (memcmp(block + 11, backup + 11, 79)) { 207 snprintf(tmp2, sizeof(tmp2), "%.2x ", backup[11 + i]);
|
/external/vboot_reference/tests/futility/ |
D | test_main.sh | 21 [ -f ${LOG} ] && mv ${LOG} ${LOG}.backup 26 [ -f ${LOG}.backup ] && mv ${LOG}.backup ${LOG}
|
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/ |
D | InstrumentMojo.java | 77 final File backup = new File(originalClassesDir, fileName); in executeMojo() local 81 FileUtils.copyFile(source, backup); in executeMojo() 82 input = new FileInputStream(backup); in executeMojo()
|
/external/e2fsprogs/doc/ |
D | Makefile.in | 64 clean-all:: clean-tex clean-backup clean-final clean-tarfiles clean-html 74 .PHONY: clean-backup 75 clean-backup::
|
/external/vboot_reference/cgpt/ |
D | cgpt_add.c | 268 GptEntry *entry, backup; in GptAdd() local 272 memcpy(&backup, entry, sizeof(backup)); in GptAdd() 276 memcpy(entry, &backup, sizeof(*entry)); in GptAdd() 287 memcpy(entry, &backup, sizeof(*entry)); in GptAdd()
|
/external/parameter-framework/upstream/xmlserializer/ |
D | XmlElement.cpp | 86 string backup = value; in getAttribute() local 89 value = backup; in getAttribute() 108 T backup = value; in getAttribute() local 110 value = backup; in getAttribute()
|
/external/curl/packages/vms/ |
D | backup_gnv_curl_src.com | 5 $! Procedure to create backup save sets for installing in a PCSI kit. 109 $ backup'interchange' 'src_root'[curl...]*.*;0 - 125 $ backup'interchange' 'vms_root'[curl...]*.*;0 -
|
D | compare_curl_source.com | 52 $! src_root1:[project_name] is used by me to work around that VMS backup will 55 $! This is to make sure that the backup save set for the unmodified 66 $! vms_root1:[project_name] is used by me to work around that VMS backup will 69 $! This is to make sure that the backup save set for the unmodified
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/ |
D | BNF.java | 215 t.backup(); in qualify() 230 t.backup(); in getCore() 284 t.backup(); in getAlternation() 297 t.backup(); in getWeight()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
D | BNF.java | 216 t.backup(); in qualify() 231 t.backup(); in getCore() 285 t.backup(); in getAlternation() 298 t.backup(); in getWeight()
|
/external/icu/icu4c/source/common/ |
D | uniset_props.cpp | 460 RuleCharacterIterator::Pos backup; in applyPattern() local 500 chars.getPos(backup); in applyPattern() 506 chars.setPos(backup); // backup in applyPattern() 512 chars.getPos(backup); // prepare to backup in applyPattern() 518 chars.getPos(backup); // prepare to backup in applyPattern() 528 chars.setPos(backup); // backup in applyPattern() 725 chars.getPos(backup); in applyPattern() 731 chars.setPos(backup); in applyPattern()
|
/external/e2fsprogs/tests/f_preen/ |
D | name | 1 preen shouldn't destroy backup superblocks
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | CodeMangler.java | 311 File backup = null; in processFile() local 402 backup = outfile; in processFile() 583 if (backup != null) { in processFile() 584 if (backup.exists()) { in processFile() 585 backup.delete(); in processFile() 587 outfile.renameTo(backup); in processFile()
|
/external/e2fsprogs/tests/f_badjourblks/ |
D | name | 1 Illegal blocks in journal inode (and backup in superblock)
|
/external/antlr/antlr-3.4/runtime/Perl5/ |
D | MANIFEST.SKIP | 8 # temporary and backup files
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DecimalFormat.java | 1978 int backup; 1979 int i = backup = parsePosition.getIndex(); 2000 i = backup; 2011 parsePosition.setIndex(backup); 2489 int backup = -1; in subparse() local 2518 if (strictParse && backup != -1) { in subparse() 2523 if ((lastGroup != -1 && countCodePoints(text, lastGroup, backup) - 1 != gs2) in subparse() 2528 lastGroup = backup; in subparse() 2530 backup = -1; // Do this BEFORE continue statement below!!! in subparse() 2551 if (backup != -1) { in subparse() [all …]
|
/external/selinux/libsemanage/src/ |
D | semanage_store.c | 1615 const char *backup = in semanage_commit_sandbox() local 1649 if (stat(backup, &buf) == 0) { in semanage_commit_sandbox() 1651 semanage_remove_directory(backup) != 0) { in semanage_commit_sandbox() 1652 ERR(sh, "Could not remove previous backup %s.", backup); in semanage_commit_sandbox() 1657 ERR(sh, "Could not stat directory %s.", backup); in semanage_commit_sandbox() 1662 if (rename(active, backup) == -1) { in semanage_commit_sandbox() 1663 ERR(sh, "Error while renaming %s to %s.", active, backup); in semanage_commit_sandbox() 1676 if (rename(backup, active) < 0) in semanage_commit_sandbox() 1677 ERR(sh, "Error while renaming %s back to %s.", backup, in semanage_commit_sandbox() 1690 else if (rename(backup, active) < 0) in semanage_commit_sandbox() [all …]
|
/external/libvorbis/ |
D | .gitignore | 25 # Emacs and other editor backup files
|
/external/libogg/ |
D | .gitignore | 25 # Emacs and other editor backup files
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DecimalFormat.java | 1992 int backup; 1993 int i = backup = parsePosition.getIndex(); 2014 i = backup; 2025 parsePosition.setIndex(backup); 2503 int backup = -1; in subparse() local 2532 if (strictParse && backup != -1) { in subparse() 2537 if ((lastGroup != -1 && countCodePoints(text, lastGroup, backup) - 1 != gs2) in subparse() 2542 lastGroup = backup; in subparse() 2544 backup = -1; // Do this BEFORE continue statement below!!! in subparse() 2565 if (backup != -1) { in subparse() [all …]
|
/external/javasqlite/src/main/java/SQLite/ |
D | Backup.java | 59 public void backup() throws SQLite.Exception { in backup() method in Backup
|
/external/e2fsprogs/tests/f_zero_inode_size/ |
D | expect.1 | 2 ../e2fsck/e2fsck: Superblock invalid, trying backup blocks...
|