HomeSort by relevance Sort by last modified time
    Searched defs:Commit (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/chromium/app/sql/
transaction.cc 41 bool Transaction::Commit() {
43 NOTREACHED() << "Attempting to commit a nonexistent transaction. "
  /external/chromium_org/sql/
transaction.cc 41 bool Transaction::Commit() {
43 NOTREACHED() << "Attempting to commit a nonexistent transaction. "
  /external/chromium_org/chrome/installer/test/
resource_updater.cc 57 bool ResourceUpdater::Commit() {
  /external/chromium_org/chrome_frame/
stream_impl.cc 52 STDMETHODIMP StreamImpl::Commit(DWORD flags) {
55 hr = delegate_->Commit(flags);
  /external/chromium_org/components/webdata/common/
web_data_service_backend.cc 90 Commit();
117 void WebDataServiceBackend::Commit() {
122 NOTREACHED() << "Commit scheduled after Shutdown()";
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
__init__.py 33 from webkitpy.tool.steps.commit import Commit
commit.py 42 class Commit(AbstractStep):
51 'Everything will be committed as a single commit. '
52 'To avoid this prompt, set "git config webkit-patch.commit-should-always-squash true".' % (
73 raise Exception("Attempted to commit with a commit message shorter than 10 characters. Either your patch is missing a ChangeLog or webkit-patch may have a bug.")
97 # This will correctly interrupt the rest of the commit process.
98 raise ScriptError(message="Did not commit")
104 raise ScriptError("You need to specify the username on %s to perform the commit as." % e.server_host)
108 raise ScriptError("You need to specify the password for %s on %s to perform the commit." % (username, e.server_host))
commit_unittest.py 35 from webkitpy.tool.steps.commit import Commit
47 step = Commit(tool, options)
  /external/chromium_org/content/browser/indexed_db/
indexed_db_transaction.cc 193 void IndexedDBTransaction::Commit() {
194 IDB_TRACE("IndexedDBTransaction::Commit");
196 // In multiprocess ports, front-end may have requested a commit but
205 // Front-end has requested a commit, but there may be tasks like
212 // commit steps below. We therefore take a self reference to keep ourselves
216 // TODO(jsbell): Run abort tasks if commit fails? http://crbug.com/241843
222 bool committed = unused || transaction_.Commit();
284 // and the front-end requested a commit, it is now safe to do so.
286 Commit();
  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.h 130 void Commit() { rollback_ = false; }
  /external/chromium_org/chrome/browser/chromeos/display/
overscan_calibrator.cc 92 // Overscan calibration has finished without commit, so the display has to
100 void OverscanCalibrator::Commit() {
  /external/chromium_org/chrome/tools/build/win/
resedit.py 224 def Commit(self):
225 """Commit any successful resource edits this editor has performed.
316 editor.Commit()
  /external/chromium_org/third_party/libjingle/source/talk/base/
diskcache.h 130 void Commit() { rollback_ = false; }
  /external/chromium_org/third_party/skia/src/utils/win/
SkIStream.cpp 74 HRESULT STDMETHODCALLTYPE SkBaseIStream::Commit(DWORD)
253 HRESULT STDMETHODCALLTYPE SkWIStream::Commit(DWORD) {
  /external/clang/include/clang/Edit/
Commit.h 1 //===----- Commit.h - A unit of edits ---------------------------*- C++ -*-===//
25 class Commit {
59 explicit Commit(EditedSource &Editor);
60 Commit(const SourceManager &SM, const LangOptions &LangOpts,
  /external/clang/lib/Edit/
Commit.cpp 1 //===----- Commit.cpp - A unit of edits -----------------------------------===//
10 #include "clang/Edit/Commit.h"
19 SourceLocation Commit::Edit::getFileLocation(SourceManager &SM) const {
26 CharSourceRange Commit::Edit::getFileRange(SourceManager &SM) const {
31 CharSourceRange Commit::Edit::getInsertFromRange(SourceManager &SM) const {
38 Commit::Commit(EditedSource &Editor)
43 bool Commit::insert(SourceLocation loc, StringRef text,
59 bool Commit::insertFromRange(SourceLocation loc,
86 bool Commit::remove(CharSourceRange range)
    [all...]
  /external/skia/src/utils/win/
SkIStream.cpp 74 HRESULT STDMETHODCALLTYPE SkBaseIStream::Commit(DWORD)
253 HRESULT STDMETHODCALLTYPE SkWIStream::Commit(DWORD) {
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 79 // Commit pending operations as soon as possible.
82 // Commit any pending operations and close the database. This must be called
129 // Commit our pending operations to the database.
131 void Commit(Task* completion_task);
133 void Commit();
151 // Number of cookies that have actually been saved. Updated during Commit().
312 transaction.Commit();
346 transaction.Commit();
377 // Commit every 30 seconds.
379 // Commit right away if we have more than 512 outstanding operations
    [all...]
  /external/chromium/chrome/common/
sqlite_utils.h 53 // goes out of scope if the caller has not already called Commit or Rollback.
81 int Commit() {
82 return EndCommand("COMMIT");
  /external/chromium_org/chrome/browser/net/
sqlite_server_bound_cert_store.cc 58 // Commit any pending operations and close the database. This must be called
107 // Commit our pending operations to the database.
108 void Commit();
313 transaction.Commit();
392 transaction.Commit();
454 // Commit every 30 seconds.
456 // Commit right away if we have more than 512 outstanding operations.
473 base::Bind(&Backend::Commit, this),
476 // We've reached a big enough batch, fire off a commit now.
479 base::Bind(&Backend::Commit, this))
    [all...]
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_transaction.cc 95 bool LevelDBTransaction::Commit() {
465 bool LevelDBWriteOnlyTransaction::Commit() {
  /external/chromium_org/content/browser/media/
webrtc_identity_store_backend.cc 159 void Commit();
165 // Batched DB operations pending to commit.
383 Commit();
429 // Commit every 30 seconds.
432 // Commit right away if we have more than 512 outstanding operations.
445 base::Bind(&SqlLiteStorage::Commit, this),
448 // We've reached a big enough batch, fire off a commit now.
451 base::Bind(&SqlLiteStorage::Commit, this));
455 void WebRTCIdentityStoreBackend::SqlLiteStorage::Commit() {
512 transaction.Commit();
    [all...]
  /external/chromium_org/webkit/browser/quota/
quota_database.cc 393 void QuotaDatabase::Commit() {
408 this, &QuotaDatabase::Commit);
550 return transaction.Commit();
585 Commit();
  /external/chromium_org/chrome/browser/history/android/
android_provider_backend.cc 150 transaction.Commit();
169 transaction.Commit();
182 transaction.Commit();
201 transaction.Commit();
218 transaction.Commit();
242 // Commit all existing transactions since the AndroidProviderBackend's
244 // The existing transactions have been scheduled to commit by
247 // issue to directly commit all transactions here.
282 void AndroidProviderBackend::ScopedTransaction::Commit() {
    [all...]
  /external/chromium_org/v8/src/
platform-cygwin.cc 247 // This causes VirtualMemory::Commit to not always commit the memory region
347 bool VirtualMemory::Commit(void* address, size_t size, bool is_executable) {

Completed in 897 milliseconds

1 2 3 4