/external/webkit/WebCore/inspector/front-end/ |
D | Resource.js | 29 WebInspector.Resource = function(requestHeaders, url, domain, path, lastPathComponent, identifier, … 43 this.category = WebInspector.resourceCategories.other; 47 WebInspector.Resource.Type = { 65 return WebInspector.UIString("document"); 67 return WebInspector.UIString("stylesheet"); 69 return WebInspector.UIString("image"); 71 return WebInspector.UIString("font"); 73 return WebInspector.UIString("script"); 75 return WebInspector.UIString("XHR"); 78 return WebInspector.UIString("other"); [all …]
|
D | inspector.js | 45 var WebInspector = { variable 123 for (var panelName in WebInspector.panels) { 124 if (WebInspector.panels[panelName] == x) 133 this.panels.elements = new WebInspector.ElementsPanel(); 135 this.panels.resources = new WebInspector.ResourcesPanel(); 137 this.panels.scripts = new WebInspector.ScriptsPanel(); 139 this.panels.profiles = new WebInspector.ProfilesPanel(); 141 this.panels.databases = new WebInspector.DatabasesPanel(); 165 dockToggleButton.title = WebInspector.UIString("Undock into separate window."); 170 dockToggleButton.title = WebInspector.UIString("Dock to main window."); [all …]
|
D | ConsoleView.js | 30 WebInspector.ConsoleView = function(drawer) 32 WebInspector.View.call(this, document.getElementById("console-view")); 38 this.clearButton.title = WebInspector.UIString("Clear console log."); 47 …this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), " .=:[(… 49 this.topGroup = new WebInspector.ConsoleGroup(null, 0); 55 this.toggleConsoleButton.title = WebInspector.UIString("Show console."); 63 WebInspector.ConsoleView.prototype = { 78 this.toggleConsoleButton.title = WebInspector.UIString("Hide console."); 85 WebInspector.currentFocusElement = this.promptElement; 91 this.toggleConsoleButton.title = WebInspector.UIString("Show console."); [all …]
|
D | ScriptView.js | 26 WebInspector.ScriptView = function(script) 28 WebInspector.View.call(this); 37 this.sourceFrame = new WebInspector.SourceFrame(null, this._addBreakpoint.bind(this)); 42 WebInspector.ScriptView.prototype = { 45 WebInspector.View.prototype.show.call(this, parentElement); 51 WebInspector.View.prototype.hide.call(this); 79 … var breakpoint = new WebInspector.Breakpoint(this.script.sourceURL, line, this.script.sourceID); 80 WebInspector.panels.scripts.addBreakpoint(breakpoint); 86 revealLine: WebInspector.SourceView.prototype.revealLine, 87 highlightLine: WebInspector.SourceView.prototype.highlightLine, [all …]
|
D | ScopeChainSidebarPane.js | 26 WebInspector.ScopeChainSidebarPane = function() 28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Scope Variables")); 31 WebInspector.ScopeChainSidebarPane.prototype = { 42 infoElement.textContent = WebInspector.UIString("Not Paused"); 69 title = WebInspector.UIString("Local"); 71 title = WebInspector.UIString("Closure"); 72 emptyPlaceholder = WebInspector.UIString("No Variables"); 77 title = WebInspector.UIString("Global"); 79 title = WebInspector.UIString("Event Target"); 81 title = WebInspector.UIString("Event Document"); [all …]
|
D | ScriptsPanel.js | 26 WebInspector.ScriptsPanel = function() 28 WebInspector.Panel.call(this); 40 this.backButton.title = WebInspector.UIString("Show the previous script resource."); 49 this.forwardButton.title = WebInspector.UIString("Show the next script resource."); 76 this.pauseButton.title = WebInspector.UIString("Pause script execution."); 85 this.stepOverButton.title = WebInspector.UIString("Step over next function call."); 94 this.stepIntoButton.title = WebInspector.UIString("Step into next function call."); 103 this.stepOutButton.title = WebInspector.UIString("Step out of current function."); 129 this.sidebarPanes.callstack = new WebInspector.CallStackSidebarPane(); 130 this.sidebarPanes.scopechain = new WebInspector.ScopeChainSidebarPane(); [all …]
|
D | DOMAgent.js | 31 WebInspector.DOMNode = function(doc, payload) { 61 WebInspector.DOMNode.prototype = { 131 var node = new WebInspector.DOMNode(this.ownerDocument, payload); 153 var node = new WebInspector.DOMNode(this.ownerDocument, payload); 188 this._computedStyle = new WebInspector.CSSStyleDeclaration(computedStyle); 189 this.style = new WebInspector.CSSStyleDeclaration(inlineStyle); 193 … this._attributesMap[name].style = new WebInspector.CSSStyleDeclaration(styleAttributes[name]); 198 … this._matchedCSSRules.push(WebInspector.CSSStyleDeclaration.parseRule(matchedCSSRules[i])); 211 WebInspector.DOMDocument = function(domAgent, defaultView) 213 WebInspector.DOMNode.call(this, null, [all …]
|
D | ProfilesPanel.js | 28 WebInspector.ProfilesPanel = function() 30 WebInspector.Panel.call(this); 34 …var panelEnablerHeading = WebInspector.UIString("You need to enable profiling before you can use t… 35 …var panelEnablerDisclaimer = WebInspector.UIString("Enabling profiling will make scripts run slowe… 36 var panelEnablerButton = WebInspector.UIString("Enable Profiling"); 37 …this.panelEnablerView = new WebInspector.PanelEnablerView("profiles", panelEnablerHeading, panelEn… 67 this.recordButton.title = WebInspector.UIString("Start profiling."); 80 WebInspector.ProfilesPanel.prototype = { 85 return WebInspector.UIString("Profiles"); 95 WebInspector.Panel.prototype.show.call(this); [all …]
|
D | ResourcesPanel.js | 30 WebInspector.ResourcesPanel = function() 32 WebInspector.Panel.call(this); 95 …var timeGraphItem = new WebInspector.SidebarTreeElement("resources-time-graph-sidebar-item", WebIn… 98 var transferTimeCalculator = new WebInspector.ResourceTransferTimeCalculator(); 99 var transferDurationCalculator = new WebInspector.ResourceTransferDurationCalculator(); 102 …{ name: WebInspector.UIString("Sort by Start Time"), sortingFunction: WebInspector.ResourceSidebar… 103 …{ name: WebInspector.UIString("Sort by Response Time"), sortingFunction: WebInspector.ResourceSide… 104 …{ name: WebInspector.UIString("Sort by End Time"), sortingFunction: WebInspector.ResourceSidebarTr… 105 …{ name: WebInspector.UIString("Sort by Duration"), sortingFunction: WebInspector.ResourceSidebarTr… 106 …{ name: WebInspector.UIString("Sort by Latency"), sortingFunction: WebInspector.ResourceSidebarTre… [all …]
|
D | DatabasesPanel.js | 30 WebInspector.DatabasesPanel = function(database) 32 WebInspector.Panel.call(this); 50 …this.databasesListTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("… 54 …this.localStorageListTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIStrin… 58 …this.sessionStorageListTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIStr… 72 WebInspector.DatabasesPanel.prototype = { 77 return WebInspector.UIString("Databases"); 87 WebInspector.Panel.prototype.show.call(this); 136 var databaseTreeElement = new WebInspector.DatabaseSidebarTreeElement(database); 144 var domStorageTreeElement = new WebInspector.DOMStorageSidebarTreeElement(domStorage); [all …]
|
D | CallStackSidebarPane.js | 26 WebInspector.CallStackSidebarPane = function() 28 WebInspector.SidebarPane.call(this, WebInspector.UIString("Call Stack")); 32 …var shortcut = WebInspector.KeyboardShortcut.makeKey(WebInspector.KeyboardShortcut.KeyCodes.Period, 33 … WebInspector.KeyboardShortcut.Modifiers.Ctrl); 36 … var shortcut = WebInspector.KeyboardShortcut.makeKey(WebInspector.KeyboardShortcut.KeyCodes.Comma, 37 … WebInspector.KeyboardShortcut.Modifiers.Ctrl); 41 WebInspector.CallStackSidebarPane.prototype = { 52 infoElement.textContent = WebInspector.UIString("Not Paused"); 64 title = callFrame.functionName || WebInspector.UIString("(anonymous function)"); 67 title = WebInspector.UIString("(program)"); [all …]
|
D | KeyboardShortcut.js | 30 WebInspector.KeyboardShortcut = function() 38 WebInspector.KeyboardShortcut.Modifiers = { 46 WebInspector.KeyboardShortcut.KeyCodes = { 83 WebInspector.KeyboardShortcut.makeKey = function(keyCode, optModifiers) 85 var modifiers = WebInspector.KeyboardShortcut.Modifiers.None; 88 return WebInspector.KeyboardShortcut._makeKeyFromCodeAndModifiers(keyCode, modifiers); 91 WebInspector.KeyboardShortcut.makeKeyFromEvent = function(keyboardEvent) 93 var modifiers = WebInspector.KeyboardShortcut.Modifiers.None; 95 modifiers |= WebInspector.KeyboardShortcut.Modifiers.Shift; 97 modifiers |= WebInspector.KeyboardShortcut.Modifiers.Ctrl; [all …]
|
D | TopDownProfileDataGridTree.js | 26 WebInspector.TopDownProfileDataGridNode = function(/*ProfileView*/ profileView, /*ProfileNode*/ pro… 30 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, hasChildren); 35 WebInspector.TopDownProfileDataGridNode.prototype = { 42 …this.appendChild(new WebInspector.TopDownProfileDataGridNode(this.profileView, children[i], this.t… 70 WebInspector.TopDownProfileDataGridNode.prototype.__proto__ = WebInspector.ProfileDataGridNode.prot… 72 WebInspector.TopDownProfileDataGridTree = function(/*ProfileView*/ profileView, /*ProfileNode*/ pro… 74 WebInspector.ProfileDataGridTree.call(this, profileView, profileNode); 78 WebInspector.TopDownProfileDataGridNode.prototype._populate.call(this); class 81 WebInspector.TopDownProfileDataGridTree.prototype = { 102 WebInspector.TopDownProfileDataGridNode.prototype._exclude.call(this, excludedCallUID); [all …]
|
D | Drawer.js | 30 WebInspector.Drawer = function() 32 WebInspector.View.call(this, document.getElementById("drawer")); 39 WebInspector.Drawer.prototype = { 75 WebInspector.View.prototype.show.call(this); 94 if ("updateStatusBarItems" in WebInspector.currentPanel) 95 WebInspector.currentPanel.updateStatusBarItems(); 101 …WebInspector.animateStyle(animations, window.event && window.event.shiftKey ? 2000 : 250, animatio… 109 WebInspector.View.prototype.hide.call(this); 116 …if (this.element === WebInspector.currentFocusElement || this.element.isAncestor(WebInspector.curr… 117 WebInspector.currentFocusElement = WebInspector.previousFocusElement; [all …]
|
D | Callback.js | 31 WebInspector.Callback = function() 37 WebInspector.Callback.prototype = { 54 WebInspector.Callback._INSTANCE = new WebInspector.Callback(); 55 WebInspector.Callback.wrap = WebInspector.Callback._INSTANCE.wrap.bind(WebInspector.Callback._INSTA… 56 WebInspector.Callback.processCallback = WebInspector.Callback._INSTANCE.processCallback.bind(WebIns…
|
D | ProfileDataGridTree.js | 26 WebInspector.ProfileDataGridNode = function(profileView, profileNode, owningTree, hasChildren) 31 WebInspector.DataGridNode.call(this, null, hasChildren); 48 WebInspector.ProfileDataGridNode.prototype = { 53 … return Number.secondsToString(time / 1000, WebInspector.UIString.bind(WebInspector), true); 62 data["self"] = WebInspector.UIString("%.2f%%", this.selfPercent); 67 data["total"] = WebInspector.UIString("%.2f%%", this.totalPercent); 72 data["average"] = WebInspector.UIString("%.2f%%", this.averagePercent); 81 var cell = WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier); 99 var fileName = WebInspector.displayNameForURL(this.profileNode.url); 119 WebInspector.DataGridNode.prototype.select.call(this, supressSelectedEvent); [all …]
|
D | ImageView.js | 29 WebInspector.ImageView = function(resource) 31 WebInspector.ResourceView.call(this, resource); 57 …{ name: WebInspector.UIString("Dimensions"), value: WebInspector.UIString("%d × %d", this.imagePre… 58 …{ name: WebInspector.UIString("File size"), value: Number.bytesToString(this.resource.contentLengt… 59 { name: WebInspector.UIString("MIME type"), value: this.resource.mimeType } 70 WebInspector.ImageView.prototype = { 74 WebInspector.ImageView.prototype.__proto__ = WebInspector.ResourceView.prototype;
|
D | DOMStorageItemsView.js | 26 WebInspector.DOMStorageItemsView = function(domStorage) 28 WebInspector.View.call(this); 36 this.deleteButton.title = WebInspector.UIString("Delete"); 41 this.refreshButton.title = WebInspector.UIString("Refresh"); 46 WebInspector.DOMStorageItemsView.prototype = { 54 WebInspector.View.prototype.show.call(this, parentElement); 60 WebInspector.View.prototype.hide.call(this); 72 … var dataGrid = WebInspector.panels.databases.dataGridForDOMStorage(this.domStorage.domStorage); 87 emptyMsgElement.textContent = WebInspector.UIString("This storage is empty."); 115 WebInspector.DOMStorageItemsView.prototype.__proto__ = WebInspector.View.prototype;
|
D | PropertiesSidebarPane.js | 29 WebInspector.PropertiesSidebarPane = function() 31 WebInspector.SidebarPane.call(this, WebInspector.UIString("Properties")); 34 WebInspector.PropertiesSidebarPane.prototype = { 54 var prototype = new WebInspector.ObjectProxy(object, [], i); 55 …var section = new WebInspector.ObjectPropertiesSection(prototype, prototypes[i], WebInspector.UISt… 64 WebInspector.PropertiesSidebarPane.prototype.__proto__ = WebInspector.SidebarPane.prototype;
|
D | ChangesView.js | 30 WebInspector.ChangesView = function(drawer) 32 WebInspector.View.call(this); 39 this.clearButton.title = WebInspector.UIString("Clear changes log."); 44 this.toggleChangesButton.title = WebInspector.UIString("Show changes view."); 50 WebInspector.ChangesView.prototype = { 70 this.toggleChangesButton.title = WebInspector.UIString("Hide changes view."); 76 this.toggleChangesButton.title = WebInspector.UIString("Show changes view."); 80 WebInspector.ChangesView.prototype.__proto__ = WebInspector.View.prototype;
|
D | ProfileView.js | 26 WebInspector.ProfileView = function(profile) 28 WebInspector.View.call(this); 36 …var columns = { "self": { title: WebInspector.UIString("Self"), width: "72px", sort: "descending",… 37 … "total": { title: WebInspector.UIString("Total"), width: "72px", sortable: true }, 38 … "average": { title: WebInspector.UIString("Average"), width: "72px", sortable: true }, 39 … "calls": { title: WebInspector.UIString("Calls"), width: "54px", sortable: true }, 40 … "function": { title: WebInspector.UIString("Function"), disclosure: true, sortable: true } }; 42 this.dataGrid = new WebInspector.DataGrid(columns); 53 heavyViewOption.label = WebInspector.UIString("Heavy (Bottom Up)"); 55 treeViewOption.label = WebInspector.UIString("Tree (Top Down)"); [all …]
|
D | DatabaseTableView.js | 26 WebInspector.DatabaseTableView = function(database, tableName) 28 WebInspector.View.call(this); 37 this.refreshButton.title = WebInspector.UIString("Refresh"); 42 WebInspector.DatabaseTableView.prototype = { 45 WebInspector.View.prototype.show.call(this, parentElement); 68 var dataGrid = WebInspector.panels.databases.dataGridForResult(result); 72 … emptyMsgElement.textContent = WebInspector.UIString("The “%s”\ntable is empty.", this.tableName); 86 …errorMsgElement.textContent = WebInspector.UIString("An error occurred trying to\nread the “%s” ta… 96 WebInspector.DatabaseTableView.prototype.__proto__ = WebInspector.View.prototype;
|
D | BottomUpProfileDataGridTree.js | 32 WebInspector.BottomUpProfileDataGridTree = function(/*ProfileView*/ aProfileView, /*ProfileNode*/ a… 34 WebInspector.ProfileDataGridTree.call(this, aProfileView, aProfileNode); 88 WebInspector.BottomUpProfileDataGridNode.prototype._populate.call(this); class 93 WebInspector.BottomUpProfileDataGridTree.prototype = { 105 while (currentNode.parent && (currentNode instanceof WebInspector.ProfileDataGridNode)) { 111 if (currentNode instanceof WebInspector.ProfileDataGridNode) 145 WebInspector.BottomUpProfileDataGridTree.prototype.__proto__ = WebInspector.ProfileDataGridTree.pro… 147 WebInspector.BottomUpProfileDataGridNode = function(/*ProfileView*/ profileView, /*ProfileNode*/ pr… 153 WebInspector.ProfileDataGridNode.call(this, profileView, profileNode, owningTree, hasChildren); 158 WebInspector.BottomUpProfileDataGridNode.prototype = { [all …]
|
D | DOMStorageDataGrid.js | 26 WebInspector.DOMStorageDataGrid = function(columns) 28 WebInspector.DataGrid.call(this, columns); 32 WebInspector.DOMStorageDataGrid.prototype = { 47 WebInspector.panels.databases._unregisterStorageEventListener(); 50 …WebInspector.startEditing(element, this._editingCommitted.bind(this), this._editingCancelled.bind(… 72 WebInspector.panels.databases._unregisterStorageEventListener(); 73 …WebInspector.startEditing(element, this._editingCommitted.bind(this), this._editingCancelled.bind(… 121 var domStorage = WebInspector.panels.databases.visibleView.domStorage.domStorage; 150 WebInspector.panels.databases._registerStorageEventListener(); 159 var domStorage = WebInspector.panels.databases.visibleView.domStorage.domStorage; [all …]
|
/external/webkit/WebKit/win/ |
D | WebInspector.cpp | 42 WebInspector* WebInspector::createInstance(WebView* webView) in createInstance() 44 WebInspector* inspector = new WebInspector(webView); in createInstance() 49 WebInspector::WebInspector(WebView* webView) in WebInspector() function in WebInspector 59 WebInspector::~WebInspector() in ~WebInspector() 65 void WebInspector::webViewClosed() in webViewClosed() 70 HRESULT STDMETHODCALLTYPE WebInspector::QueryInterface(REFIID riid, void** ppvObject) in QueryInterface() 84 ULONG STDMETHODCALLTYPE WebInspector::AddRef(void) in AddRef() 89 ULONG STDMETHODCALLTYPE WebInspector::Release(void) in Release() 98 HRESULT STDMETHODCALLTYPE WebInspector::show() in show() 107 HRESULT STDMETHODCALLTYPE WebInspector::showConsole() in showConsole() [all …]
|