HomeSort by relevance Sort by last modified time
    Searched refs:frontend (Results 1 - 25 of 42) sorted by null

1 2

  /external/clang/include/clang/Frontend/
LangStandard.h 18 namespace frontend { namespace in namespace:clang
41 #include "clang/Frontend/LangStandards.def"
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;
    [all...]
HeaderSearchOptions.h 18 namespace frontend { namespace in namespace:clang
43 frontend::IncludeDirGroup Group;
64 Entry(StringRef path, frontend::IncludeDirGroup group,
114 void AddPath(StringRef Path, frontend::IncludeDirGroup Group,
FrontendOptions.h 13 #include "clang/Frontend/CommandLineSourceLoc.h"
20 namespace frontend { namespace in namespace:clang
39 InitOnly, ///< Only execute frontend initialization.
88 /// FrontendOptions - Options for controlling the behavior of the frontend.
102 unsigned ShowStats : 1; ///< Show frontend performance
150 /// The frontend action to perform.
151 frontend::ActionKind ProgramAction;
182 ProgramAction = frontend::ParseSyntaxOnly;
  /external/webkit/Source/WebKit/mac/WebInspector/
WebInspectorPrivate.h 37 - (void)setFrontend:(WebInspectorFrontend *)frontend;
WebInspector.mm 197 - (void)setFrontend:(WebInspectorFrontend *)frontend
200 _frontend = [frontend retain];
  /external/webkit/Source/WebKit/qt/Api/
qwebinspector.cpp 92 // 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);
qwebinspector_p.h 35 , frontend(0)
46 QWidget* frontend; member in class:QWebInspectorPrivate
  /external/webkit/Source/WebCore/inspector/
InspectorDatabaseResource.cpp 57 void InspectorDatabaseResource::bind(InspectorFrontend::Database* frontend)
64 frontend->addDatabase(jsonObject);
InspectorDatabaseAgent.cpp 69 InspectorFrontend::Database* frontend() { return m_inspectorFrontend; } function in class:WebCore::InspectorDatabaseAgent::FrontendProvider
80 void reportTransactionFailed(InspectorFrontend::Database* frontend, int transactionId, SQLError* error)
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());
    [all...]
ConsoleMessage.cpp 131 void ConsoleMessage::addToFrontend(InspectorFrontend::Console* frontend, InjectedScriptManager* injectedScriptManager)
160 frontend->messageAdded(jsonObj);
163 void ConsoleMessage::updateRepeatCountInConsole(InspectorFrontend::Console* frontend)
165 frontend->messageRepeatCountUpdated(m_repeatCount);
InspectorDOMStorageResource.h 61 void bind(InspectorFrontend* frontend);
InjectedScriptHost.h 89 void setFrontend(InspectorFrontend* frontend) { m_frontend = frontend; }
InspectorDOMStorageResource.cpp 67 void InspectorDOMStorageResource::bind(InspectorFrontend* frontend)
70 m_frontend = frontend->domstorage();
InspectorProfilerAgent.cpp 198 OutputStream(InspectorFrontend::Profiler* frontend, unsigned uid)
199 : m_frontend(frontend), m_uid(uid) { }
260 void InspectorProfilerAgent::setFrontend(InspectorFrontend* frontend)
262 m_frontend = frontend->profiler();
340 explicit HeapSnapshotProgress(InspectorFrontend::Profiler* frontend)
341 : m_frontend(frontend) { }
InspectorApplicationCacheAgent.cpp 52 void InspectorApplicationCacheAgent::setFrontend(InspectorFrontend* frontend)
54 m_frontend = frontend->applicationcache();
InspectorDOMStorageAgent.cpp 66 void InspectorDOMStorageAgent::setFrontend(InspectorFrontend* frontend)
68 m_frontend = frontend;
InspectorConsoleAgent.cpp 117 void InspectorConsoleAgent::setFrontend(InspectorFrontend* frontend)
119 m_frontend = frontend->console();
InspectorPageAgent.cpp 69 void InspectorPageAgent::setFrontend(InspectorFrontend* frontend)
71 m_frontend = frontend;
  /external/webkit/Source/WebKit/chromium/src/
InspectorFrontendClientImpl.cpp 49 InspectorFrontendClientImpl::InspectorFrontendClientImpl(Page* frontendPage, WebDevToolsFrontendClient* client, WebDevToolsFrontendImpl* frontend)
52 , m_frontend(frontend)
  /external/clang/lib/Frontend/
LangStandards.cpp 10 #include "clang/Frontend/LangStandard.h"
14 using namespace clang::frontend;
18 #include "clang/Frontend/LangStandards.def"
26 #include "clang/Frontend/LangStandards.def"
35 #include "clang/Frontend/LangStandards.def"
CompilerInvocation.cpp 10 #include "clang/Frontend/CompilerInvocation.h"
20 #include "clang/Frontend/CompilerInvocation.h"
21 #include "clang/Frontend/LangStandard.h"
54 #include "clang/Frontend/Analyses.def"
64 #include "clang/Frontend/Analyses.def"
74 #include "clang/Frontend/Analyses.def"
84 #include "clang/Frontend/Analyses.def"
94 #include "clang/Frontend/Analyses.def"
105 #include "clang/Frontend/Analyses.def"
405 static const char *getActionName(frontend::ActionKind Kind)
    [all...]
  /external/clang/unittests/Frontend/
FrontendActionTest.cpp 1 //===- unittests/Frontend/FrontendActionTest.cpp - FrontendAction tests ---===//
12 #include "clang/Frontend/CompilerInstance.h"
13 #include "clang/Frontend/CompilerInvocation.h"
14 #include "clang/Frontend/FrontendAction.h"
60 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
  /external/webkit/Source/WebCore/storage/
IDBRequest.cpp 221 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/
crx_installer.cc 109 CrxInstaller::CrxInstaller(ExtensionService* frontend,
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
crx_installer.h 82 // 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 473 milliseconds

1 2