Searched refs:commit (Results 1 - 25 of 121) sorted by relevance

12345

/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dcommitinfo_unittest.py50 commit = CommitInfo(123, "committer@example.com", changelog_data, committer_list)
52 self.assertEqual(commit.revision(), 123)
53 self.assertEqual(commit.bug_id(), 1234)
54 self.assertEqual(commit.author_name(), "Committer")
55 self.assertEqual(commit.author_email(), "author@example.com")
56 self.assertEqual(commit.author(), author)
57 self.assertEqual(commit.reviewer_text(), "Reviewer")
58 self.assertEqual(commit.reviewer(), reviewer)
59 self.assertEqual(commit.committer(), committer)
60 self.assertEqual(commit
[all...]
/external/clang/include/clang/Edit/
H A DRewriters.h21 const NSAPI &NS, Commit &commit);
24 const NSAPI &NS, Commit &commit);
27 const NSAPI &NS, Commit &commit);
H A DEditedSource.h58 bool commit(const Commit &commit);
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp59 const NSAPI &NS, Commit &commit) {
85 commit.replaceWithInner(Msg->getSourceRange(),
173 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) { argument
176 commit.insertWrap("(", RecRange, ")");
181 Commit &commit) {
192 commit.replaceWithInner(CharSourceRange::getCharRange(MsgRange.getBegin(),
195 commit.replaceWithInner(SourceRange(ArgRange.getBegin(), MsgRange.getEnd()),
197 commit.insertWrap("[", ArgRange, "]");
198 maybePutParensOnReceiver(Rec, commit);
205 Commit &commit) {
58 rewriteObjCRedundantCallWithLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
180 rewriteToSubscriptGetCommon(const ObjCMessageExpr *Msg, Commit &commit) argument
202 rewriteToArraySubscriptGet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
212 rewriteToDictionarySubscriptGet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
222 rewriteToArraySubscriptSet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
256 rewriteToDictionarySubscriptSet(const ObjCInterfaceDecl *IFace, const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
289 rewriteToObjCSubscriptSyntax(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
338 rewriteToObjCLiteralSyntax(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
363 rewriteToArrayLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
414 rewriteToDictionaryLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
491 rewriteToCharLiteral(const ObjCMessageExpr *Msg, const CharacterLiteral *Arg, const NSAPI &NS, Commit &commit) argument
507 rewriteToBoolLiteral(const ObjCMessageExpr *Msg, const Expr *Arg, const NSAPI &NS, Commit &commit) argument
601 rewriteToNumberLiteral(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
787 objectifyExpr(const Expr *E, Commit &commit) argument
820 rewriteToNumericBoxedExpression(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
953 doRewriteToUTF8StringBoxedExpressionHelper( const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
992 rewriteToStringBoxedExpression(const ObjCMessageExpr *Msg, const NSAPI &NS, Commit &commit) argument
[all...]
/external/dnsmasq/contrib/wrt/
H A Dlease_update.sh48 ${NVRAM} commit
/external/dbus/
H A Dautogen.sh16 if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
17 echo "Activating pre-commit hook."
18 cp -av .git/hooks/pre-commit.sample .git/hooks/pre-commit
19 chmod -c +x .git/hooks/pre-commit
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteTransaction.h43 void commit();
H A DSQLiteTransaction.cpp67 void SQLiteTransaction::commit() function in class:WebCore::SQLiteTransaction
101 // the auto-commit flag should be off in the middle of a transaction
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp130 edit::Commit commit(*Consumer.Editor);
131 edit::rewriteToObjCLiteralSyntax(E, *Consumer.NSAPIObj, commit);
132 Consumer.Editor->commit(commit);
136 edit::Commit commit(*Consumer.Editor);
137 edit::rewriteToObjCSubscriptSyntax(E, *Consumer.NSAPIObj, commit);
138 Consumer.Editor->commit(commit);
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dpostdiffforrevert.py36 marking it commit-queue+. The commit-queue will build and test \
/external/clang/lib/Rewrite/Frontend/
H A DFixItRewriter.cpp143 edit::Commit commit(Editor);
150 commit.insertFromRange(Hint.RemoveRange.getBegin(),
154 commit.remove(Hint.RemoveRange);
158 commit.replace(Hint.RemoveRange, Hint.CodeToInsert);
160 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert,
164 bool CanRewrite = Info.getNumFixItHints() > 0 && commit.isCommitable();
178 if (!Editor.commit(commit)) {
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
H A DLdapLoginModuleTest.java94 * Test method for {@link org.apache.harmony.auth.module.LdapLoginModule#commit()}.
103 module.commit();
113 assertFalse("Commit shouldn't be successful", module.commit());
174 module.commit();
197 module.commit();
227 module.commit();
243 module.commit();
259 module.commit();
271 module.commit();
286 module.commit();
[all...]
H A DJndiLoginModuleTest.java95 * {@link org.apache.harmony.auth.module.JndiLoginModule#commit()}.
103 module.commit();
113 assertFalse("Commit shouldn't be successful", module.commit());
175 module.commit();
212 module.commit();
227 module.commit();
246 module.commit();
261 module.commit();
279 module.commit();
/external/llvm/unittests/Support/
H A DFileOutputBufferTest.cpp49 // TEST 1: Verify commit case.
60 ASSERT_NO_ERROR(Buffer->commit());
80 // Do *not* commit buffer.
99 ASSERT_NO_ERROR(Buffer->commit(5000));
122 ASSERT_NO_ERROR(Buffer->commit());
/external/llvm/include/llvm/Support/
H A DFileOutputBuffer.h31 /// the buffer content at the time of the commit. If the FileOutputBuffer is
69 /// buffer. If commit() is not called before this object's destructor
73 error_code commit(int64_t NewSmallerSize = -1);
/external/skia/include/core/
H A DSkBounder.h73 virtual void commit();
/external/webkit/Source/JavaScriptCore/wtf/
H A DOSAllocatorSymbian.cpp97 void OSAllocator::commit(void* address, size_t bytes, bool, bool executable) function in class:WTF::OSAllocator
99 // For code chunks, we commit (early) in reserveUncommitted(), so NOOP
102 dataAllocatorInstance()->commit(address, bytes);
116 commit(base, bytes, writable, executable);
121 // The PageAllocatorSymbian class helps map OSAllocator calls for reserve/commit/decommit
130 // - OSAllocator::commit() actually calls RChunk.commit() and commits *all or part* of the region
177 // Actually commit memory from the OS, after a previous call to reserve()
178 bool PageAllocatorSymbian::commit(void* address, size_t bytes) function in class:WTF::PageAllocatorSymbian
190 // Inverse operation of commit(),
[all...]
H A DPageAllocatorSymbian.h85 bool commit(void*, size_t);
H A DOSAllocator.h51 // These methods are symmetric; they commit or decommit a region of VM (uncommitted VM should
53 // Clients should only call commit on uncommitted regions and decommit on committed regions.
54 static void commit(void*, size_t, bool writable, bool executable);
73 commit(base, commitSize, writable, executable);
H A DPageReservation.h43 Before using memory it must be committed by calling commit, which is passed start
77 void commit(void* start, size_t size) function in class:WTF::PageReservation
85 OSAllocator::commit(start, size, m_writable, m_executable);
/external/v8/tools/
H A Dpush-to-trunk.sh51 -l Manually specify the git commit ID of the last push to trunk.
97 echo ">>> Step $CURRENT_STEP: Detect commit ID of last push to trunk."
101 # Print assumed commit, circumventing git's pager.
103 confirm "Is the commit printed above the last push to trunk?"
116 # These version numbers are used again later for the trunk commit.
124 for commit in $COMMITS ; do
125 # Get the commit's title line.
126 git log -1 $commit --format="%w(80,8,8)%s" >> "$CHANGELOG_ENTRY_FILE"
127 # Grep for "BUG=xxxx" lines in the commit message and convert them to
129 git log -1 $commit
[all...]
/external/webkit/Tools/Scripts/
H A Dwebkit-tools-completion.sh53 __webkit-patch_generate_reply "--help apply-from-bug bugs-to-commit commit-message land land-from-bug obsolete-attachments patches-to-commit post upload tree-status rollout reviewed-patches"
59 __webkit-patch_generate_reply "--force-clean --local-commit --no-clean --no-update"
62 commit-message)
77 __webkit-patch_generate_reply "--description --no-obsolete --no-review --request-commit -m --open-bug"
81 __webkit-patch_generate_reply "--description --no-obsolete --no-review --request-commit --cc -m --open-bug"
93 complete -W "--bug --diff --git-commit --git-index --git-reviewer --help --no-update --no-write --open --update --write -d -h -o" prepare-ChangeLog
/external/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp89 edit::Commit commit(SM, LangOpts);
95 commit.insertFromRange(Hint.RemoveRange.getBegin(),
99 commit.remove(Hint.RemoveRange);
103 commit.replace(Hint.RemoveRange, Hint.CodeToInsert);
105 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert,
111 if (Editor.commit(commit)) {
/external/webkit/Source/WebCore/storage/
H A DIDBTransactionBackendImpl.cpp160 void IDBTransactionBackendImpl::commit() function in class:WebCore::IDBTransactionBackendImpl
163 // commit steps below. We therefore take a self reference to keep ourselves
169 m_transaction->commit();
202 commit();
/external/webkit/Source/WebKit2/PluginProcess/mac/
H A DPluginControllerProxyMac.mm78 [CATransaction commit];

Completed in 1883 milliseconds

12345