Home
last modified time | relevance | path

Searched refs:commit (Results 1 – 25 of 388) sorted by relevance

12345678910>>...16

/external/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp60 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/openssh/
DChangeLog1 commit 9f82e5a9042f2d872e98f48a876fcab3e25dd9bb
7 commit 8ef691f7d9ef500257a549d0906d78187490668f
13 commit 4df590cf8dc799e8986268d62019b487a8ed63ad
19 commit 307bb40277ca2c32e97e61d70d1ed74b571fd6ba
23 upstream commit
27 commit b44ee0c998fb4c5f3c3281f2398af5ce42840b6f
33 commit 55e5bdeb519cb60cc18b7ba0545be581fb8598b4
37 upstream commit
42 commit be8f658e550a434eac04256bfbc4289457a24e99
48 commit ac5e8acefa253eb5e5ba186e34236c0e8007afdc
[all …]
/external/libusb/
DChangeLog1 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/
DChangeLog1 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/
Dftfy.sh9 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/clang/lib/ARCMigrate/
DObjCMT.cpp242 const NSAPI &NS, edit::Commit &commit, in rewriteToPropertyDotSyntax() argument
281 commit.insertBefore(receiver->getLocStart(), "("); in rewriteToPropertyDotSyntax()
287 commit.replace(SpaceRange, PropertyDotString); in rewriteToPropertyDotSyntax()
290 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), ""); in rewriteToPropertyDotSyntax()
291 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), ""); in rewriteToPropertyDotSyntax()
294 commit.insertWrap("(", receiver->getSourceRange(), ")"); in rewriteToPropertyDotSyntax()
312 commit.replace(Range, PropertyDotString); in rewriteToPropertyDotSyntax()
314 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), ""); in rewriteToPropertyDotSyntax()
315 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), ""); in rewriteToPropertyDotSyntax()
334 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() local
[all …]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DFragmentTransactionTest.java89 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/
Dgit-clang-format122 commit, files = interpret_args(opts.args, dash_dash, opts.commit)
123 changed_lines = compute_diff_and_extract_lines(commit, files)
194 commit = default_commit
198 commit = args[0]
199 object_type = get_object_type(commit)
202 die("'%s' is not a commit" % commit)
204 die("'%s' is a %s, but a commit was expected" % (commit, object_type))
208 commit = args[0]
211 commit = default_commit
214 commit = default_commit
[all …]
/external/ceres-solver/docs/source/
Dcontributing.rst22 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/mesa3d/src/gallium/drivers/svga/
Dsvga_cmd.c126 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/Frontend/Rewrite/
DFixItRewriter.cpp141 edit::Commit commit(Editor); in HandleDiagnostic() local
148 commit.insertFromRange(Hint.RemoveRange.getBegin(), in HandleDiagnostic()
152 commit.remove(Hint.RemoveRange); in HandleDiagnostic()
156 commit.replace(Hint.RemoveRange, Hint.CodeToInsert); in HandleDiagnostic()
158 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert, in HandleDiagnostic()
162 bool CanRewrite = Info.getNumFixItHints() > 0 && commit.isCommitable(); in HandleDiagnostic()
176 if (!Editor.commit(commit)) { in HandleDiagnostic()
/external/selinux/libselinux/utils/
Dtogglesebool.c26 int rc, i, commit = 0; in main() local
46 commit++; in main()
56 commit++; in main()
75 if (commit > 0) { in main()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DDiskLruCacheTest.java161 creator.commit(); in writeAndReadEntry()
172 creator.commit(); in readAndWriteEntryAcrossCacheOpenAndClose()
186 creator.commit(); in readAndWriteEntryWithoutProperClose()
201 creator.commit(); in journalWithEditAndPublish()
227 creator.commit(); in journalDoesNotIncludeReadOfYetUnpublishedValue()
236 k1Creator.commit(); in journalWithEditAndPublishAndRead()
240 k2Creator.commit(); in journalWithEditAndPublishAndRead()
251 editor.commit(); in cannotOperateOnEditAfterPublish()
267 editor.commit(); in explicitRemoveAppliedToDiskImmediately()
280 a.commit(); in removePreventsActiveEditFromStoringAValue()
[all …]
/external/clang/include/clang/Edit/
DRewriters.h28 const NSAPI &NS, Commit &commit);
31 const NSAPI &NS, Commit &commit,
35 const NSAPI &NS, Commit &commit);
/external/valgrind/
DREADME_DEVELOPERS_processes41 Once you have commit the change, update the bug status in bugzilla,
42 adding in the comment the revision number of the commit fixing the bug.
61 possible to commit the NEWS change together with the code changes.
62 In such a case, first commit the VEX change. Then just after, commit
68 final commit.
78 fixed in the commit that fixed 307106.
80 indicating in the comment the commit revision that fixed the 'master bug'.
/external/ceres-solver/
Dpatch_from_client.sh24 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
Dimport_ceres_upstream.sh25 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/selinux/policycoreutils/semanage/
Dseobject.py97 def commit(self,success): member in logger
125 def commit(self,success): member in logger
140 def commit(self,success): member in nulllogger
256 def commit(self): member in semanageRecords
263 self.mylog.commit(0)
265 self.mylog.commit(1)
271 self.commit()
341 self.commit()
359 self.commit()
364 self.commit()
[all …]
/external/google-breakpad/src/tools/windows/
Drefresh_binaries.bat11 REM the revision number, and builds the tools. You must run 'svn commit' to
12 REM commit the pending edits to the repository.
26 echo type 'svn commit -F %%TEMP%%\checkin.txt' to commit.
/external/llvm/utils/git-svn/
Dgit-svnrevert34 git revert --no-commit $GIT 2>/dev/null
46 This reverts commit r$SVN.
50 git commit --file="$TEMPLATE" --edit
/external/strace/
DREADME-hacking14 sometimes slightly differing) into both the ChangeLog file and the commit
15 log. Now we put that information only in the commit log, and generate
17 there are strict requirements on the form of the commit log messages.
22 Each commit log should always start with a one-line summary, the second
/external/droiddriver/
Dcontributing_aosp.md29 - make changes and commit them
32 After submitting a branch to gerrit for review, each commit will show up as an individual patch set…
34 … upon eachother. To submit an individual commit without requiring other commits to be merged first…
50 - Make new commit then squash into previous commit to retain the gerrit change id
/external/llvm/docs/
DPhabricator.rst24 to the relevant -commits mailing list. If your are not subscribed to the commit
68 in the form of a :ref:`commit message <commit messages>`.
110 Arcanist can manage the commit transparently. It will retrieve the description,
111 reviewers, the ``Differential Revision``, etc from the review and commit it to the repository.
116 arc commit --revision D<Revision>
120 Phabricator, the convention is for the commit message to end with the
133 context. This also allows Phabricator to detect the commit, close the
134 review, and add a link from the review to the commit.
139 If you decide you should not commit the patch, you should explicitly abandon
/external/skia/bench/
Dgen_bench_expectations.py185 for idx, commit in enumerate(parent_commits):
187 builder, commit, suffixes, args.input_dir)
189 downloaded_commits.append((num_downloaded, idx, commit))
196 for _, idx, commit in trunc_commits:
198 args.input_dir, commit, args.representation_alg)))
/external/bison/build-aux/
Dgitlog-to-changelog64 makes a change to SHA1's commit log text or metadata.
65 --append-dot append a dot to the first line of each commit message if
67 --no-cluster never cluster commit messages under the same date/author
68 header; the default is to cluster adjacent commit messages
69 if their headers are the same and neither commit message
75 --format=FMT set format string for commit subject and body;
78 --strip-tab remove one additional leading TAB from commit message lines.
80 this includes the "cherry picked from commit ..." line,
107 a line) referring to a commit in the current project, and CODE refers to one
150 # (alone on a line) referring to a commit in the current project, and
[all …]

12345678910>>...16