/external/openssh/ |
D | ChangeLog | 1 commit d38f05dbdd291212bc95ea80648b72b7177e9f4e 7 commit 72536316a219b7394996a74691a5d4ec197480f7 13 commit 3be52bc36bdfd24ded7e0f46999e7db520fb4e3f 17 upstream commit 23 commit db84e52fe9cfad57f22e7e23c5fbf00092385129 31 commit 89f04852db27643717c9c3a2b0dde97ae50099ee 39 commit 7ef1f9bafc2cc8d97ff2fbd4f280002b6e8ea5d9 48 commit 9165abfea3f68a0c684a6ed2e575e59bc31a3a6b 58 commit 2adbe1e63bc313d03e8e84e652cc623af8ebb163 62 upstream commit [all …]
|
/external/clang/lib/Edit/ |
D | RewriteObjCFoundationAPI.cpp | 60 const NSAPI &NS, Commit &commit) { in rewriteObjCRedundantCallWithLiteral() argument 86 commit.replaceWithInner(Msg->getSourceRange(), in rewriteObjCRedundantCallWithLiteral() 174 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) { in maybePutParensOnReceiver() argument 177 commit.insertWrap("(", RecRange, ")"); in maybePutParensOnReceiver() 182 Commit &commit) { in rewriteToSubscriptGetCommon() argument 193 commit.replaceWithInner(CharSourceRange::getCharRange(MsgRange.getBegin(), in rewriteToSubscriptGetCommon() 196 commit.replaceWithInner(SourceRange(ArgRange.getBegin(), MsgRange.getEnd()), in rewriteToSubscriptGetCommon() 198 commit.insertWrap("[", ArgRange, "]"); in rewriteToSubscriptGetCommon() 199 maybePutParensOnReceiver(Rec, commit); in rewriteToSubscriptGetCommon() 206 Commit &commit) { in rewriteToArraySubscriptGet() argument [all …]
|
/external/autotest/tko/ |
D | db.py | 196 return self.con.commit() 199 def commit(self): member in db_sql 334 def _exec_sql_with_commit(self, sql, values, commit): argument 339 self.con.commit() 344 if commit: 345 self.con.commit() 348 def insert(self, table, data, commit=None): argument 367 self._exec_sql_with_commit(cmd, values, commit) 370 def delete(self, table, where, commit = None): argument 378 if commit is None: [all …]
|
/external/python/cpython2/Modules/_ctypes/libffi/ |
D | ChangeLog | 1 commit 0403f332b1f478696c30d3d8a0e2f6eef24aaf88 7 commit 94ac0c168ee7b115409121d88b25a4979446c8da 13 commit 57465744b6e1295d7202de5a7734df589518f1c8 19 commit 0c2251a42df5108b6d9ebe5fe1cf83d0bcdf660e 25 commit 70c303cb88e23aaee91c87c56b108c50ab4f3c2f 31 commit 52b3457093ed19b2a7c5fcf243c4014c90ce6225 37 commit 7ba4c5d72aa440a4b21fb57e999e67c5957761da 43 commit 31e0d4ecff6dc2a6c75a066ee099b52a43f6ba27 52 commit 99909eb6184b62408d88b6b4e7ab38e84e6d0bf3 58 commit 1c0e9a7297ced15413c2d2d5d35f6c650c4b46c9 [all …]
|
/external/libusb-compat/ |
D | ChangeLog | 1 commit 713a4c3c2097e6d060d41718b2005490dfd7c71c 7 commit 3874dfa6141e0e4cee8ccc6c3d4ff522698ebd7d 18 commit 15bf9b0a2d3fed8f0fe69d002a4fcd0140679f2d 41 commit 3ffc1160f0599ceb503aa2e0dbbf51a5b72bb9b9 47 commit 29af8617ad6d460c3bff927f17c4938dab8f10d3 53 commit f0909ef85c5bf2ee8655864041e5e0453adc9ff0 59 commit b090e024b9dbd8d94ba6f2b6eeb629d3fd461d6e 69 commit cf9ce427f4bb62b7d575b70b299f1a582fb1baa1 75 commit c2ffa94cbcab67324aebc1b32dad69f875b6481a 92 commit 14e5a692c62c07e9698e5b51b4da5f48a7da1912 [all …]
|
/external/v8/tools/ |
D | find-commit-for-patch.py | 54 def CountMatchingFiles(commit, files): argument 58 cmd = ["git", "ls-tree", "-r", commit] + [f for f in files] 69 commit = GetGitCommitHash(start) 73 matched_files = CountMatchingFiles(commit, files) 74 if verbose: print("Commit %s matched %d files" % (commit, matched_files)) 76 return commit 77 commit = GetGitCommitHash("%s^" % commit) 87 commit = FindFirstMatchingCommit(args.branch, files, args.limit, args.verbose) variable 89 print(">>> Matching commit: %s" % commit) 90 print(subprocess.check_output(["git", "log", "-1", commit])) [all …]
|
/external/libvpx/libvpx/tools/ |
D | ftfy.sh | 9 This script applies a whitespace transformation to the commit at HEAD. If no 15 --amend Squashes the changes into the commit at HEAD 16 This option will also reformat the commit message. 17 --commit Creates a new commit containing only the whitespace changes 18 --msg-only Reformat the commit message only, ignore the patch itself. 47 commit() { function 59 git commit -a -C HEAD > /dev/null 60 git commit --amend -F- << EOF 79 git commit -a --amend -F "$NEW_COMMIT_MSG" 86 "${dirname_self}"/wrap-commit-msg.py \ [all …]
|
/external/lz4/tests/ |
D | test-lz4-speed.py | 89 def send_email_with_attachments(branch, commit, last_commit, args, text, results_files, argument 95 % (email_header, pid, branch, commit, last_commit, 116 def git_get_changes(branch, commit, last_commit): argument 119 commits = execute('git log -n 10 %s %s' % (fmt, commit)) 121 commits = execute('git --no-pager log %s %s..%s' % (fmt, last_commit, commit)) 128 commit = None 136 commit = words[1] 144 return commit, csize, cspeed, dspeed 147 def benchmark_and_compare(branch, commit, last_commit, args, executableName, md5sum, compilerVersio… argument 161 myfile.write('%s %s %s md5=%s\n' % (branch, commit, compilerVersion, md5sum)) [all …]
|
/external/jcommander/src/test/java/com/beust/jcommander/command/ |
D | CommandAliasTest.java | 63 CommandCommit commit = new CommandCommit(); in testCommitWithAlias() local 64 jc.addCommand("commit", commit, "ci", "cmt"); in testCommitWithAlias() 69 Assert.assertEquals(commit.amend.booleanValue(), true); in testCommitWithAlias() 70 Assert.assertEquals(commit.author, "jack"); in testCommitWithAlias() 71 Assert.assertEquals(commit.files, Arrays.asList("file1.txt")); in testCommitWithAlias() 80 CommandCommit commit = new CommandCommit(); in twoCommandsWithAliases() local 81 jc.addCommand("commit", commit, "ci", "cmt"); in twoCommandsWithAliases() 95 CommandCommit commit = new CommandCommit(); in clashingAliasesAreNotAllowed() local 97 jc.addCommand("commit", commit, "ci", "xx"); in clashingAliasesAreNotAllowed() 119 CommandCommit commit = new CommandCommit(); in usageCanBeRetrievedWithBothCommandAndAlias() local [all …]
|
D | CommandTest.java | 36 CommandCommit commit = new CommandCommit(); in namedCommandTest1() local 37 jc.addCommand("commit", commit); in namedCommandTest1() 59 CommandCommit commit = new CommandCommit(); in commandTest1() local 60 jc.addCommand("commit", commit); in commandTest1() 74 CommandCommit commit = new CommandCommit(); in commandTest2() local 75 jc.addCommand("commit", commit); in commandTest2() 85 Assert.assertTrue(commit.amend); in commandTest2() 86 Assert.assertEquals(commit.author, "cbeust"); in commandTest2() 87 Assert.assertEquals(commit.files, Arrays.asList("A.java", "B.java")); in commandTest2()
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 233 const NSAPI &NS, edit::Commit &commit, in rewriteToPropertyDotSyntax() argument 272 commit.insertBefore(receiver->getLocStart(), "("); in rewriteToPropertyDotSyntax() 278 commit.replace(SpaceRange, PropertyDotString); in rewriteToPropertyDotSyntax() 281 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), ""); in rewriteToPropertyDotSyntax() 282 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), ""); in rewriteToPropertyDotSyntax() 285 commit.insertWrap("(", receiver->getSourceRange(), ")"); in rewriteToPropertyDotSyntax() 303 commit.replace(Range, PropertyDotString); in rewriteToPropertyDotSyntax() 305 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), ""); in rewriteToPropertyDotSyntax() 306 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), ""); in rewriteToPropertyDotSyntax() 324 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() local [all …]
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_cmd_vgpu10.c | 191 swc->commit(swc); in SVGA3D_vgpu10_PredCopyRegion() 213 swc->commit(swc); in SVGA3D_vgpu10_PredCopy() 227 swc->commit(swc); in SVGA3D_vgpu10_SetViewports() 249 swc->commit(swc); in SVGA3D_vgpu10_SetShader() 286 swc->commit(swc); in SVGA3D_vgpu10_SetShaderResources() 303 swc->commit(swc); in SVGA3D_vgpu10_SetSamplers() 335 swc->commit(swc); in SVGA3D_vgpu10_ClearRenderTargetView() 393 swc->commit(swc); in SVGA3D_vgpu10_SetRenderTargets() 409 swc->commit(swc); in SVGA3D_vgpu10_SetBlendState() 422 swc->commit(swc); in SVGA3D_vgpu10_SetDepthStencilState() [all …]
|
D | svga_cmd.c | 131 swc->commit(swc); in SVGA_FIFOCommitAll() 175 swc->commit(swc); in SVGA3D_DefineContext() 209 swc->commit(swc); in SVGA3D_DestroyContext() 342 swc->commit(swc); in SVGA3D_DefineSurface2D() 377 swc->commit(swc); in SVGA3D_DestroySurface() 477 swc->commit(swc); in SVGA3D_SurfaceDMA() 548 swc->commit(swc); in SVGA3D_BufferDMA() 598 swc->commit(swc); in SVGA3D_SetRenderTarget() 653 swc->commit(swc); in SVGA3D_DefineShader() 694 swc->commit(swc); in SVGA3D_DestroyShader() [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | FragmentTransactionTest.java | 89 txn.add(111, fragment).commit(); in addWithId_commit_shouldCallFragmentManager() 100 txn.add(111, fragment, "tag1").commit(); in addWithIdAndTag_commit_shouldCallFragmentManager() 111 txn.add(fragment, "tag1").commit(); in addWithTag_commit_shouldCallFragmentManager() 122 txn.replace(111, fragment).commit(); in replaceWithId_commit_shouldCallFragmentManager() 133 txn.replace(111, fragment, "tag1").commit(); in replaceWithIdAndTag_commit_shouldCallFragmentManager() 153 txn.add(fragment, "tag1").commit(); in commit_shouldNotActLikeCommitAllowingStateLoss() 172 txn.attach(fragment).commit(); in attach_shouldCauseFragmentToBecomeAttached() 179 txn.hide(fragment).commit(); in hide_shouldCauseFragmentToBecomeHidden() 186 txn.show(fragment).commit(); in show_shouldCauseFragmentToBecomeNotHidden() 202 txn.hide(fragment).commit(); in hide_shouldCallOnHiddenChangedOnFragment() [all …]
|
/external/jemalloc/src/ |
D | chunk_mmap.c | 7 chunk_alloc_mmap_slow(size_t size, size_t alignment, bool *zero, bool *commit) in chunk_alloc_mmap_slow() argument 19 pages = pages_map(NULL, alloc_size, commit); in chunk_alloc_mmap_slow() 24 ret = pages_trim(pages, alloc_size, leadsize, size, commit); in chunk_alloc_mmap_slow() 34 bool *commit) in chunk_alloc_mmap() argument 55 ret = pages_map(new_addr, size, commit); in chunk_alloc_mmap() 62 return (chunk_alloc_mmap_slow(size, alignment, zero, commit)); in chunk_alloc_mmap()
|
D | pages.c | 32 pages_map(void *addr, size_t size, bool *commit) in pages_map() argument 39 *commit = true; in pages_map() 46 ret = VirtualAlloc(addr, size, MEM_RESERVE | (*commit ? MEM_COMMIT : 0), in pages_map() 54 int prot = *commit ? PAGES_PROT_COMMIT : PAGES_PROT_DECOMMIT; in pages_map() 109 bool *commit) in pages_trim() argument 119 new_addr = pages_map(ret, size, commit); in pages_trim() 140 pages_commit_impl(void *addr, size_t size, bool commit) in pages_commit_impl() argument 147 return (commit ? (addr != VirtualAlloc(addr, size, MEM_COMMIT, in pages_commit_impl() 151 int prot = commit ? PAGES_PROT_COMMIT : PAGES_PROT_DECOMMIT; in pages_commit_impl()
|
D | chunk.c | 22 size_t alignment, bool *zero, bool *commit, unsigned arena_ind); 102 ATOMIC_COPY_HOOK(commit); in chunk_hooks_set() 204 bool *commit, bool dalloc_node) in chunk_recycle() argument 253 *commit = true; in chunk_recycle() 303 if (!committed && chunk_hooks->commit(ret, size, 0, size, arena->ind)) { in chunk_recycle() 338 size_t alignment, bool *zero, bool *commit, dss_prec_t dss_prec) in chunk_alloc_core() argument 350 commit)) != NULL) in chunk_alloc_core() 353 if ((ret = chunk_alloc_mmap(new_addr, size, alignment, zero, commit)) != in chunk_alloc_core() 359 commit)) != NULL) in chunk_alloc_core() 370 bool zero, commit; in chunk_alloc_base() local [all …]
|
/external/guice/extensions/persist/src/com/google/inject/persist/jpa/ |
D | JpaLocalTxnInterceptor.java | 75 txn.commit(); in invoke() 91 txn.commit(); in invoke() 132 boolean commit = true; in rollbackIfNecessary() 139 commit = false; in rollbackIfNecessary() 146 commit = true; in rollbackIfNecessary() 152 if (!commit) { in rollbackIfNecessary() 161 return commit; in rollbackIfNecessary()
|
/external/autotest/server/hosts/ |
D | file_store_unittest.py | 30 store.commit(info) 40 store.commit(info) 67 store.commit(host_info.HostInfo()) 80 store.commit(host_info.HostInfo()) 94 store.commit(host_info.HostInfo()) 102 store.commit(host_info.HostInfo()) 113 store.commit(host_info.HostInfo()) 138 store.commit(host_info.HostInfo()) 162 store.commit(host_info.HostInfo()) 182 store.commit(host_info.HostInfo())
|
/external/skia/experimental/documentation/ |
D | gerrit.md | 9 This command sets up a Git commit-message hook to add a unique Change-Id to 10 each commit. Gerrit only accepts changes with a Change-Id and uses it to 13 curl -Lo "$(git rev-parse --git-dir)/hooks/commit-msg" 14 'https://gerrit-review.googlesource.com/tools/hooks/commit-msg' 15 chmod +x "$(git rev-parse --git-dir)/hooks/commit-msg" 36 2. Make a commit. 39 git commit --all --message 'Change Foo' 42 `git log` should show that a Change-Id line has been added you your commit 71 git commit --all --amend 73 Changes to the commit message will be sent with the push as well. [all …]
|
/external/freetype/ |
D | README.android | 23 The following commit is cherry-picked from the upstream: 24 ( http://git.savannah.gnu.org/cgit/freetype/freetype2.git/commit/?id=da38be8 ) 26 commit da38be831d2c8ea5443c73d01ecfbc750bba7045 (patch) 32 commit 779309744222a736eba0f1731e8162fce6288d4e 36 commit 7bbb91fbf47fc0775cc9705673caf0c47a81f94b 40 commit 447a0b62634802d8acdb56008cff5ff4e50be244
|
/external/smali/dexlib2/ |
D | OatVersions.txt | 9 1412dfa4adcd511902e510fa0c948b168ab5840c - 61 (re-commit of f3251d12) 16 7bf2b4f1d08050f80782217febac55c8cfc5e4ef - 65 (re-commit of fa2c054b) 23 0747466fca310eedea5fc49e37d54f240a0b3c0f - 69 (re-commit of 54b62480) 35 9bdf108885a27ba05fae8501725649574d7c491b - 75 (re-commit of 625a64aa) 38 29d38e77c553c6cf71fc4dafe2d22b4e3f814872 - 76 (re-commit of 845e5064) 58 0d3998b5ff619364acf47bec0b541e7a49bd6fe7 - 95 (re-commit of 2b615ba) 65 e761bccf9f0d884cc4d4ec104568cef968296492 - 100 (re-commit of cc99df23)
|
/external/mesa3d/bin/ |
D | .cherry-ignore | 1 # The commit addressed an earlier commit ccdd5b3738e which did not land in branch. 3 # The commit addressed an earlier commit 0567ab0407e which did not land in branch.
|
/external/clang/lib/Frontend/Rewrite/ |
D | FixItRewriter.cpp | 148 edit::Commit commit(Editor); in HandleDiagnostic() local 155 commit.insertFromRange(Hint.RemoveRange.getBegin(), in HandleDiagnostic() 159 commit.remove(Hint.RemoveRange); in HandleDiagnostic() 163 commit.replace(Hint.RemoveRange, Hint.CodeToInsert); in HandleDiagnostic() 165 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert, in HandleDiagnostic() 169 bool CanRewrite = Info.getNumFixItHints() > 0 && commit.isCommitable(); in HandleDiagnostic() 183 if (!Editor.commit(commit)) { in HandleDiagnostic()
|
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | SharedPrefUtil.java | 50 eabPref.putBoolean(INIT_DONE, initDone).commit(); in setInitDone() 64 eabPref.putLong(CONTACT_CHANGED_PREF_KEY, time).commit(); in saveLastContactChangedTimestamp() 78 eabPref.putLong(CONTACT_PROFILE_CHANGED_PREF_KEY, time).commit(); in saveLastProfileContactChangedTimestamp() 92 eabPref.putLong(CONTACT_DELETE_PREF_KEY, time).commit(); in saveLastContactDeletedTimestamp() 103 eabPref.commit(); in validateDeviceTimestamp() 116 eabPref.commit(); in resetEABSharedPref()
|