/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/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/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/chromium_org/third_party/libxml/ |
D | README.chromium | 17 - Import XPath fix http://git.gnome.org/browse/libxml2/commit/?id=91d19754d46acd4a639a8b9e31f50f31c… 18 - Import follow-on for above commit: http://git.gnome.org/browse/libxml2/commit/?id=ea90b894146030c… 19 - Import additional XPath fix http://git.gnome.org/browse/libxml2/commit/?id=df83c17e5a2646bd923f75… 20 - Import follow-on fix for above commit: http://git.gnome.org/browse/libxml2/commit/?id=fec31bcd452… 21 …vious two fixes, committed upstream: http://git.gnome.org/browse/libxml2/commit/?id=f5048b3e71fc30… 22 - Add a fix for handling of unknown namespaces, commit upstream is pending. 23 - Add fixes for ending the parse properly if a SAX callback calls xmlStopParser(), commit upstream … 24 - Add fix for entities, commit upstream is http://git.gnome.org/browse/libxml2/commit/?id=5bd3c0618… 25 - Import UTF-8 fix from upstream: http://git.gnome.org/browse/libxml2/commit/?id=0795348aeb86648723… 26 - Import XPath fix http://git.gnome.org/browse/libxml2/commit/xpath.c?id=2ddecc23862bab1a9a9e51e097… [all …]
|
/external/chromium_org/chrome/browser/resources/options/ |
D | preferences.js | 28 Preferences.setBooleanPref = function(name, value, commit, metric) { argument 29 if (!commit) { 46 Preferences.setIntegerPref = function(name, value, commit, metric) { argument 47 if (!commit) { 64 Preferences.setDoublePref = function(name, value, commit, metric) { argument 65 if (!commit) { 82 Preferences.setStringPref = function(name, value, commit, metric) { argument 83 if (!commit) { 101 Preferences.setURLPref = function(name, value, commit, metric) { argument 102 if (!commit) { [all …]
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 157 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() local 158 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit, &PMap); in VisitObjCMessageExpr() 159 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 163 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() local 164 edit::rewriteToObjCSubscriptSyntax(E, *Consumer.NSAPIObj, commit); in VisitObjCMessageExpr() 165 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 211 const NSAPI &NS, edit::Commit &commit) { in rewriteToObjCProperty() argument 257 commit.replace(CharSourceRange::getCharRange(Getter->getLocStart(), in rewriteToObjCProperty() 263 commit.remove(CharSourceRange::getCharRange(Setter->getLocStart(), EndLoc)); in rewriteToObjCProperty() 298 edit::Commit commit(*Editor); in migrateObjCInterfaceDecl() local [all …]
|
/external/robolectric/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 | 119 commit, files = interpret_args(opts.args, dash_dash, opts.commit) 120 changed_lines = compute_diff_and_extract_lines(commit, files) 191 commit = default_commit 195 commit = args[0] 196 object_type = get_object_type(commit) 199 die("'%s' is not a commit" % commit) 201 die("'%s' is a %s, but a commit was expected" % (commit, object_type)) 205 commit = args[0] 208 commit = default_commit 211 commit = default_commit [all …]
|
/external/ceres-solver/docs/source/ |
D | contributing.rst | 23 review changes to Ceres. Gerrit enables pre-commit reviews so that 58 the Gerrit pre-commit hook automatically. This pre-submit hook 66 … curl -o .git/hooks/commit-msg https://ceres-solver-review.googlesource.com/tools/hooks/commit-msg 67 chmod +x .git/hooks/commit-msg 105 like. Commit your changes as one patch. When you commit, the Gerrit 106 hook will add a `Change-Id:` line as the last line of the commit. 123 commit*. Instead, update the last commit using a command like the 128 git commit --amend -a 130 This will update the last commit, so that it has both the original 131 patch and your updates as a single commit. You will have a chance [all …]
|
/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/chromium_org/third_party/mesa/src/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/clang/lib/Rewrite/Frontend/ |
D | FixItRewriter.cpp | 143 edit::Commit commit(Editor); in HandleDiagnostic() local 150 commit.insertFromRange(Hint.RemoveRange.getBegin(), in HandleDiagnostic() 154 commit.remove(Hint.RemoveRange); in HandleDiagnostic() 158 commit.replace(Hint.RemoveRange, Hint.CodeToInsert); in HandleDiagnostic() 160 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert, in HandleDiagnostic() 164 bool CanRewrite = Info.getNumFixItHints() > 0 && commit.isCommitable(); in HandleDiagnostic() 178 if (!Editor.commit(commit)) { in HandleDiagnostic()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/ |
D | commitannouncer.py | 66 for commit in new_commits: 67 commit_detail = self._commit_detail(commit) 69 _log.info('%s Posting commit %s' % (self._time(), commit)) 73 _log.error('Malformed commit log for %s' % commit) 144 def _commit_detail(self, commit): argument 145 … return self._format_commit_detail(self.git.git_commit_detail(commit, self._commit_detail_format)) 151 commit, email, subject, body = commit_detail.split('\n', 3) 178 … review_url if review_url else 'https://chromium.googlesource.com/chromium/blink/+/%s' % commit[:8]
|
/external/chromium_org/v8/tools/ |
D | push-to-trunk.sh | 51 -l Manually specify the git commit ID of the last push to trunk. 124 for commit in $COMMITS ; do 126 git log -1 $commit --format="%w(80,8,8)%s" >> "$CHANGELOG_ENTRY_FILE" 129 git log -1 $commit --format="%B" \ 137 git log -1 $commit --format="%w(80,8,8)(%an)" >> "$CHANGELOG_ENTRY_FILE" 193 git commit -a -m "$PREPARE_COMMIT_MSG" \ 291 git commit -F "$COMMITMSG_FILE" || die "'git commit' failed." 379 git commit -am "Update V8 to version $MAJOR.$MINOR.$BUILD.
|
/external/v8/tools/ |
D | push-to-trunk.sh | 51 -l Manually specify the git commit ID of the last push to trunk. 124 for commit in $COMMITS ; do 126 git log -1 $commit --format="%w(80,8,8)%s" >> "$CHANGELOG_ENTRY_FILE" 129 git log -1 $commit --format="%B" \ 136 git log -1 $commit --format="%w(80,8,8)(%an)" >> "$CHANGELOG_ENTRY_FILE" 192 git commit -a -m "$PREPARE_COMMIT_MSG" \ 290 git commit -F "$COMMITMSG_FILE" || die "'git commit' failed." 359 git commit -am "Update V8 to version $MAJOR.$MINOR.$BUILD.
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/ |
D | LdapLoginModuleTest.java | 103 module.commit(); in test_commit() 113 assertFalse("Commit shouldn't be successful", module.commit()); in test_commit() 174 module.commit(); in test_logout() 197 module.commit(); in test_optionsAndSharedStatus() 227 module.commit(); in test_optionsAndSharedStatus() 243 module.commit(); in test_optionsAndSharedStatus() 259 module.commit(); in test_optionsAndSharedStatus() 271 module.commit(); in test_optionsAndSharedStatus() 286 module.commit(); in test_optionsAndSharedStatus()
|
D | JndiLoginModuleTest.java | 103 module.commit(); in test_commit() 113 assertFalse("Commit shouldn't be successful", module.commit()); in test_commit() 175 module.commit(); in test_logout() 212 module.commit(); in test_optionsAndSharedStatus() 227 module.commit(); in test_optionsAndSharedStatus() 246 module.commit(); in test_optionsAndSharedStatus() 261 module.commit(); in test_optionsAndSharedStatus() 279 module.commit(); in test_optionsAndSharedStatus()
|
/external/clang/include/clang/Edit/ |
D | Rewriters.h | 28 const NSAPI &NS, Commit &commit); 31 const NSAPI &NS, Commit &commit, 35 const NSAPI &NS, Commit &commit);
|
/external/ceres-solver/ |
D | patch_from_client.sh | 24 declare -r commit="$(git log | head -1)" 41 echo "URL: https://ceres-solver.googlesource.com/ceres-solver/+/$commit" >> $temp_readme 42 echo "Version: $commit" >> $temp_readme
|
D | import_ceres_upstream.sh | 25 declare -r commit="$(git log | head -1 | cut -d ' ' -f2)" 42 echo "URL: https://ceres-solver.googlesource.com/ceres-solver/+archive/$commit.tar.gz" >> $temp_rea… 43 echo "Version: $commit" >> $temp_readme
|
/external/llvm/utils/git-svn/ |
D | git-svnrevert | 27 git revert --no-commit $COMMIT 2>/dev/null 39 This reverts commit r$SVN_REVISION. 43 git commit --file="$TEMPLATE" --edit
|
/external/qemu-pc-bios/ |
D | README | 11 bochs/bios. We used the following commit in the bochs git tree so that 14 commit 04387139e3b5ac97b5633cd40b3d87cdf45efd6c 26 is built by the tree, and we used the following commit. 28 commit 33636cbdd93da79c903b91b50ae087bb814b9332
|
/external/qemu/block/ |
D | vvfat.c | 1373 commit_t* commit = array_get(&(s->commits), i); in clear_commits() local 1374 assert(commit->path || commit->action == ACTION_WRITEOUT); in clear_commits() 1375 if (commit->action != ACTION_WRITEOUT) { in clear_commits() 1376 assert(commit->path); in clear_commits() 1377 free(commit->path); in clear_commits() 1379 assert(commit->path == NULL); in clear_commits() 1387 commit_t* commit = array_get_next(&(s->commits)); in schedule_rename() local 1388 commit->path = new_path; in schedule_rename() 1389 commit->param.rename.cluster = cluster; in schedule_rename() 1390 commit->action = ACTION_RENAME; in schedule_rename() [all …]
|
/external/chromium_org/sync/engine/ |
D | syncer.cc | 162 scoped_ptr<Commit> commit( in BuildAndPostCommits() local 170 if (!commit) { in BuildAndPostCommits() 174 SyncerError error = commit->PostAndProcessResponse( in BuildAndPostCommits() 178 commit->CleanUp(); in BuildAndPostCommits()
|