Home
last modified time | relevance | path

Searched refs:frontend (Results 1 – 25 of 127) sorted by relevance

123456

/external/clang/include/clang/Frontend/
DLangStandard.h18 namespace frontend {
59 bool hasLineComments() const { return Flags & frontend::LineComment; } in hasLineComments()
62 bool isC89() const { return Flags & frontend::C89; } in isC89()
65 bool isC99() const { return Flags & frontend::C99; } in isC99()
68 bool isC11() const { return Flags & frontend::C11; } in isC11()
71 bool isCPlusPlus() const { return Flags & frontend::CPlusPlus; } in isCPlusPlus()
74 bool isCPlusPlus11() const { return Flags & frontend::CPlusPlus11; } in isCPlusPlus11()
77 bool isCPlusPlus1y() const { return Flags & frontend::CPlusPlus1y; } in isCPlusPlus1y()
80 bool isCPlusPlus1z() const { return Flags & frontend::CPlusPlus1z; } in isCPlusPlus1z()
83 bool hasDigraphs() const { return Flags & frontend::Digraphs; } in hasDigraphs()
[all …]
DFrontendOptions.h25 namespace frontend {
214 frontend::ActionKind ProgramAction;
251 ProgramAction(frontend::ParseSyntaxOnly) in FrontendOptions()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
Ddraw_pt.c60 struct draw_pt_front_end *frontend = NULL; in draw_pt_arrays() local
109 frontend = draw->pt.frontend; in draw_pt_arrays()
111 if (frontend ) { in draw_pt_arrays()
119 frontend = NULL; in draw_pt_arrays()
126 frontend->flush( frontend, DRAW_FLUSH_STATE_CHANGE ); in draw_pt_arrays()
127 frontend = NULL; in draw_pt_arrays()
131 if (!frontend) { in draw_pt_arrays()
132 frontend = draw->pt.front.vsplit; in draw_pt_arrays()
134 frontend->prepare( frontend, prim, middle, opt ); in draw_pt_arrays()
136 draw->pt.frontend = frontend; in draw_pt_arrays()
[all …]
Ddraw_pt_vsplit.c146 static void vsplit_prepare(struct draw_pt_front_end *frontend, in vsplit_prepare() argument
151 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; in vsplit_prepare()
181 static void vsplit_flush(struct draw_pt_front_end *frontend, unsigned flags) in vsplit_flush() argument
183 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; in vsplit_flush()
192 static void vsplit_destroy(struct draw_pt_front_end *frontend) in vsplit_destroy() argument
194 FREE(frontend); in vsplit_destroy()
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pt.c60 struct draw_pt_front_end *frontend = NULL; in draw_pt_arrays() local
109 frontend = draw->pt.frontend; in draw_pt_arrays()
111 if (frontend ) { in draw_pt_arrays()
119 frontend = NULL; in draw_pt_arrays()
126 frontend->flush( frontend, DRAW_FLUSH_STATE_CHANGE ); in draw_pt_arrays()
127 frontend = NULL; in draw_pt_arrays()
131 if (!frontend) { in draw_pt_arrays()
132 frontend = draw->pt.front.vsplit; in draw_pt_arrays()
134 frontend->prepare( frontend, prim, middle, opt ); in draw_pt_arrays()
136 draw->pt.frontend = frontend; in draw_pt_arrays()
[all …]
Ddraw_pt_vsplit.c146 static void vsplit_prepare(struct draw_pt_front_end *frontend, in vsplit_prepare() argument
151 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; in vsplit_prepare()
181 static void vsplit_flush(struct draw_pt_front_end *frontend, unsigned flags) in vsplit_flush() argument
183 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; in vsplit_flush()
192 static void vsplit_destroy(struct draw_pt_front_end *frontend) in vsplit_destroy() argument
194 FREE(frontend); in vsplit_destroy()
/external/chromium_org/content/browser/appcache/
Dappcache_group_unittest.cc85 TestAppCacheHost(int host_id, AppCacheFrontend* frontend, in TestAppCacheHost() argument
87 : AppCacheHost(host_id, frontend, service), in TestAppCacheHost()
175 TestAppCacheFrontend frontend; in TEST_F() local
179 AppCacheHost host1(1, &frontend, &service); in TEST_F()
180 AppCacheHost host2(2, &frontend, &service); in TEST_F()
191 EXPECT_EQ(frontend.last_host_id_, host1.host_id()); in TEST_F()
192 EXPECT_EQ(frontend.last_cache_id_, cache1->cache_id()); in TEST_F()
193 EXPECT_EQ(frontend.last_status_, APPCACHE_STATUS_IDLE); in TEST_F()
196 EXPECT_EQ(frontend.last_host_id_, host2.host_id()); in TEST_F()
197 EXPECT_EQ(frontend.last_cache_id_, cache1->cache_id()); in TEST_F()
[all …]
Dappcache_update_job_unittest.cc733 MockFrontend* frontend = MakeMockFrontend(); in CacheAttemptFetchManifestFailTest() local
734 AppCacheHost* host = MakeHost(1, frontend); in CacheAttemptFetchManifestFailTest()
744 frontend->AddExpectedEvent(MockFrontend::HostIds(1, host->host_id()), in CacheAttemptFetchManifestFailTest()
803 MockFrontend* frontend = MakeMockFrontend(); in ManifestRedirectTest() local
804 AppCacheHost* host = MakeHost(1, frontend); in ManifestRedirectTest()
812 frontend->AddExpectedEvent(MockFrontend::HostIds(1, host->host_id()), in ManifestRedirectTest()
831 MockFrontend* frontend = MakeMockFrontend(); in ManifestMissingMimeTypeTest() local
832 AppCacheHost* host = MakeHost(1, frontend); in ManifestMissingMimeTypeTest()
835 frontend->SetVerifyProgressEvents(true); in ManifestMissingMimeTypeTest()
848 frontend->AddExpectedEvent(ids, APPCACHE_CHECKING_EVENT); in ManifestMissingMimeTypeTest()
[all …]
Dappcache_backend_impl.cc27 AppCacheFrontend* frontend, in Initialize() argument
29 DCHECK(!service_ && !frontend_ && frontend && service); in Initialize()
31 frontend_ = frontend; in Initialize()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp714 Opts.ProgramAction = frontend::ParseSyntaxOnly; in ParseFrontendArgs()
720 Opts.ProgramAction = frontend::ASTDeclList; break; in ParseFrontendArgs()
722 Opts.ProgramAction = frontend::ASTDump; break; in ParseFrontendArgs()
724 Opts.ProgramAction = frontend::ASTPrint; break; in ParseFrontendArgs()
726 Opts.ProgramAction = frontend::ASTView; break; in ParseFrontendArgs()
728 Opts.ProgramAction = frontend::DumpRawTokens; break; in ParseFrontendArgs()
730 Opts.ProgramAction = frontend::DumpTokens; break; in ParseFrontendArgs()
732 Opts.ProgramAction = frontend::EmitAssembly; break; in ParseFrontendArgs()
734 Opts.ProgramAction = frontend::EmitBC; break; in ParseFrontendArgs()
736 Opts.ProgramAction = frontend::EmitHTML; break; in ParseFrontendArgs()
[all …]
/external/clang/include/clang/Lex/
DHeaderSearchOptions.h22 namespace frontend {
49 frontend::IncludeDirGroup Group;
57 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework, in Entry()
174 void AddPath(StringRef Path, frontend::IncludeDirGroup Group, in AddPath()
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DSQLStatementBackend.cpp74 …Ptr<SQLStatementBackend> SQLStatementBackend::create(PassOwnPtrWillBeRawPtr<SQLStatement> frontend, in create() argument
77 return adoptRefWillBeNoop(new SQLStatementBackend(frontend, statement, arguments, permissions)); in create()
80 SQLStatementBackend::SQLStatementBackend(PassOwnPtrWillBeRawPtr<SQLStatement> frontend, in SQLStatementBackend() argument
82 : m_frontend(frontend) in SQLStatementBackend()
99 SQLStatement* SQLStatementBackend::frontend() in frontend() function in blink::SQLStatementBackend
DInspectorDatabaseResource.cpp59 void InspectorDatabaseResource::bind(InspectorFrontend::Database* frontend) in bind() argument
66 frontend->addDatabase(jsonObject); in bind()
DSQLTransactionBackend.cpp343 PassRefPtrWillBeRawPtr<SQLTransaction> frontend, in create() argument
347 return adoptRefWillBeNoop(new SQLTransactionBackend(db, frontend, wrapper, readOnly)); in create()
351 PassRefPtrWillBeRawPtr<SQLTransaction> frontend, in SQLTransactionBackend() argument
354 : m_frontend(frontend) in SQLTransactionBackend()
437 return m_currentStatementBackend->frontend(); in currentStatement()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorHeapProfilerAgent.cpp81 void InspectorHeapProfilerAgent::setFrontend(InspectorFrontend* frontend) in setFrontend() argument
83 m_frontend = frontend->heapprofiler(); in setFrontend()
226 explicit HeapSnapshotProgress(InspectorFrontend::HeapProfiler* frontend) in takeHeapSnapshot() argument
227 : m_frontend(frontend) { } in takeHeapSnapshot()
263 explicit OutputStream(InspectorFrontend::HeapProfiler* frontend) in takeHeapSnapshot() argument
264 : m_frontend(frontend) { } in takeHeapSnapshot()
DInspectorMemoryAgent.cpp56 void InspectorMemoryAgent::setFrontend(InspectorFrontend* frontend) in setFrontend() argument
59 m_frontend = frontend->memory(); in setFrontend()
DInspectorWorkerAgent.cpp56 explicit WorkerFrontendChannel(InspectorFrontend::Worker* frontend, WorkerInspectorProxy* proxy) in WorkerFrontendChannel() argument
57 : m_frontend(frontend) in WorkerFrontendChannel()
133 void InspectorWorkerAgent::setFrontend(InspectorFrontend* frontend) in setFrontend() argument
135 m_frontend = frontend->worker(); in setFrontend()
DInspectorTracingAgent.cpp80 void InspectorTracingAgent::setFrontend(InspectorFrontend* frontend) in setFrontend() argument
82 m_frontend = frontend->tracing(); in setFrontend()
/external/clang/docs/
DFAQ.rst35 ``clang -cc1`` is the frontend, ``clang`` is the :doc:`driver
36 <DriverInternals>`. The driver invokes the frontend with options appropriate
43 Some clang command line options are driver-only options, some are frontend-only
48 If you want to use a frontend-only option ("a ``-cc1`` option"), for example
/external/chromium_org/chrome/browser/extensions/
Ddata_deleter.cc116 StorageFrontend* frontend = StorageFrontend::Get(profile); in StartDeleting() local
117 if (frontend) in StartDeleting()
118 frontend->DeleteStorageSoon(extension->id()); in StartDeleting()
/external/chromium_org/extensions/browser/api/storage/
Dsettings_test_util.cc44 StorageFrontend* frontend) { in GetStorage() argument
46 frontend->RunWithStorage( in GetStorage()
53 StorageFrontend* frontend) { in GetStorage() argument
54 return GetStorage(extension, settings_namespace::SYNC, frontend); in GetStorage()
Dsettings_test_util.h39 StorageFrontend* frontend);
43 StorageFrontend* frontend);
Dstorage_api.cc50 StorageFrontend* frontend = StorageFrontend::Get(browser_context()); in Run() local
51 if (!frontend->IsStorageEnabled(settings_namespace_)) { in Run()
57 observers_ = frontend->GetObservers(); in Run()
58 frontend->RunWithStorage( in Run()
/external/chromium_org/chrome/browser/extensions/api/storage/
Dsettings_apitest.cc406 StorageFrontend* frontend = StorageFrontend::Get(browser()->profile()); in IN_PROC_BROWSER_TEST_F() local
407 EXPECT_TRUE(frontend->IsStorageEnabled(LOCAL)); in IN_PROC_BROWSER_TEST_F()
408 EXPECT_TRUE(frontend->IsStorageEnabled(SYNC)); in IN_PROC_BROWSER_TEST_F()
411 EXPECT_TRUE(frontend->IsStorageEnabled(MANAGED)); in IN_PROC_BROWSER_TEST_F()
413 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED)); in IN_PROC_BROWSER_TEST_F()
574 StorageFrontend* frontend = StorageFrontend::Get(browser()->profile()); in IN_PROC_BROWSER_TEST_F() local
575 frontend->DisableStorageForTesting(MANAGED); in IN_PROC_BROWSER_TEST_F()
576 EXPECT_FALSE(frontend->IsStorageEnabled(MANAGED)); in IN_PROC_BROWSER_TEST_F()
/external/chromium_org/content/child/appcache/
Dappcache_dispatcher.cc13 AppCacheFrontend* frontend) in AppCacheDispatcher() argument
15 frontend_(frontend) {} in AppCacheDispatcher()

123456