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

  /external/chromium_org/chrome/browser/extensions/
data_deleter.cc 112 StorageFrontend* frontend = StorageFrontend::Get(profile); local
113 if (frontend)
114 frontend->DeleteStorageSoon(extension->id());
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_sync_util.cc 117 StorageFrontend* frontend = StorageFrontend::Get(context); local
119 frontend->GetValueStoreCache(settings_namespace::SYNC));
settings_apitest.cc 405 StorageFrontend* frontend = StorageFrontend::Get(browser()->profile()); local
406 EXPECT_TRUE(frontend->IsStorageEnabled(LOCAL));
407 EXPECT_TRUE(frontend->IsStorageEnabled(SYNC));
410 EXPECT_TRUE(frontend->IsStorageEnabled(MANAGED));
412 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED));
573 StorageFrontend* frontend = StorageFrontend::Get(browser()->profile()); local
574 frontend->DisableStorageForTesting(MANAGED);
575 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED));
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLStatementBackend.cpp 74 PassRefPtrWillBeRawPtr<SQLStatementBackend> SQLStatementBackend::create(PassOwnPtrWillBeRawPtr<AbstractSQLStatement> frontend,
77 return adoptRefWillBeNoop(new SQLStatementBackend(frontend, statement, arguments, permissions));
80 SQLStatementBackend::SQLStatementBackend(PassOwnPtrWillBeRawPtr<AbstractSQLStatement> frontend,
82 : m_frontend(frontend)
100 AbstractSQLStatement* SQLStatementBackend::frontend() function in class:WebCore::SQLStatementBackend
  /external/chromium_org/content/browser/appcache/
appcache_group_unittest.cc 92 TestAppCacheHost(int host_id, AppCacheFrontend* frontend,
94 : AppCacheHost(host_id, frontend, service),
182 TestAppCacheFrontend frontend; local
186 AppCacheHost host1(1, &frontend, &service);
187 AppCacheHost host2(2, &frontend, &service);
198 EXPECT_EQ(frontend.last_host_id_, host1.host_id());
199 EXPECT_EQ(frontend.last_cache_id_, cache1->cache_id());
200 EXPECT_EQ(frontend.last_status_, appcache::APPCACHE_STATUS_IDLE);
203 EXPECT_EQ(frontend.last_host_id_, host2.host_id());
204 EXPECT_EQ(frontend.last_cache_id_, cache1->cache_id())
275 TestAppCacheFrontend frontend; local
    [all...]
appcache_unittest.cc 62 MockAppCacheFrontend frontend; local
69 AppCacheHost host1(1, &frontend, &service);
70 AppCacheHost host2(2, &frontend, &service);
appcache_update_job_unittest.cc 363 // Add ability for frontend to add master entries to an inprogress update.
757 MockFrontend* frontend = MakeMockFrontend(); local
758 AppCacheHost* host = MakeHost(1, frontend);
768 frontend->AddExpectedEvent(MockFrontend::HostIds(1, host->host_id()),
827 MockFrontend* frontend = MakeMockFrontend(); local
828 AppCacheHost* host = MakeHost(1, frontend);
836 frontend->AddExpectedEvent(MockFrontend::HostIds(1, host->host_id()),
855 MockFrontend* frontend = MakeMockFrontend(); local
856 AppCacheHost* host = MakeHost(1, frontend);
859 frontend->SetVerifyProgressEvents(true)
928 MockFrontend* frontend = MakeMockFrontend(); local
954 MockFrontend* frontend = MakeMockFrontend(); local
1071 MockFrontend* frontend = MakeMockFrontend(); local
1115 MockFrontend* frontend = MakeMockFrontend(); local
1143 MockFrontend* frontend = MakeMockFrontend(); local
1231 MockFrontend* frontend = MakeMockFrontend(); local
1294 MockFrontend* frontend = MakeMockFrontend(); local
1354 MockFrontend* frontend = MakeMockFrontend(); local
1464 MockFrontend* frontend = MakeMockFrontend(); local
1672 MockFrontend* frontend = MakeMockFrontend(); local
1714 MockFrontend* frontend = MakeMockFrontend(); local
1748 MockFrontend* frontend = MakeMockFrontend(); local
1783 MockFrontend* frontend = MakeMockFrontend(); local
1817 MockFrontend* frontend = MakeMockFrontend(); local
1850 MockFrontend* frontend = MakeMockFrontend(); local
1880 MockFrontend* frontend = MakeMockFrontend(); local
1969 MockFrontend* frontend = MakeMockFrontend(); local
2040 MockFrontend* frontend = MakeMockFrontend(); local
2069 MockFrontend* frontend = MakeMockFrontend(); local
2098 MockFrontend* frontend = MakeMockFrontend(); local
2126 MockFrontend* frontend = MakeMockFrontend(); local
2677 MockFrontend* frontend = MakeMockFrontend(); local
2805 MockFrontend* frontend = MakeMockFrontend(); local
2868 MockFrontend* frontend = MakeMockFrontend(); local
2994 MockFrontend* frontend = MakeMockFrontend(); local
3022 MockFrontend* frontend = MakeMockFrontend(); local
3119 MockFrontend* frontend = new MockFrontend(); local
3186 MockFrontend* frontend = frontends_[i]; local
    [all...]
  /external/chromium_org/extensions/browser/api/storage/
storage_api.cc 50 StorageFrontend* frontend = StorageFrontend::Get(browser_context()); local
51 if (!frontend->IsStorageEnabled(settings_namespace_)) {
57 observers_ = frontend->GetObservers();
58 frontend->RunWithStorage(
  /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()
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_host_impl.h 71 // Create a SyncBackendHost with a reference to the |frontend| that
84 SyncFrontend* frontend,
183 // frontend's sync configure retry method.
186 // Forwards a ProtocolEvent to the frontend. Will not be called unless a
191 // Forwards a directory commit counter update to the frontend loop. Will not
198 // Forwards a directory update counter update to the frontend loop. Will not
205 // Forwards a directory status counter update to the frontend loop. Will not
212 SyncFrontend* frontend() { return frontend_; } function in class:browser_sync::SyncBackendHostImpl
218 // (via the nigori node) and informs the frontend if that is the case.
225 // Called from Core::OnSyncCycleCompleted to handle updating frontend
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pt.c 49 * - frontend -- prepare fetch_elts, draw_elts - eg vsplit
60 struct draw_pt_front_end *frontend = NULL; local
109 frontend = draw->pt.frontend;
111 if (frontend ) {
119 frontend = NULL;
122 * This could be improved so only the frontend is flushed since it
126 frontend->flush( frontend, DRAW_FLUSH_STATE_CHANGE );
127 frontend = NULL
    [all...]
draw_private.h 141 /* Current active frontend */
142 struct draw_pt_front_end *frontend; member in struct:draw_context::__anon17326
  /external/clang/include/clang/Frontend/
LangStandard.h 18 namespace frontend { namespace in namespace:clang
43 #include "clang/Frontend/LangStandards.def"
59 bool hasLineComments() const { return Flags & frontend::LineComment; }
62 bool isC89() const { return Flags & frontend::C89; }
65 bool isC99() const { return Flags & frontend::C99; }
68 bool isC11() const { return Flags & frontend::C11; }
71 bool isCPlusPlus() const { return Flags & frontend::CPlusPlus; }
74 bool isCPlusPlus11() const { return Flags & frontend::CPlusPlus11; }
77 bool isCPlusPlus1y() const { return Flags & frontend::CPlusPlus1y; }
80 bool isCPlusPlus1z() const { return Flags & frontend::CPlusPlus1z;
    [all...]
FrontendOptions.h 13 #include "clang/Frontend/CommandLineSourceLoc.h"
25 namespace frontend { namespace in namespace:clang
44 InitOnly, ///< Only execute frontend initialization.
117 /// FrontendOptions - Options for controlling the behavior of the frontend.
125 unsigned ShowStats : 1; ///< Show frontend performance
213 /// The frontend action to perform.
214 frontend::ActionKind ProgramAction;
251 ProgramAction(frontend::ParseSyntaxOnly)
  /external/clang/include/clang/Lex/
HeaderSearchOptions.h 22 namespace frontend { namespace in namespace:clang
49 frontend::IncludeDirGroup Group;
57 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework,
174 void AddPath(StringRef Path, frontend::IncludeDirGroup Group,
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt.c 49 * - frontend -- prepare fetch_elts, draw_elts - eg vsplit
60 struct draw_pt_front_end *frontend = NULL; local
109 frontend = draw->pt.frontend;
111 if (frontend ) {
119 frontend = NULL;
122 * This could be improved so only the frontend is flushed since it
126 frontend->flush( frontend, DRAW_FLUSH_STATE_CHANGE );
127 frontend = NULL
    [all...]
draw_private.h 141 /* Current active frontend */
142 struct draw_pt_front_end *frontend; member in struct:draw_context::__anon30885
  /external/chromium_org/webkit/browser/appcache/
appcache_host.h 73 AppCacheHost(int host_id, AppCacheFrontend* frontend,
166 AppCacheFrontend* frontend() const { return frontend_; } function in class:appcache::AppCacheHost
178 void CompleteTransfer(int host_id, AppCacheFrontend* frontend);
274 // The frontend proxy to deliver notifications to the child process.
appcache_update_job.cc 40 // Helper class for collecting hosts per frontend when sending notifications
41 // so that only one notification is sent for all hosts using the same frontend.
50 NotifyHostMap::value_type(host->frontend(), HostIds()));
64 AppCacheFrontend* frontend = it->first; local
65 frontend->OnEventRaised(it->second, event_id);
73 AppCacheFrontend* frontend = it->first; local
74 frontend->OnProgressEventRaised(it->second, url,
83 AppCacheFrontend* frontend = it->first; local
84 frontend->OnErrorEventRaised(it->second, details);
91 AppCacheFrontend* frontend = it->first local
    [all...]
  /external/srec/srec/Recognizer/include/
SR_RecognizerImpl.h 173 * Legacy CREC frontend.
175 CA_Frontend* frontend; member in struct:SR_RecognizerImpl_t

Completed in 501 milliseconds