HomeSort by relevance Sort by last modified time
    Searched defs:frontend (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLStatementBackend.cpp 74 PassRefPtr<SQLStatementBackend> SQLStatementBackend::create(PassOwnPtr<AbstractSQLStatement> frontend,
77 return adoptRef(new SQLStatementBackend(frontend, statement, arguments, permissions));
80 SQLStatementBackend::SQLStatementBackend(PassOwnPtr<AbstractSQLStatement> frontend,
82 : m_frontend(frontend)
92 AbstractSQLStatement* SQLStatementBackend::frontend() function in class:WebCore::SQLStatementBackend
  /external/chromium_org/chrome/browser/extensions/api/storage/
storage_api.cc 51 SettingsFrontend* frontend = local
53 if (!frontend->IsStorageEnabled(settings_namespace_)) {
60 observers_ = frontend->GetObservers();
61 frontend->RunWithStorage(
settings_apitest.cc 445 SettingsFrontend* frontend = local
447 EXPECT_TRUE(frontend->IsStorageEnabled(LOCAL));
448 EXPECT_TRUE(frontend->IsStorageEnabled(SYNC));
451 EXPECT_TRUE(frontend->IsStorageEnabled(MANAGED));
453 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED));
615 SettingsFrontend* frontend = local
617 frontend->DisableStorageForTesting(MANAGED);
618 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED));
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_host_impl.h 67 // Create a SyncBackendHost with a reference to the |frontend| that
79 SyncFrontend* frontend,
164 // frontend's sync configure retry method.
167 SyncFrontend* frontend() { return frontend_; } function in class:browser_sync::SyncBackendHostImpl
173 // (via the nigori node) and informs the frontend if that is the case.
180 // Called from Core::OnSyncCycleCompleted to handle updating frontend
215 // cached by the frontend. If there are no pending keys, or if the passphrase
245 // frontend UI components.
285 // The frontend which we serve (and are owned by).
  /external/chromium_org/webkit/browser/appcache/
appcache_group_unittest.cc 85 TestAppCacheHost(int host_id, AppCacheFrontend* frontend,
87 : AppCacheHost(host_id, frontend, service),
175 TestAppCacheFrontend frontend; local
179 AppCacheHost host1(1, &frontend, &service);
180 AppCacheHost host2(2, &frontend, &service);
191 EXPECT_EQ(frontend.last_host_id_, host1.host_id());
192 EXPECT_EQ(frontend.last_cache_id_, cache1->cache_id());
193 EXPECT_EQ(frontend.last_status_, appcache::IDLE);
196 EXPECT_EQ(frontend.last_host_id_, host2.host_id());
197 EXPECT_EQ(frontend.last_cache_id_, cache1->cache_id())
268 TestAppCacheFrontend frontend; local
    [all...]
appcache_unittest.cc 41 MockAppCacheFrontend frontend; local
48 AppCacheHost host1(1, &frontend, &service);
49 AppCacheHost host2(2, &frontend, &service);
appcache_host.h 52 AppCacheHost(int host_id, AppCacheFrontend* frontend,
145 AppCacheFrontend* frontend() const { return frontend_; } function in class:appcache::AppCacheHost
157 void CompleteTransfer(int host_id, AppCacheFrontend* frontend);
248 // The frontend proxy to deliver notifications to the child process.
appcache_update_job.cc 29 // Helper class for collecting hosts per frontend when sending notifications
30 // so that only one notification is sent for all hosts using the same frontend.
39 NotifyHostMap::value_type(host->frontend(), HostIds()));
53 AppCacheFrontend* frontend = it->first; local
54 frontend->OnEventRaised(it->second, event_id);
62 AppCacheFrontend* frontend = it->first; local
63 frontend->OnProgressEventRaised(it->second, url,
72 AppCacheFrontend* frontend = it->first; local
73 frontend->OnErrorEventRaised(it->second, error_message);
792 host->frontend()->OnEventRaised(ids, event_id)
    [all...]
appcache_update_job_unittest.cc 336 // Add ability for frontend to add master entries to an inprogress update.
730 MockFrontend* frontend = MakeMockFrontend(); local
731 AppCacheHost* host = MakeHost(1, frontend);
741 frontend->AddExpectedEvent(MockFrontend::HostIds(1, host->host_id()),
800 MockFrontend* frontend = MakeMockFrontend(); local
801 AppCacheHost* host = MakeHost(1, frontend);
809 frontend->AddExpectedEvent(MockFrontend::HostIds(1, host->host_id()),
828 MockFrontend* frontend = MakeMockFrontend(); local
829 AppCacheHost* host = MakeHost(1, frontend);
832 frontend->SetVerifyProgressEvents(true)
901 MockFrontend* frontend = MakeMockFrontend(); local
927 MockFrontend* frontend = MakeMockFrontend(); local
1044 MockFrontend* frontend = MakeMockFrontend(); local
1088 MockFrontend* frontend = MakeMockFrontend(); local
1116 MockFrontend* frontend = MakeMockFrontend(); local
1204 MockFrontend* frontend = MakeMockFrontend(); local
1267 MockFrontend* frontend = MakeMockFrontend(); local
1327 MockFrontend* frontend = MakeMockFrontend(); local
1437 MockFrontend* frontend = MakeMockFrontend(); local
1645 MockFrontend* frontend = MakeMockFrontend(); local
1687 MockFrontend* frontend = MakeMockFrontend(); local
1721 MockFrontend* frontend = MakeMockFrontend(); local
1756 MockFrontend* frontend = MakeMockFrontend(); local
1790 MockFrontend* frontend = MakeMockFrontend(); local
1823 MockFrontend* frontend = MakeMockFrontend(); local
1853 MockFrontend* frontend = MakeMockFrontend(); local
1942 MockFrontend* frontend = MakeMockFrontend(); local
2013 MockFrontend* frontend = MakeMockFrontend(); local
2042 MockFrontend* frontend = MakeMockFrontend(); local
2071 MockFrontend* frontend = MakeMockFrontend(); local
2099 MockFrontend* frontend = MakeMockFrontend(); local
2650 MockFrontend* frontend = MakeMockFrontend(); local
2777 MockFrontend* frontend = MakeMockFrontend(); local
2840 MockFrontend* frontend = MakeMockFrontend(); local
2966 MockFrontend* frontend = MakeMockFrontend(); local
2994 MockFrontend* frontend = MakeMockFrontend(); local
3091 MockFrontend* frontend = new MockFrontend(); local
3158 MockFrontend* frontend = frontends_[i]; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
check.py 15 from docutils import frontend namespace
129 settings = frontend.OptionParser().get_default_values()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
check.py 15 from docutils import frontend namespace
129 settings = frontend.OptionParser().get_default_values()