/external/webkit/Source/WebCore/inspector/front-end/ |
CSSCompletions.js | 33 WebInspector.CSSCompletions = function(values, acceptEmptyPrefix) 40 WebInspector.CSSCompletions.prototype = {
|
Object.js | 26 WebInspector.Object = function() { 29 WebInspector.Object.prototype = {
|
DataGrid.js | 26 WebInspector.DataGrid = function(columns, editCallback, deleteCallback) 157 WebInspector.DataGrid.prototype = { 173 WebInspector.startEditing(element, { 199 WebInspector.startEditing(element, { 565 this.creationNode = new WebInspector.CreationDataGridNode(emptyData, hasChildren); 888 var contextMenu = new WebInspector.ContextMenu(); 893 contextMenu.appendItem(WebInspector.UIString("Add New"), this._startEditing.bind(this, event.target)); 895 contextMenu.appendItem(WebInspector.UIString("Edit"), this._startEditing.bind(this, event.target)); 898 contextMenu.appendItem(WebInspector.UIString("Delete"), this._deleteCallback.bind(this, gridNode)); [all...] |
Section.js | 30 WebInspector.Section = function(title, subtitle) 56 WebInspector.Section.prototype = {
|
TextEditorHighlighter.js | 32 WebInspector.TextEditorHighlighter = function(textModel, damageCallback) 35 this._tokenizer = WebInspector.SourceTokenizer.Registry.getInstance().getTokenizer("text/html"); 40 WebInspector.TextEditorHighlighter.prototype = { 43 var tokenizer = WebInspector.SourceTokenizer.Registry.getInstance().getTokenizer(mimeType);
|
SummaryBar.js | 30 WebInspector.SummaryBar = function(categories) 48 WebInspector.SummaryBar.prototype = { 87 var totalLegendLabel = this._makeLegendElement(WebInspector.UIString("Total"), this.calculator.formatValue(graphInfo.total)); 363 WebInspector.SummaryBar.prototype.__proto__ = WebInspector.Object.prototype;
|
utilities.js | 625 return WebInspector.UIString("%.3fms", ms); 627 return WebInspector.UIString("%.0fms", ms); 630 return WebInspector.UIString("%.2fs", seconds); 634 return WebInspector.UIString("%.1fmin", minutes); 638 return WebInspector.UIString("%.1fhrs", hours); 641 return WebInspector.UIString("%.1f days", days); 650 return WebInspector.UIString("%.0fB", bytes); 654 return WebInspector.UIString("%.2fKB", kilobytes); 656 return WebInspector.UIString("%.0fKB", kilobytes); 660 return WebInspector.UIString("%.2fMB", megabytes) [all...] |
SourceCSSTokenizer.js | 44 WebInspector.SourceCSSTokenizer = function() 46 WebInspector.SourceTokenizer.call(this); 48 this._propertyKeywords = WebInspector.cssNameCompletions.keySet(); 124 WebInspector.SourceCSSTokenizer.prototype = { [all...] |
TimelineGrid.js | 31 WebInspector.TimelineGrid = function() 52 WebInspector.TimelineGrid.prototype = {
|
TextPrompt.js | 29 WebInspector.TextPrompt = function(element, completions, stopCharacters, omitHistory) 43 WebInspector.TextPrompt.prototype = { 101 if (this.history && WebInspector.isMac() && event.ctrlKey && !event.metaKey && !event.altKey && !event.shiftKey) { 109 if (this.history && WebInspector.isMac() && event.ctrlKey && !event.metaKey && !event.altKey && !event.shiftKey) {
|
SourceJavaScriptTokenizer.js | 44 WebInspector.SourceJavaScriptTokenizer = function() 46 WebInspector.SourceTokenizer.call(this); 75 WebInspector.SourceJavaScriptTokenizer.prototype = { [all...] |
SourceHTMLTokenizer.js | 44 WebInspector.SourceHTMLTokenizer = function() 46 WebInspector.SourceTokenizer.call(this); 78 WebInspector.SourceHTMLTokenizer.prototype = { 693 this._internalJavaScriptTokenizer = WebInspector.SourceTokenizer.Registry.getInstance().getTokenizer("text/javascript"); 702 this._internalCSSTokenizer = WebInspector.SourceTokenizer.Registry.getInstance().getTokenizer("text/css"); 780 WebInspector.SourceHTMLTokenizer.prototype.__proto__ = WebInspector.SourceTokenizer.prototype;
|
ExtensionAPI.js | 31 WebInspector.injectedExtensionAPI = function(InjectedScriptHost, inspectedWindow, injectedScriptId) 490 webInspector = new InspectorExtensionAPI(); 492 experimental.webInspector = webInspector;
|
treeoutline.js | 392 } else if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Backspace.code || event.keyCode === WebInspector.KeyboardShortcut.Keys.Delete.code) {
|
/external/webkit/Source/WebKit/mac/WebInspector/ |
WebInspector.mm | 29 #import "WebInspector.h" 42 @implementation WebInspector 204 @implementation WebInspector (Obsolete) 205 + (WebInspector *)webInspector 210 NSLog(@"+[WebInspector webInspector]: this method is obsolete."); 214 return [[[WebInspector alloc] init] autorelease]; 222 NSLog(@"-[WebInspector setWebFrame:]: this method is obsolete."); 234 NSLog(@"-[WebInspector window]: this method is obsolete and now returns nil.") [all...] |
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundleAPICast.h | 54 class WebInspector; 63 WK_ADD_API_MAPPING(WKBundleInspectorRef, WebInspector)
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebViewData.h | 42 @class WebInspector; 79 WebInspector *inspector;
|
WebViewPrivate.h | 49 @class WebInspector; 225 - (WebInspector *)inspector; 721 // For implementing the WebInspector's test harness
|
/external/webkit/Tools/QtTestBrowser/ |
launcherwindow.h | 68 #include "webinspector.h" 231 WebInspector* m_inspector;
|
launcherwindow.cpp | 74 m_inspector = new WebInspector; [all...] |
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/ |
LeaksViewer.js | 34 this._profileView = new WebInspector.CPUProfileView({}); 38 // From WebInspector.Panel.prototype.show
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebPage.h | 101 class WebInspector; 152 WebInspector* inspector(); 627 RefPtr<WebInspector> m_inspector;
|
WebPage.cpp | 61 #include "WebInspector.h" [all...] |
/external/webkit/Source/WebKit/win/ |
WebView.h | 58 class WebInspector; [all...] |
/external/webkit/Tools/DumpRenderTree/mac/ |
DumpRenderTree.mm | 74 #import <WebKit/WebInspector.h> [all...] |