Searched refs:frontend (Results 1 - 25 of 89) sorted by relevance

1234

/external/clang/include/clang/Frontend/
H A DLangStandard.h18 namespace frontend { namespace in namespace:clang
58 bool hasLineComments() const { return Flags & frontend::LineComment; }
61 bool isC89() const { return Flags & frontend::C89; }
64 bool isC99() const { return Flags & frontend::C99; }
67 bool isC11() const { return Flags & frontend::C11; }
70 bool isCPlusPlus() const { return Flags & frontend::CPlusPlus; }
73 bool isCPlusPlus11() const { return Flags & frontend::CPlusPlus11; }
76 bool isCPlusPlus1y() const { return Flags & frontend::CPlusPlus1y; }
79 bool hasDigraphs() const { return Flags & frontend::Digraphs; }
82 bool isGNUMode() const { return Flags & frontend
[all...]
H A DFrontendOptions.h25 namespace frontend { namespace in namespace:clang
45 InitOnly, ///< Only execute frontend initialization.
117 /// FrontendOptions - Options for controlling the behavior of the frontend.
125 unsigned ShowStats : 1; ///< Show frontend performance
186 /// The frontend action to perform.
187 frontend::ActionKind ProgramAction;
224 ProgramAction(frontend::ParseSyntaxOnly)
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dlast_active_browser_cocoa.h12 // the Cocoa frontend that cannot be allowed via C++ friendship as these places
16 #error This file is intended for use in the Cocoa frontend only.
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorMemoryAgent.cpp56 void InspectorMemoryAgent::setFrontend(InspectorFrontend* frontend) argument
59 m_frontend = frontend->memory();
H A DInspectorDatabaseResource.cpp55 void InspectorDatabaseResource::bind(InspectorFrontend::Database* frontend) argument
62 frontend->addDatabase(jsonObject);
H A DInspectorBaseAgent.cpp55 void InspectorAgentRegistry::setFrontend(InspectorFrontend* frontend) argument
58 m_agents[i]->setFrontend(frontend);
H A DInspectorWorkerAgent.cpp55 explicit WorkerFrontendChannel(InspectorFrontend* frontend, WorkerGlobalScopeProxy* proxy) argument
56 : m_frontend(frontend)
125 void InspectorWorkerAgent::setFrontend(InspectorFrontend* frontend) argument
127 m_inspectorFrontend = frontend;
H A DInspectorHeapProfilerAgent.cpp96 void InspectorHeapProfilerAgent::setFrontend(InspectorFrontend* frontend) argument
98 m_frontend = frontend->heapprofiler();
227 OutputStream(InspectorFrontend::HeapProfiler* frontend, unsigned uid) argument
228 : m_frontend(frontend), m_uid(uid) { }
260 explicit HeapSnapshotProgress(InspectorFrontend::HeapProfiler* frontend) argument
261 : m_frontend(frontend) { }
/external/chromium_org/webkit/browser/appcache/
H A Dappcache_group_unittest.cc85 TestAppCacheHost(int host_id, AppCacheFrontend* frontend, argument
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
268 TestAppCacheFrontend frontend; local
[all...]
H A Dappcache_update_job_unittest.cc336 // 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
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
3072 MakeHost(int host_id, AppCacheFrontend* frontend) argument
3091 MockFrontend* frontend = new MockFrontend(); local
3158 MockFrontend* frontend = frontends_[i]; local
[all...]
H A Dappcache_backend_impl.cc27 AppCacheFrontend* frontend,
29 DCHECK(!service_ && !frontend_ && frontend && service);
31 frontend_ = frontend;
26 Initialize(AppCacheService* service, AppCacheFrontend* frontend, int process_id) argument
/external/clang/include/clang/Lex/
H A DHeaderSearchOptions.h22 namespace frontend { namespace in namespace:clang
49 frontend::IncludeDirGroup Group;
57 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework,
148 void AddPath(StringRef Path, frontend::IncludeDirGroup Group,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pt.c49 * - 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
[all...]
H A Ddraw_pt_vsplit.c146 static void vsplit_prepare(struct draw_pt_front_end *frontend, argument
151 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend;
181 static void vsplit_flush(struct draw_pt_front_end *frontend, unsigned flags) argument
183 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend;
192 static void vsplit_destroy(struct draw_pt_front_end *frontend) argument
194 FREE(frontend);
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt.c49 * - 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
[all...]
H A Ddraw_pt_vsplit.c146 static void vsplit_prepare(struct draw_pt_front_end *frontend, argument
151 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend;
181 static void vsplit_flush(struct draw_pt_front_end *frontend, unsigned flags) argument
183 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend;
192 static void vsplit_destroy(struct draw_pt_front_end *frontend) argument
194 FREE(frontend);
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp632 Opts.ProgramAction = frontend::ParseSyntaxOnly;
638 Opts.ProgramAction = frontend::ASTDeclList; break;
640 Opts.ProgramAction = frontend::ASTDump; break;
642 Opts.ProgramAction = frontend::ASTDumpXML; break;
644 Opts.ProgramAction = frontend::ASTPrint; break;
646 Opts.ProgramAction = frontend::ASTView; break;
648 Opts.ProgramAction = frontend::DumpRawTokens; break;
650 Opts.ProgramAction = frontend::DumpTokens; break;
652 Opts.ProgramAction = frontend::EmitAssembly; break;
654 Opts.ProgramAction = frontend
[all...]
H A DLangStandards.cpp14 using namespace clang::frontend;
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLStatementBackend.cpp74 PassRefPtr<SQLStatementBackend> SQLStatementBackend::create(PassOwnPtr<AbstractSQLStatement> frontend, argument
77 return adoptRef(new SQLStatementBackend(frontend, statement, arguments, permissions));
80 SQLStatementBackend::SQLStatementBackend(PassOwnPtr<AbstractSQLStatement> frontend, argument
82 : m_frontend(frontend)
92 AbstractSQLStatement* SQLStatementBackend::frontend() function in class:WebCore::SQLStatementBackend
H A DSQLStatementBackend.h58 AbstractSQLStatement* frontend();
/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dsettings_test_util.cc25 SettingsFrontend* frontend) {
27 frontend->RunWithStorage(
36 const std::string& extension_id, SettingsFrontend* frontend) {
37 return GetStorage(extension_id, settings_namespace::SYNC, frontend);
22 GetStorage( const std::string& extension_id, settings_namespace::Namespace settings_namespace, SettingsFrontend* frontend) argument
35 GetStorage( const std::string& extension_id, SettingsFrontend* frontend) argument
H A Dsettings_test_util.h32 // Synchronously gets the storage area for an extension from |frontend|.
36 SettingsFrontend* frontend);
38 // Synchronously gets the SYNC storage for an extension from |frontend|.
41 SettingsFrontend* frontend);
/external/chromium_org/content/child/appcache/
H A Dappcache_dispatcher.h25 appcache::AppCacheFrontend* frontend);
H A Dappcache_dispatcher.cc13 appcache::AppCacheFrontend* frontend)
15 frontend_(frontend) {}
11 AppCacheDispatcher( IPC::Sender* sender, appcache::AppCacheFrontend* frontend) argument
/external/chromium_org/chrome/browser/sync/glue/
H A Dsync_backend_host_mock.cc15 SyncFrontend* frontend,
26 frontend->OnBackendInitialized(
14 Initialize( SyncFrontend* frontend, scoped_ptr<base::Thread> sync_thread, const syncer::WeakHandle<syncer::JsEventHandler>& event_handler, const GURL& service_url, const syncer::SyncCredentials& credentials, bool delete_sync_data_folder, scoped_ptr<syncer::SyncManagerFactory> sync_manager_factory, scoped_ptr<syncer::UnrecoverableErrorHandler> unrecoverable_error_handler, syncer::ReportUnrecoverableErrorFunction report_unrecoverable_error_function, syncer::NetworkResources* network_resources) argument

Completed in 923 milliseconds

1234