HomeSort by relevance Sort by last modified time
    Searched refs:WebInspector (Results 276 - 300 of 326) sorted by null

<<11121314

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
ElementsTreeOutline.js 34 * @param {!WebInspector.Target} target
37 * @param {function(!WebInspector.DOMNode, string, boolean)=} setPseudoClassCallback
39 WebInspector.ElementsTreeOutline = function(target, omitRootDOMNode, selectEnabled, setPseudoClassCallback)
61 /** @type {?WebInspector.DOMNode} */
63 /** @type {?WebInspector.DOMNode} */
65 this._eventSupport = new WebInspector.Object();
74 /** @typedef {{node: !WebInspector.DOMNode, isCut: boolean}} */
75 WebInspector.ElementsTreeOutline.ClipboardData;
80 WebInspector.ElementsTreeOutline.Events = {
90 WebInspector.ElementsTreeOutline.MappedCharToEntity =
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
ViewportDataGrid.js 7 * @extends {WebInspector.DataGrid}
8 * @param {!Array.<!WebInspector.DataGrid.ColumnDescriptor>} columnsArray
9 * @param {function(!WebInspector.DataGridNode, string, string, string)=} editCallback
10 * @param {function(!WebInspector.DataGridNode)=} deleteCallback
12 * @param {function(!WebInspector.ContextMenu, !WebInspector.DataGridNode)=} contextMenuCallback
14 WebInspector.ViewportDataGrid = function(columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback)
16 WebInspector.DataGrid.call(this, columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback);
19 /** @type {!Array.<!WebInspector.ViewportDataGridNode>} */
41 this.setRootNode(new WebInspector.ViewportDataGridNode())
    [all...]
ResizerWidget.js 7 * @extends {WebInspector.Object}
9 WebInspector.ResizerWidget = function()
11 WebInspector.Object.call(this);
19 WebInspector.ResizerWidget.Events = {
25 WebInspector.ResizerWidget.prototype = {
113 WebInspector.elementDragStart(this._dragStart.bind(this), this._drag.bind(this), this._dragEnd.bind(this), this._isVertical ? "ns-resize" : "ew-resize", event);
125 this.dispatchEventToListeners(WebInspector.ResizerWidget.Events.ResizeStart, { startPosition: this._startPosition, currentPosition: this._startPosition });
141 this.dispatchEventToListeners(WebInspector.ResizerWidget.Events.ResizeUpdate, { startPosition: this._startPosition, currentPosition: position, shiftKey: event.shiftKey });
151 this.dispatchEventToListeners(WebInspector.ResizerWidget.Events.ResizeEnd);
155 __proto__: WebInspector.Object.prototyp
    [all...]
DataGrid.js 28 * @extends {WebInspector.View}
29 * @param {!Array.<!WebInspector.DataGrid.ColumnDescriptor>} columnsArray
30 * @param {function(!WebInspector.DataGridNode, string, string, string)=} editCallback
31 * @param {function(!WebInspector.DataGridNode)=} deleteCallback
33 * @param {function(!WebInspector.ContextMenu, !WebInspector.DataGridNode)=} contextMenuCallback
35 WebInspector.DataGrid = function(columnsArray, editCallback, deleteCallback, refreshCallback, contextMenuCallback)
37 WebInspector.View.call(this);
64 /** @type {function(!WebInspector.DataGridNode, string, string, string)|undefined} */
66 /** @type {function(!WebInspector.DataGridNode)|undefined} *
    [all...]
SidebarTreeElement.js 30 WebInspector.SidebarSectionTreeElement = function(title, representedObject, hasChildren)
36 WebInspector.SidebarSectionTreeElement.prototype = {
82 WebInspector.SidebarTreeElement = function(className, title, subtitle, representedObject, hasChildren)
103 WebInspector.SidebarTreeElement.prototype = {
SuggestBox.js 34 WebInspector.SuggestBoxDelegate = function()
38 WebInspector.SuggestBoxDelegate.prototype = {
53 * @param {!WebInspector.SuggestBoxDelegate} suggestBoxDelegate
56 WebInspector.SuggestBox = function(suggestBoxDelegate, maxItemsHeight)
69 WebInspector.SuggestBox.prototype = {
97 var container = WebInspector.Dialog.modalHostView().element;
145 this._overlay = new WebInspector.SuggestBox.Overlay();
414 WebInspector.SuggestBox.Overlay = function()
421 WebInspector.SuggestBox.Overlay.prototype = {
424 var container = WebInspector.Dialog.modalHostView().element
    [all...]
TabbedPane.js 32 * @extends {WebInspector.VBox}
35 WebInspector.TabbedPane = function()
37 WebInspector.VBox.call(this);
44 /** @type {!Array.<!WebInspector.TabbedPaneTab>} */
46 /** @type {!Array.<!WebInspector.TabbedPaneTab>} */
48 /** @type {!Object.<string, !WebInspector.TabbedPaneTab>} */
53 WebInspector.zoomManager.addEventListener(WebInspector.ZoomManager.Events.ZoomChanged, this._zoomChanged, this);
56 WebInspector.TabbedPane.EventTypes = {
61 WebInspector.TabbedPane.prototype =
    [all...]
TextPrompt.js 32 * @extends {WebInspector.Object}
33 * @implements {WebInspector.SuggestBoxDelegate}
37 WebInspector.TextPrompt = function(completions, stopCharacters)
48 WebInspector.TextPrompt.Events = {
53 WebInspector.TextPrompt.prototype = {
128 this._suggestBox = new WebInspector.SuggestBox(this);
140 WebInspector.restoreFocusFromElement(this._element);
196 WebInspector.setCurrentFocusElement(this._element);
224 * @this {WebInspector.TextPrompt}
494 this.dispatchEventToListeners(WebInspector.TextPrompt.Events.ItemApplied)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
HAREntry.js 39 * @param {!WebInspector.NetworkRequest} request
41 WebInspector.HAREntry = function(request)
46 WebInspector.HAREntry.prototype = {
54 time: this._request.timing ? WebInspector.HAREntry._toMilliseconds(this._request.duration) : 0,
160 var receive = WebInspector.HAREntry._toMilliseconds(this._request.duration) - timing.receiveHeadersEnd;
202 * @param {!Array.<!WebInspector.Cookie>} cookies
211 * @param {!WebInspector.Cookie} cookie
264 WebInspector.HAREntry._toMilliseconds = function(time)
271 * @param {!Array.<!WebInspector.NetworkRequest>} requests
273 WebInspector.HARLog = function(requests
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ObjectPopoverHelper.js 33 * @extends {WebInspector.PopoverHelper}
36 * @param {function(!Element, function(!WebInspector.RemoteObject, boolean, !Element=):undefined, string):undefined} queryObject
40 WebInspector.ObjectPopoverHelper = function(panelElement, getAnchor, queryObject, onHide, disableOnClick)
42 WebInspector.PopoverHelper.call(this, panelElement, getAnchor, this._showObjectPopover.bind(this), this._onHideObjectPopover.bind(this), disableOnClick);
49 WebInspector.ObjectPopoverHelper.prototype = {
51 * @param {function(!WebInspector.RemoteObject):string} formatter
60 * @param {!WebInspector.Popover} popover
65 * @param {!WebInspector.Target} target
68 * @param {?WebInspector.DebuggerModel.FunctionDetails} response
69 * @this {WebInspector.ObjectPopoverHelper
    [all...]
TimelineGrid.js 34 WebInspector.TimelineGrid = function()
51 * @param {!WebInspector.TimelineGrid.Calculator} calculator
54 WebInspector.TimelineGrid.calculateDividerOffsets = function(calculator)
102 * @param {!WebInspector.TimelineGrid.Calculator} calculator
105 WebInspector.TimelineGrid.drawCanvasGrid = function(canvas, calculator, dividerOffsets)
116 var dividersData = WebInspector.TimelineGrid.calculateDividerOffsets(calculator);
127 context.font = (printDeltas ? "italic bold 11px " : " 11px ") + WebInspector.fontFamily();
158 WebInspector.TimelineGrid.prototype = {
176 * @param {!WebInspector.TimelineGrid.Calculator} calculator
185 var dividersData = WebInspector.TimelineGrid.calculateDividerOffsets(calculator)
    [all...]
FlameChart.js 34 WebInspector.FlameChartDelegate = function() { }
36 WebInspector.FlameChartDelegate.prototype = {
46 * @extends {WebInspector.HBox}
47 * @param {!WebInspector.FlameChartDataProvider} dataProvider
48 * @param {!WebInspector.FlameChartDelegate} flameChartDelegate
51 WebInspector.FlameChart = function(dataProvider, flameChartDelegate, isTopDown)
53 WebInspector.HBox.call(this);
58 this._calculator = new WebInspector.FlameChart.Calculator();
67 WebInspector.installDragHandle(this._canvas, this._startCanvasDragging.bind(this), this._canvasDragging.bind(this), this._endCanvasDragging.bind(this), "move", null);
97 WebInspector.FlameChart.DividersBarHeight = 20
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
AllocationProfile.js 34 WebInspector.AllocationProfile = function(profile, liveObjectStats)
51 WebInspector.AllocationProfile.prototype = {
70 functionInfos[index++] = new WebInspector.FunctionAllocationInfo(
100 var result = new WebInspector.TopDownAllocationNode(
122 * @return {!Array.<!WebInspector.HeapSnapshotCommon.SerializedAllocationNode>}
154 * @return {!WebInspector.HeapSnapshotCommon.AllocationNodeCallers}
170 return new WebInspector.HeapSnapshotCommon.AllocationNodeCallers(nodesWithSingleCaller, branchingCallers);
175 * @return {!Array.<!WebInspector.HeapSnapshotCommon.AllocationStackFrame>}
183 result.push(new WebInspector.HeapSnapshotCommon.AllocationStackFrame(
206 * @return {!WebInspector.BottomUpAllocationNode
    [all...]
HeapSnapshot.js 34 WebInspector.HeapSnapshotItem = function() { }
36 WebInspector.HeapSnapshotItem.prototype = {
50 * @implements {WebInspector.HeapSnapshotItem}
51 * @param {!WebInspector.HeapSnapshot} snapshot
54 WebInspector.HeapSnapshotEdge = function(snapshot, edgeIndex)
61 WebInspector.HeapSnapshotEdge.prototype = {
63 * @return {!WebInspector.HeapSnapshotEdge}
67 return new WebInspector.HeapSnapshotEdge(this._snapshot, this.edgeIndex);
87 * @return {!WebInspector.HeapSnapshotNode}
129 * @return {!WebInspector.HeapSnapshotCommon.Edge
    [all...]
JSHeapSnapshot.js 33 * @extends {WebInspector.HeapSnapshot}
35 * @param {!WebInspector.HeapSnapshotProgress} progress
38 WebInspector.JSHeapSnapshot = function(profile, progress, showHiddenData)
50 WebInspector.HeapSnapshot.call(this, profile, progress);
53 WebInspector.JSHeapSnapshot.prototype = {
56 * @return {!WebInspector.JSHeapSnapshotNode}
60 return new WebInspector.JSHeapSnapshotNode(this, nodeIndex);
66 * @return {!WebInspector.JSHeapSnapshotEdge}
70 return new WebInspector.JSHeapSnapshotEdge(this, edgeIndex);
76 * @return {!WebInspector.JSHeapSnapshotRetainerEdge
    [all...]
HeapSnapshotWorkerDispatcher.js 34 WebInspector.HeapSnapshotWorkerDispatcher = function(globalObject, postMessage)
41 WebInspector.HeapSnapshotWorkerDispatcher.prototype = {
62 var data = /** @type {!WebInspector.HeapSnapshotCommon.WorkerCommand } */(event.data);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
SASSSourceMapping.js 33 * @implements {WebInspector.CSSSourceMapping}
34 * @param {!WebInspector.CSSStyleModel} cssModel
35 * @param {!WebInspector.Workspace} workspace
36 * @param {!WebInspector.NetworkWorkspaceBinding} networkWorkspaceBinding
38 WebInspector.SASSSourceMapping = function(cssModel, workspace, networkWorkspaceBinding)
48 WebInspector.fileManager.addEventListener(WebInspector.FileManager.EventTypes.SavedURL, this._fileSaveFinished, this);
49 WebInspector.settings.cssSourceMapsEnabled.addChangeListener(this._toggleSourceMapSupport, this)
50 this._cssModel.addEventListener(WebInspector.CSSStyleModel.Events.StyleSheetChanged, this._styleSheetChanged, this);
51 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Throttler.js 9 WebInspector.Throttler = function(timeout)
14 /** @type {?function(!WebInspector.Throttler.FinishCallback)} */
18 WebInspector.Throttler.prototype = {
45 * @param {function(!WebInspector.Throttler.FinishCallback)} process
94 WebInspector.Throttler.FinishCallback;
ParsedURL.js 33 WebInspector.ParsedURL = function(url)
93 WebInspector.ParsedURL.splitURLIntoPathComponents = function(url)
95 var parsedURL = new WebInspector.ParsedURL(decodeURI(url));
128 WebInspector.ParsedURL.completeURL = function(baseURL, href)
189 WebInspector.ParsedURL.prototype = {
239 * @return {?WebInspector.ParsedURL}
243 var parsedURL = new WebInspector.ParsedURL(this.toString());
  /external/chromium_org/v8/tools/
SourceMap.js 33 WebInspector = {};
34 WebInspector.ParsedURL = {};
35 WebInspector.ParsedURL.completeURL = function(){};
75 WebInspector.SourceMap = function(sourceMappingURL, payload)
77 if (!WebInspector.SourceMap.prototype._base64Map) {
79 WebInspector.SourceMap.prototype._base64Map = {};
81 WebInspector.SourceMap.prototype._base64Map[base64Digits.charAt(i)] = i;
95 * @param {function(WebInspector.SourceMap)} callback
97 WebInspector.SourceMap.load = function(sourceMapURL, compiledURL, callback)
99 NetworkAgent.loadResourceForFrontend(WebInspector.resourceTreeModel.mainFrame.id, sourceMapURL, undefined, contentLoaded.bind(this))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
Placard.js 32 WebInspector.Placard = function(title, subtitle)
46 WebInspector.Placard.prototype = {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineMemoryOverview.js 33 * @extends {WebInspector.TimelineOverviewBase}
34 * @param {!WebInspector.TimelineModel} model
35 * @param {!WebInspector.TimelineUIUtils} uiUtils
37 WebInspector.TimelineMemoryOverview = function(model, uiUtils)
39 WebInspector.TimelineOverviewBase.call(this, model);
46 WebInspector.TimelineMemoryOverview.prototype = {
70 * @param {!WebInspector.TimelineModel.Record} record
92 * @param {!WebInspector.TimelineModel.Record} record
139 this._heapSizeLabel.textContent = WebInspector.UIString("%s \u2013 %s", Number.bytesToString(minUsedHeapSize), Number.bytesToString(maxUsedHeapSize));
142 __proto__: WebInspector.TimelineOverviewBase.prototyp
    [all...]
TimelineFrameOverview.js 33 * @extends {WebInspector.TimelineOverviewBase}
34 * @param {!WebInspector.TimelineModel} model
35 * @param {!WebInspector.TimelineFrameModelBase} frameModel
37 WebInspector.TimelineFrameOverview = function(model, frameModel)
39 WebInspector.TimelineOverviewBase.call(this, model);
53 var categories = WebInspector.TimelineUIUtils.categories();
55 this._fillStyles[category] = WebInspector.TimelineUIUtils.createFillStyleForCategory(this._context, this._maxInnerBarWidth, 0, categories[category]);
62 WebInspector.TimelineFrameOverview.prototype = {
64 * @param {!WebInspector.OverviewGrid} grid
104 * @param {!Array.<!WebInspector.TimelineFrame>} frame
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/host/
InspectorFrontendHost.js 291 WebInspector.InspectorFrontendHostStub = function()
295 WebInspector.InspectorFrontendHostStub.prototype = {
395 document.title = WebInspector.UIString("Developer Tools - %s", url);
403 WebInspector.console.error("Clipboard is not enabled in hosted mode. Please inspect using chrome://inspect");
421 WebInspector.console.error("Saving files is not enabled in hosted mode. Please inspect using chrome://inspect");
431 WebInspector.console.error("Saving files is not enabled in hosted mode. Please inspect using chrome://inspect");
606 InspectorFrontendHost = new WebInspector.InspectorFrontendHostStub();
609 var proto = WebInspector.InspectorFrontendHostStub.prototype;
630 InspectorFrontendHost.events = new WebInspector.Object();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
OverridesUI.js 5 WebInspector.OverridesUI = {}
12 WebInspector.OverridesUI.createDeviceSelect = function(document, titleProvider)
20 saveButton.textContent = WebInspector.UIString("Save as");
24 removeButton.textContent = WebInspector.UIString("Remove");
29 WebInspector.overridesSupport.settings.emulateResolution.addChangeListener(emulatedSettingChanged);
30 WebInspector.overridesSupport.settings.deviceWidth.addChangeListener(emulatedSettingChanged);
31 WebInspector.overridesSupport.settings.deviceHeight.addChangeListener(emulatedSettingChanged);
32 WebInspector.overridesSupport.settings.deviceScaleFactor.addChangeListener(emulatedSettingChanged);
33 WebInspector.overridesSupport.settings.emulateMobile.addChangeListener(emulatedSettingChanged);
34 WebInspector.overridesSupport.settings.emulateTouch.addChangeListener(emulatedSettingChanged)
    [all...]

Completed in 1900 milliseconds

<<11121314