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

1 2

  /external/webkit/Source/WebKit/qt/docs/webkitsnippets/
qtwebkit_qwebinspector_snippet.cpp 10 QWebInspector *inspector = new QWebInspector; local
11 inspector->setPage(page);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKInspector.h 31 #if ENABLE(INSPECTOR)
43 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);
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleInspector.h 31 #if ENABLE(INSPECTOR)
43 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);
53 #endif // ENABLE(INSPECTOR)
WKBundlePage.cpp 256 return toAPI(toImpl(pageRef)->inspector());
  /external/webkit/Source/WebKit/qt/tests/qwebinspector/
tst_qwebinspector.cpp 36 { // 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/
generate-qt-inspector-resource 29 # 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/
WebInspectorClient.cpp 29 #if ENABLE(INSPECTOR)
49 WebPage* inspectorPage = m_page->inspector()->createInspectorPage();
79 WebInspector* inspector = m_page->inspector(); local
80 if (!inspector)
82 WebPage* inspectorPage = inspector->inspectorPage();
90 #endif // ENABLE(INSPECTOR)
WebInspectorFrontendClient.cpp 29 #if ENABLE(INSPECTOR)
51 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);
102 #endif // ENABLE(INSPECTOR)
  /external/webkit/Source/WebCore/gyp/
streamline-inspector-source.sh 3 # Don't do anything for Debug builds, so the Inspector is easier to debug.
8 # 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" ]; the
    [all...]
  /external/webkit/Source/WebKit/win/
WebInspector.cpp 42 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->stopUserInitiatedProfiling()
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebinspector.cpp 36 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
67 \section1 Inspector configuration persistence
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)
    [all...]
qwebpage_p.h 210 QWebInspector* inspector; member in class:QWebPagePrivate
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
InspectorClientQt.cpp 99 #if ENABLE(INSPECTOR)
174 #endif // ENABLE(INSPECTOR)
190 #if ENABLE(INSPECTOR)
205 #if ENABLE(INSPECTOR)
210 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"))
    [all...]
  /external/webkit/Source/WebCore/inspector/
JavaScriptCallFrame.idl 26 module inspector {
InspectorAgent.cpp 34 #if ENABLE(INSPECTOR)
169 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)
    [all...]
InspectorController.cpp 34 #if ENABLE(INSPECTOR)
85 // 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();
334 #endif // ENABLE(INSPECTOR)
InjectedScriptHost.cpp 34 #if ENABLE(INSPECTOR)
122 m_frontend->inspector()->inspect(object->asObject(), hints->asObject());
184 #endif // ENABLE(INSPECTOR)
  /external/webkit/Tools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 609 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);
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebInspectorClient.mm 96 [[m_webView inspector] setFrontend:webInspectorFrontend.get()];
209 NSString *title = [NSString stringWithFormat:UI_STRING_INTERNAL("Web Inspector ? %@", "Web Inspector window title"), (NSString *)m_inspectedURL];
252 NSString *path = [[NSBundle bundleWithIdentifier:@"com.apple.WebCore"] pathForResource:@"inspector" ofType:@"html" inDirectory:@"inspector"];
257 [self setWindowFrameAutosaveName:@"Web Inspector 2"];
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]
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebViewData.mm 102 [inspector release];
WebViewData.h 79 WebInspector *inspector; variable
  /external/webkit/Tools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp 53 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 = webkit_web_view_get_inspector(webView) local
    [all...]
DumpRenderTree.cpp 106 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);
704 // If developer extras enabled Web Inspector may have been open by the test.
1107 WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); local
    [all...]
  /external/webkit/Source/WebCore/
Android.derived.mk 78 $(GEN): SCRIPT := $(LOCAL_PATH)/inspector/xxd.pl
86 $(GEN): SCRIPT := $(LOCAL_PATH)/inspector/xxd.pl
  /external/webkit/Tools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 472 [[[mainFrame webView] inspector] setJavaScriptProfilingEnabled:profilingEnabled];
535 [[[mainFrame webView] inspector] setTimelineProfilingEnabled:enabled];
839 [[[mainFrame webView] inspector] show:nil];
844 [[[mainFrame webView] inspector] close:nil];
    [all...]

Completed in 337 milliseconds

1 2