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

  /external/chromium_org/chrome/browser/extensions/
data_deleter.cc 116 StorageFrontend* frontend = StorageFrontend::Get(profile); local
117 if (frontend)
118 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 406 StorageFrontend* frontend = StorageFrontend::Get(browser()->profile()); local
407 EXPECT_TRUE(frontend->IsStorageEnabled(LOCAL));
408 EXPECT_TRUE(frontend->IsStorageEnabled(SYNC));
411 EXPECT_TRUE(frontend->IsStorageEnabled(MANAGED));
413 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED));
574 StorageFrontend* frontend = StorageFrontend::Get(browser()->profile()); local
575 frontend->DisableStorageForTesting(MANAGED);
576 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED));
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLStatementBackend.cpp 74 PassRefPtrWillBeRawPtr<SQLStatementBackend> SQLStatementBackend::create(PassOwnPtrWillBeRawPtr<SQLStatement> frontend,
77 return adoptRefWillBeNoop(new SQLStatementBackend(frontend, statement, arguments, permissions));
80 SQLStatementBackend::SQLStatementBackend(PassOwnPtrWillBeRawPtr<SQLStatement> frontend,
82 : m_frontend(frontend)
99 SQLStatement* SQLStatementBackend::frontend() function in class:blink::SQLStatementBackend
  /external/chromium_org/content/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_STATUS_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 42 MockAppCacheFrontend frontend; local
49 AppCacheHost host1(1, &frontend, &service);
50 AppCacheHost host2(2, &frontend, &service);
appcache_host.h 69 AppCacheHost(int host_id, AppCacheFrontend* frontend,
163 AppCacheFrontend* frontend() const { return frontend_; } function in class:content::AppCacheHost
175 void CompleteTransfer(int host_id, AppCacheFrontend* frontend);
271 // The frontend proxy to deliver notifications to the child process.
appcache_update_job.cc 50 // Helper class for collecting hosts per frontend when sending notifications
51 // so that only one notification is sent for all hosts using the same frontend.
60 NotifyHostMap::value_type(host->frontend(), HostIds()));
74 AppCacheFrontend* frontend = it->first; local
75 frontend->OnEventRaised(it->second, event_id);
83 AppCacheFrontend* frontend = it->first; local
84 frontend->OnProgressEventRaised(it->second, url,
93 AppCacheFrontend* frontend = it->first; local
94 frontend->OnErrorEventRaised(it->second, details);
101 AppCacheFrontend* frontend = it->first local
    [all...]
appcache_update_job_unittest.cc 339 // Add ability for frontend to add master entries to an inprogress update.
733 MockFrontend* frontend = MakeMockFrontend(); local
734 AppCacheHost* host = MakeHost(1, frontend);
744 frontend->AddExpectedEvent(MockFrontend::HostIds(1, host->host_id()),
803 MockFrontend* frontend = MakeMockFrontend(); local
804 AppCacheHost* host = MakeHost(1, frontend);
812 frontend->AddExpectedEvent(MockFrontend::HostIds(1, host->host_id()),
831 MockFrontend* frontend = MakeMockFrontend(); local
832 AppCacheHost* host = MakeHost(1, frontend);
835 frontend->SetVerifyProgressEvents(true)
904 MockFrontend* frontend = MakeMockFrontend(); local
930 MockFrontend* frontend = MakeMockFrontend(); local
1047 MockFrontend* frontend = MakeMockFrontend(); local
1091 MockFrontend* frontend = MakeMockFrontend(); local
1119 MockFrontend* frontend = MakeMockFrontend(); local
1207 MockFrontend* frontend = MakeMockFrontend(); local
1270 MockFrontend* frontend = MakeMockFrontend(); local
1330 MockFrontend* frontend = MakeMockFrontend(); local
1440 MockFrontend* frontend = MakeMockFrontend(); local
1648 MockFrontend* frontend = MakeMockFrontend(); local
1690 MockFrontend* frontend = MakeMockFrontend(); local
1724 MockFrontend* frontend = MakeMockFrontend(); local
1759 MockFrontend* frontend = MakeMockFrontend(); local
1793 MockFrontend* frontend = MakeMockFrontend(); local
1826 MockFrontend* frontend = MakeMockFrontend(); local
1856 MockFrontend* frontend = MakeMockFrontend(); local
1945 MockFrontend* frontend = MakeMockFrontend(); local
2016 MockFrontend* frontend = MakeMockFrontend(); local
2045 MockFrontend* frontend = MakeMockFrontend(); local
2074 MockFrontend* frontend = MakeMockFrontend(); local
2102 MockFrontend* frontend = MakeMockFrontend(); local
2653 MockFrontend* frontend = MakeMockFrontend(); local
2781 MockFrontend* frontend = MakeMockFrontend(); local
2844 MockFrontend* frontend = MakeMockFrontend(); local
2970 MockFrontend* frontend = MakeMockFrontend(); local
2998 MockFrontend* frontend = MakeMockFrontend(); local
3095 MockFrontend* frontend = new MockFrontend(); local
3162 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 70 // Create a SyncBackendHost with a reference to the |frontend| that
83 sync_driver::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 sync_driver::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::__anon18331
  /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::__anon10815
  /external/srec/srec/Recognizer/include/
SR_RecognizerImpl.h 173 * Legacy CREC frontend.
175 CA_Frontend* frontend; member in struct:SR_RecognizerImpl_t
  /prebuilts/sdk/tools/
jill.jar 
jack.jar 

Completed in 871 milliseconds