Searched refs:inspector (Results 1 - 25 of 43) sorted by relevance

12

/external/webkit/Source/WebKit/qt/docs/webkitsnippets/
H A Dqtwebkit_qwebinspector_snippet.cpp10 QWebInspector *inspector = new QWebInspector; local
11 inspector->setPage(page);
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKInspector.h43 WK_EXPORT WKPageRef WKInspectorGetPage(WKInspectorRef inspector);
45 WK_EXPORT bool WKInspectorIsVisible(WKInspectorRef inspector);
46 WK_EXPORT void WKInspectorShow(WKInspectorRef inspector);
47 WK_EXPORT void WKInspectorClose(WKInspectorRef inspector);
49 WK_EXPORT void WKInspectorShowConsole(WKInspectorRef inspector);
51 WK_EXPORT bool WKInspectorIsAttached(WKInspectorRef inspector);
52 WK_EXPORT void WKInspectorAttach(WKInspectorRef inspector);
53 WK_EXPORT void WKInspectorDetach(WKInspectorRef inspector);
55 WK_EXPORT bool WKInspectorIsDebuggingJavaScript(WKInspectorRef inspector);
56 WK_EXPORT void WKInspectorToggleJavaScriptDebugging(WKInspectorRef inspector);
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundleInspector.h43 WK_EXPORT void WKBundleInspectorShow(WKBundleInspectorRef inspector);
44 WK_EXPORT void WKBundleInspectorClose(WKBundleInspectorRef inspector);
46 WK_EXPORT void WKBundleInspectorEvaluateScriptForTest(WKBundleInspectorRef inspector, long callID, WKStringRef script);
47 WK_EXPORT void WKBundleInspectorSetPageProfilingEnabled(WKBundleInspectorRef inspector, bool enabled);
H A DWKBundlePage.cpp256 return toAPI(toImpl(pageRef)->inspector());
/external/webkit/Source/WebKit/qt/tests/qwebinspector/
H A Dtst_qwebinspector.cpp36 { // External inspector + manual destruction of page first
39 QWebInspector* inspector = new QWebInspector(); local
40 inspector->setPage(page);
45 delete inspector;
47 { // External inspector + manual destruction of inspector first
50 QWebInspector* inspector = new QWebInspector(); local
51 inspector->setPage(page);
55 delete inspector;
58 { // Internal inspector
[all...]
/external/webkit/Tools/Scripts/
H A Dgenerate-qt-inspector-resource29 # Regenerate WebCore/inspector/front-end/WebKit.qrc from the content of WebCore/inspector/front-end/
36 $file =~ s,Source/WebCore/inspector/front-end/,,;
42 open(WEBKIT_QRC, ">Source/WebCore/inspector/front-end/WebKit.qrc") or die;
44 print WEBKIT_QRC '<qresource prefix="/webkit/inspector">'."\n";
48 addFiles(<Source/WebCore/inspector/front-end/*.{*html,js,css,svg}>);
49 addFiles(<Source/WebCore/inspector/front-end/Images/*>);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebInspectorClient.cpp49 WebPage* inspectorPage = m_page->inspector()->createInspectorPage();
79 WebInspector* inspector = m_page->inspector(); local
80 if (!inspector)
82 WebPage* inspectorPage = inspector->inspectorPage();
H A DWebInspectorFrontendClient.cpp51 m_page->inspector()->didLoadInspectorPage();
56 return m_page->inspector()->localizedStringsURL();
72 m_page->inspector()->didClose();
77 m_page->inspector()->didClose();
97 m_page->inspector()->inspectedURLChanged(urlString);
/external/webkit/Source/WebCore/gyp/
H A Dstreamline-inspector-source.sh8 # Combine all script resources in the inspector.html file.
9 "$SRCROOT/../inspector/combine-javascript-resources.pl" --input-html "${SRCROOT}/../inspector/front-end/inspector.html" --generated-scripts-dir ${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore --output-dir "${DERIVED_FILE_DIR}/WebCore" --output-script-name inspector.js
12 "$SRCROOT/../inspector/inline-javascript-imports.py" "${SRCROOT}/../inspector/front-end/ScriptFormatterWorker.js" "${SRCROOT}/../inspector/front-end" "${DERIVED_FILE_DIR}/WebCore/scriptFormatterWorker.js"
14 if [ -d "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/inspector" ]; then
16 cd "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/inspector"
[all...]
/external/webkit/Source/WebKit/win/
H A DWebInspector.cpp42 WebInspector* inspector = new WebInspector(webView); local
43 inspector->AddRef();
44 return inspector;
167 InspectorController* inspector = page->inspectorController();
169 if (inspector->debuggerEnabled())
170 inspector->disableDebugger();
172 inspector->showAndEnableDebugger();
204 InspectorController* inspector = page->inspectorController();
206 if (inspector->isRecordingUserInitiatedProfile())
207 inspector
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebinspector.cpp36 QWebPage's inspector.
37 The inspector can display a page's hierarchy, its loading statistics and
59 This class acts mostly as a container and a controller for the inspector.
60 Most of the resources needed by the inspector are owned by the associated
69 The inspector allows the user to configure some options through its
88 Destroys the inspector.
99 Bind this inspector to the QWebPage to be inspected.
118 if (page && page->d->inspector && page->d->inspector != this) {
120 page->d->inspector
[all...]
H A Dqwebpage_p.h210 QWebInspector* inspector; member in class:QWebPagePrivate
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DInspectorClientQt.cpp210 QWebInspector* inspector = m_inspectedWebPage->d->getOrCreateInspector(); local
212 if (m_inspectedWebPage->d->inspector->d->remoteFrontend)
216 // Web inspector. This is used for SDK purposes. Please keep this hook
221 inspectorUrl = inspector->property("_q_inspectorUrl").toUrl();
224 inspectorUrl = QUrl(QLatin1String("qrc:/webkit/inspector/inspector.html"));
227 QVariant inspectorJavaScriptWindowObjects = inspector->property("_q_inspectorJavaScriptWindowObjects");
233 inspector->d->setFrontend(inspectorView);
250 // Channel was allocated by InspectorServerQt. Here we transfer ownership to inspector.
251 m_inspectedWebPage->d->inspector
[all...]
/external/webkit/Source/WebCore/inspector/
H A DJavaScriptCallFrame.idl26 module inspector {
H A DInspectorAgent.cpp169 m_frontend->inspector()->disconnectFromBackend();
192 m_frontend->inspector()->frontendReused();
245 m_frontend->inspector()->showPanel(m_showPanelAfterVisible);
252 m_frontend->inspector()->didCreateWorker(worker->id(), worker->url(), worker->isSharedWorker());
268 // Pre-disconnect state will be used to restore inspector agents.
299 m_frontend->inspector()->reset();
352 m_frontend->inspector()->didCreateWorker(worker.id(), worker.url(), worker.isSharedWorker());
355 m_frontend->inspector()->didDestroyWorker(worker.id());
435 m_frontend->inspector()->showPanel(panel);
444 m_frontend->inspector()
[all...]
H A DInspectorController.cpp85 // If the page is supposed to serve as InspectorFrontend notify inspector frontend
86 // client that it's cleared so that the client can expose inspector bindings.
144 m_inspectorFrontend->inspector()->startUserInitiatedDebugging();
176 m_inspectorFrontend->inspector()->bringToFront();
187 m_inspectorFrontend->inspector()->disconnectFromBackend();
293 m_inspectorFrontend->inspector()->startUserInitiatedDebugging();
H A DInjectedScriptHost.cpp122 m_frontend->inspector()->inspect(object->asObject(), hints->asObject());
/external/webkit/Tools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp609 COMPtr<IWebInspector> inspector;
610 if (FAILED(viewPrivate->inspector(&inspector)))
613 inspector->setTimelineProfilingEnabled(flag);
846 COMPtr<IWebInspector> inspector;
847 if (FAILED(viewPrivate->inspector(&inspector)))
851 inspector->setJavaScriptProfilingEnabled(flag);
1227 COMPtr<IWebInspector> inspector;
1228 if (SUCCEEDED(viewPrivate->inspector(
[all...]
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebInspectorClient.mm96 [[m_webView inspector] setFrontend:webInspectorFrontend.get()];
252 NSString *path = [[NSBundle bundleWithIdentifier:@"com.apple.WebCore"] pathForResource:@"inspector" ofType:@"html" inDirectory:@"inspector"];
482 // These methods can be used by UI elements such as menu items and toolbar buttons when the inspector is the key window.
487 [[_inspectedWebView inspector] show:sender];
492 [[_inspectedWebView inspector] showConsole:sender];
497 [[_inspectedWebView inspector] toggleDebuggingJavaScript:sender];
502 [[_inspectedWebView inspector] toggleProfilingJavaScript:sender];
510 if ([[_inspectedWebView inspector] isDebuggingJavaScript])
516 if ([[_inspectedWebView inspector] isProfilingJavaScrip
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebViewData.mm102 [inspector release];
H A DWebViewData.h79 WebInspector *inspector; variable
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp53 void webkit_web_inspector_execute_script(WebKitWebInspector* inspector, long callId, const gchar* script);
303 WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); local
304 g_object_set(G_OBJECT(inspector), "timeline-profiling-enabled", flag, NULL);
525 WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); local
526 g_object_set(G_OBJECT(inspector), "javascript-profiling-enabled", flag, NULL);
842 WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); local
844 webkit_web_inspector_show(inspector);
850 WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); local
852 webkit_web_inspector_close(inspector);
858 WebKitWebInspector* inspector local
[all...]
H A DDumpRenderTree.cpp106 return pathOrURL.find("inspector/") != string::npos;
444 WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); local
445 g_object_set(G_OBJECT(inspector), "javascript-profiling-enabled", FALSE, NULL);
1107 WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); local
1108 g_object_connect(G_OBJECT(inspector),
/external/webkit/Source/WebCore/
H A DAndroid.derived.mk78 $(GEN): SCRIPT := $(LOCAL_PATH)/inspector/xxd.pl
86 $(GEN): SCRIPT := $(LOCAL_PATH)/inspector/xxd.pl
/external/webkit/Tools/DumpRenderTree/mac/
H A DLayoutTestControllerMac.mm472 [[[mainFrame webView] inspector] setJavaScriptProfilingEnabled:profilingEnabled];
535 [[[mainFrame webView] inspector] setTimelineProfilingEnabled:enabled];
839 [[[mainFrame webView] inspector] show:nil];
844 [[[mainFrame webView] inspector] close:nil];
851 [[[mainFrame webView] inspector] evaluateInFrontend:nil callId:callId script:scriptNS];

Completed in 384 milliseconds

12