/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 | 173 return self.con.commit() 176 def commit(self): member in db_sql 292 def _exec_sql_with_commit(self, sql, values, commit): argument 297 self.con.commit() 302 if commit: 303 self.con.commit() 306 def insert(self, table, data, commit=None): argument 321 self._exec_sql_with_commit(cmd, values, commit) 324 def delete(self, table, where, commit = None): argument 326 if commit is None: [all …]
|
/external/libusb/ |
D | ChangeLog | 1 commit a04cbb0095a78aeed3f65aaf06c46069d0ac184a 7 commit 53b47299531974fa8901b74a163f3c8ebae4eec9 16 commit 1519828b7ee1fce46d4c51fc097d52e01b8e0bb4 22 commit 45168627cc15aee3875192f34286110dbbd27095 31 commit 3af329db6dcbfb96d24867c757f9e125e5b7b0e5 37 commit ceb8cacd6d2a4189de0db2ee46d45217511c69be 43 commit 9bea500b5747bdeba7c8251d45608558e71a1db5 52 commit 02df59a309e813c50b8230de99e69fb4e1814279 74 commit ec303b01a5d4e51c000a283853af65059fa62285 80 commit cd809e2f7cee3874b7ae16b2c482a8b63a90e4a5 [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/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 | 232 const NSAPI &NS, edit::Commit &commit, in rewriteToPropertyDotSyntax() argument 271 commit.insertBefore(receiver->getLocStart(), "("); in rewriteToPropertyDotSyntax() 277 commit.replace(SpaceRange, PropertyDotString); in rewriteToPropertyDotSyntax() 280 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), ""); in rewriteToPropertyDotSyntax() 281 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), ""); in rewriteToPropertyDotSyntax() 284 commit.insertWrap("(", receiver->getSourceRange(), ")"); in rewriteToPropertyDotSyntax() 302 commit.replace(Range, PropertyDotString); in rewriteToPropertyDotSyntax() 304 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), ""); in rewriteToPropertyDotSyntax() 305 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), ""); in rewriteToPropertyDotSyntax() 324 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() local [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch/ |
D | test_document.py | 45 document.commit() 61 document.commit() 77 document.commit() 94 doc = document.commit() 133 document.commit() 156 doc = document.commit() 178 document.commit() 192 doc = document.commit() 211 document.commit() 269 document.commit() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch2/ |
D | test_document.py | 66 document.commit() 81 document.commit() 96 document.commit() 113 doc = document.commit() 150 document.commit() 172 doc = document.commit() 194 document.commit() 207 doc = document.commit() 226 document.commit() 277 document.commit() [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 29 if (!*commit) in chunk_alloc_mmap_slow() 30 *commit = pages_decommit(ret, size); in chunk_alloc_mmap_slow() 36 bool *commit) in chunk_alloc_mmap() argument 64 return (chunk_alloc_mmap_slow(size, alignment, zero, commit)); in chunk_alloc_mmap() 69 if (!*commit) in chunk_alloc_mmap() 70 *commit = pages_decommit(ret, size); in chunk_alloc_mmap()
|
D | chunk.c | 22 size_t alignment, bool *zero, bool *commit, unsigned arena_ind); 101 ATOMIC_COPY_HOOK(commit); in chunk_hooks_set() 202 void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit, in chunk_recycle() argument 249 *commit = true; in chunk_recycle() 298 if (!committed && chunk_hooks->commit(ret, size, 0, size, arena->ind)) { in chunk_recycle() 332 bool *zero, bool *commit, dss_prec_t dss_prec) in chunk_alloc_core() argument 343 chunk_alloc_dss(arena, new_addr, size, alignment, zero, commit)) != in chunk_alloc_core() 347 if ((ret = chunk_alloc_mmap(new_addr, size, alignment, zero, commit)) != in chunk_alloc_core() 352 chunk_alloc_dss(arena, new_addr, size, alignment, zero, commit)) != in chunk_alloc_core() 364 bool zero, commit; in chunk_alloc_base() local [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/clang/tools/clang-format/ |
D | git-clang-format | 123 commit, files = interpret_args(opts.args, dash_dash, opts.commit) 124 changed_lines = compute_diff_and_extract_lines(commit, files) 195 commit = default_commit 199 commit = args[0] 200 object_type = get_object_type(commit) 203 die("'%s' is not a commit" % commit) 205 die("'%s' is a %s, but a commit was expected" % (commit, object_type)) 209 commit = args[0] 212 commit = default_commit 215 commit = default_commit [all …]
|
/external/ceres-solver/docs/source/ |
D | contributing.rst | 22 review changes to Ceres. Gerrit enables pre-commit reviews so that 57 the Gerrit pre-commit hook automatically. This pre-submit hook 65 … curl -o .git/hooks/commit-msg https://ceres-solver-review.googlesource.com/tools/hooks/commit-msg 66 chmod +x .git/hooks/commit-msg 104 like. Commit your changes as one patch. When you commit, the Gerrit 105 hook will add a `Change-Id:` line as the last line of the commit. 107 Make sure that your commit message is formatted in the `50/72 style 108 <http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html>`_. 125 commit*. Instead, update the last commit using a command like the 130 git commit --amend -a [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/chromium-trace/catapult/experimental/bisect_lib/test_data/ |
D | MOCK_RANGE_RESPONSE_1 | 5 "commit": "c89130e28fd01062104e1be7f3a6fc3abbb80ca9", 17 "email": "commit-bot@chromium.org", 23 "commit": "2e93263dc74f0496100435e1fd7232e9e8323af0", 35 "email": "commit-bot@chromium.org", 41 "commit": "6feaa73a54d0515ad2940709161ca0a5ad91d1f8", 53 "email": "commit-bot@chromium.org", 59 "commit": "3861789af25e2d3502f0fb7080da5785d31308aa", 71 "email": "commit-bot@chromium.org", 77 "commit": "8fcc8af20a3d41b0512e3b1486e4dc7de528a72b", 89 "email": "commit-bot@chromium.org", [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/route53/ |
D | test_alias_resourcerecordsets.py | 58 self.assertRaises(DNSServerError, rrs.commit) 63 rrs.commit() 76 rrs.commit() 80 rrs.commit() 90 rrs.commit() 95 rrs.commit() 105 rrs.commit() 110 rrs.commit()
|
D | test_resourcerecordsets.py | 35 rrs.commit() 40 rrs.commit() 54 rrs.commit() 57 rrs.commit() 81 rrs.commit() 84 rrs.commit()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_cmd.c | 126 swc->commit(swc); in SVGA_FIFOCommitAll() 170 swc->commit(swc); in SVGA3D_DefineContext() 204 swc->commit(swc); in SVGA3D_DestroyContext() 336 swc->commit(swc);; in SVGA3D_DefineSurface2D() 370 swc->commit(swc);; in SVGA3D_DestroySurface() 469 swc->commit(swc); in SVGA3D_SurfaceDMA() 536 swc->commit(swc); in SVGA3D_BufferDMA() 589 swc->commit(swc); in SVGA3D_SetRenderTarget() 648 swc->commit(swc); in SVGA3D_DefineShader() 689 swc->commit(swc); in SVGA3D_DestroyShader() [all …]
|
/external/avahi/ |
D | autogen.sh | 45 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then 46 cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \ 47 chmod +x .git/hooks/pre-commit && \
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/scripts/ |
D | git-release-notes.py | 29 commit = lines[0].split(' ', 1)[1] variable 41 commit_list.append([commit, message]) 50 for commit, message in commit_list: 57 append.append(':sha:`{commit}`'.format(commit=commit))
|
/external/dbus/ |
D | autogen.sh | 16 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then 18 cp -av .git/hooks/pre-commit.sample .git/hooks/pre-commit 19 chmod -c +x .git/hooks/pre-commit
|
/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()
|