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

12

/external/clang/include/clang/Frontend/
H A DLangStandard.h18 namespace frontend { namespace in namespace:clang
57 bool hasBCPLComments() const { return Flags & frontend::BCPLComment; }
60 bool isC89() const { return Flags & frontend::C89; }
63 bool isC99() const { return Flags & frontend::C99; }
66 bool isC11() const { return Flags & frontend::C11; }
69 bool isCPlusPlus() const { return Flags & frontend::CPlusPlus; }
72 bool isCPlusPlus0x() const { return Flags & frontend::CPlusPlus0x; }
75 bool hasDigraphs() const { return Flags & frontend::Digraphs; }
78 bool isGNUMode() const { return Flags & frontend::GNUMode; }
81 bool hasHexFloats() const { return Flags & frontend
[all...]
H A DHeaderSearchOptions.h18 namespace frontend { namespace in namespace:clang
43 frontend::IncludeDirGroup Group;
64 Entry(StringRef path, frontend::IncludeDirGroup group,
129 void AddPath(StringRef Path, frontend::IncludeDirGroup Group,
H A DFrontendOptions.h21 namespace frontend { namespace in namespace:clang
41 InitOnly, ///< Only execute frontend initialization.
90 /// FrontendOptions - Options for controlling the behavior of the frontend.
98 unsigned ShowStats : 1; ///< Show frontend performance
151 /// The frontend action to perform.
152 frontend::ActionKind ProgramAction;
183 ProgramAction = frontend::ParseSyntaxOnly;
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebinspector.cpp92 // Remove association principally to prevent deleting a child frontend
189 if (frontend)
190 frontend->setParent(0);
192 frontend = newFrontend;
194 if (frontend) {
195 frontend->setParent(q);
196 frontend->show();
228 if (frontend)
229 frontend->resize(size);
H A Dqwebinspector_p.h35 , frontend(0)
46 QWidget* frontend; member in class:QWebInspectorPrivate
/external/webkit/Source/WebKit/mac/WebInspector/
H A DWebInspectorPrivate.h37 - (void)setFrontend:(WebInspectorFrontend *)frontend;
H A DWebInspector.mm197 - (void)setFrontend:(WebInspectorFrontend *)frontend
200 _frontend = [frontend retain];
/external/webkit/Source/WebCore/inspector/
H A DInspectorDatabaseResource.cpp57 void InspectorDatabaseResource::bind(InspectorFrontend::Database* frontend) argument
64 frontend->addDatabase(jsonObject);
H A DInspectorDatabaseAgent.cpp69 InspectorFrontend::Database* frontend() { return m_inspectorFrontend; } function in class:WebCore::InspectorDatabaseAgent::FrontendProvider
80 void reportTransactionFailed(InspectorFrontend::Database* frontend, int transactionId, SQLError* error) argument
82 if (!frontend)
87 frontend->sqlTransactionFailed(transactionId, errorObject);
101 if (!m_frontendProvider->frontend())
121 m_frontendProvider->frontend()->sqlTransactionSucceeded(m_transactionId, columnNames, values);
144 reportTransactionFailed(m_frontendProvider->frontend(), m_transactionId, error);
167 if (!m_frontendProvider->frontend())
198 reportTransactionFailed(m_frontendProvider->frontend(), m_transactionId, error);
237 resource->bind(m_frontendProvider->frontend());
258 setFrontend(InspectorFrontend* frontend) argument
[all...]
H A DConsoleMessage.cpp131 void ConsoleMessage::addToFrontend(InspectorFrontend::Console* frontend, InjectedScriptManager* injectedScriptManager) argument
160 frontend->messageAdded(jsonObj);
163 void ConsoleMessage::updateRepeatCountInConsole(InspectorFrontend::Console* frontend) argument
165 frontend->messageRepeatCountUpdated(m_repeatCount);
H A DInjectedScriptHost.h89 void setFrontend(InspectorFrontend* frontend) { m_frontend = frontend; } argument
H A DInspectorDOMStorageResource.cpp67 void InspectorDOMStorageResource::bind(InspectorFrontend* frontend) argument
70 m_frontend = frontend->domstorage();
H A DInspectorProfilerAgent.cpp198 OutputStream(InspectorFrontend::Profiler* frontend, unsigned uid) argument
199 : m_frontend(frontend), m_uid(uid) { }
260 void InspectorProfilerAgent::setFrontend(InspectorFrontend* frontend) argument
262 m_frontend = frontend->profiler();
340 explicit HeapSnapshotProgress(InspectorFrontend::Profiler* frontend) argument
341 : m_frontend(frontend) { }
H A DInspectorApplicationCacheAgent.cpp52 void InspectorApplicationCacheAgent::setFrontend(InspectorFrontend* frontend) argument
54 m_frontend = frontend->applicationcache();
H A DInspectorDOMStorageResource.h61 void bind(InspectorFrontend* frontend);
H A DInspectorDOMStorageAgent.cpp66 void InspectorDOMStorageAgent::setFrontend(InspectorFrontend* frontend) argument
68 m_frontend = frontend;
H A DInspectorConsoleAgent.cpp117 void InspectorConsoleAgent::setFrontend(InspectorFrontend* frontend) argument
119 m_frontend = frontend->console();
H A DInspectorPageAgent.cpp69 void InspectorPageAgent::setFrontend(InspectorFrontend* frontend) argument
71 m_frontend = frontend;
/external/webkit/Source/WebKit/chromium/src/
H A DInspectorFrontendClientImpl.cpp49 InspectorFrontendClientImpl::InspectorFrontendClientImpl(Page* frontendPage, WebDevToolsFrontendClient* client, WebDevToolsFrontendImpl* frontend) argument
52 , m_frontend(frontend)
/external/clang/lib/Frontend/
H A DLangStandards.cpp14 using namespace clang::frontend;
H A DCompilerInvocation.cpp432 static const char *getActionName(frontend::ActionKind Kind) {
434 case frontend::PluginAction:
437 case frontend::ASTDeclList: return "-ast-list";
438 case frontend::ASTDump: return "-ast-dump";
439 case frontend::ASTDumpXML: return "-ast-dump-xml";
440 case frontend::ASTPrint: return "-ast-print";
441 case frontend::ASTView: return "-ast-view";
442 case frontend::DumpRawTokens: return "-dump-raw-tokens";
443 case frontend::DumpTokens: return "-dump-tokens";
444 case frontend
[all...]
/external/clang/unittests/Frontend/
H A DFrontendActionTest.cpp61 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
/external/webkit/Source/WebCore/storage/
H A DIDBRequest.cpp221 RefPtr<IDBTransaction> frontend = IDBTransaction::create(scriptExecutionContext(), backend, m_source->idbDatabase().get()); local
222 backend->setCallbacks(frontend.get());
223 m_transaction = frontend;
226 m_source->idbDatabase()->setSetVersionTransaction(frontend.get());
230 m_result = IDBAny::create(frontend.release());
/external/chromium/chrome/browser/extensions/
H A Dcrx_installer.cc109 CrxInstaller::CrxInstaller(ExtensionService* frontend, argument
111 : install_directory_(frontend->install_directory()),
113 extensions_enabled_(frontend->extensions_enabled()),
117 frontend_(frontend),
506 // Tell the frontend about the installation and hand off ownership of
H A Dcrx_installer.h82 // frontend->install_directory() then registered with |frontend|. Any install
85 CrxInstaller(ExtensionService* frontend,
165 // notify the frontend.
230 // The frontend we will report results back to.

Completed in 326 milliseconds

12