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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Script.js 28 * @extends {WebInspector.SDKObject}
29 * @implements {WebInspector.ContentProvider}
30 * @param {!WebInspector.Target} target
41 WebInspector.Script = function(target, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
43 WebInspector.SDKObject.call(this, target);
55 WebInspector.Script.Events = {
60 WebInspector.Script.snippetSourceURLPrefix = "snippets:///";
62 WebInspector.Script.sourceURLRegex = /\n[\040\t]*\/\/[@#]\ssourceURL=\s*(\S*?)\s*$/mg;
68 WebInspector.Script._trimSourceURLComment = function(source)
70 return source.replace(WebInspector.Script.sourceURLRegex, "")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
Layers3DView.js 33 * @extends {WebInspector.VBox}
35 WebInspector.Layers3DView = function()
37 WebInspector.VBox.call(this);
39 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("Layer information is not yet available."));
41 this._transformController = new WebInspector.TransformController(this.element);
42 this._transformController.addEventListener(WebInspector.TransformController.Events.TransformChanged, this._update, this);
59 this._textureManager = new WebInspector.LayerTextureManager();
60 this._textureManager.addEventListener(WebInspector.LayerTextureManager.Events.TextureUpdated, this._update, this);
62 WebInspector.settings.showPaintRects.addChangeListener(this._update, this)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
BreakpointsSidebarPane.js 28 * @extends {WebInspector.SidebarPane}
29 * @param {!WebInspector.BreakpointManager} breakpointManager
30 * @param {function(!WebInspector.UISourceCode, number=, number=, boolean=)} showSourceLineDelegate
32 WebInspector.JavaScriptBreakpointsSidebarPane = function(breakpointManager, showSourceLineDelegate)
34 WebInspector.SidebarPane.call(this, WebInspector.UIString("Breakpoints"));
43 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
51 this._breakpointManager.addEventListener(WebInspector.BreakpointManager.Events.BreakpointAdded, this._breakpointAdded, this);
52 this._breakpointManager.addEventListener(WebInspector.BreakpointManager.Events.BreakpointRemoved, this._breakpointRemoved, this);
57 WebInspector.JavaScriptBreakpointsSidebarPane.prototype =
    [all...]
FilteredItemSelectionDialog.js 33 * @extends {WebInspector.DialogDelegate}
34 * @implements {WebInspector.ViewportControl.Provider}
35 * @param {!WebInspector.SelectionDialogContentProvider} delegate
37 WebInspector.FilteredItemSelectionDialog = function(delegate)
39 WebInspector.DialogDelegate.call(this);
41 if (!WebInspector.FilteredItemSelectionDialog._stylesLoaded) {
42 WebInspector.View.createStyleElement("filteredItemSelectionDialog.css");
43 WebInspector.FilteredItemSelectionDialog._stylesLoaded = true;
56 this._viewportControl = new WebInspector.ViewportControl(this);
68 WebInspector.FilteredItemSelectionDialog.prototype =
    [all...]
UISourceCodeFrame.js 31 * @extends {WebInspector.SourceFrame}
32 * @param {!WebInspector.UISourceCode} uiSourceCode
34 WebInspector.UISourceCodeFrame = function(uiSourceCode)
37 WebInspector.SourceFrame.call(this, this._uiSourceCode);
38 WebInspector.settings.textEditorAutocompletion.addChangeListener(this._enableAutocompletionIfNeeded, this);
41 this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyChanged, this._onWorkingCopyChanged, this);
42 this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyCommitted, this._onWorkingCopyCommitted, this);
46 WebInspector.UISourceCodeFrame.prototype = {
48 * @return {!WebInspector.UISourceCode}
57 this.textEditor.setCompletionDictionary(WebInspector.settings.textEditorAutocompletion.get() ? new WebInspector.SampleCompletionDictionary() : null)
    [all...]
CallStackSidebarPane.js 28 * @extends {WebInspector.SidebarPane}
30 WebInspector.CallStackSidebarPane = function()
32 WebInspector.SidebarPane.call(this, WebInspector.UIString("Call Stack"));
36 var asyncCheckbox = this.titleElement.appendChild(WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIString("Async"), WebInspector.settings.enableAsyncStackTraces, true, undefined, WebInspector.UIString("Capture async stack traces")));
39 WebInspector.settings.enableAsyncStackTraces.addChangeListener(this._asyncStackTracesStateChanged, this);
40 WebInspector.settings.skipStackFramesPattern.addChangeListener(this._blackboxingStateChanged, this)
    [all...]
SourcesView.js 7 * @implements {WebInspector.TabbedEditorContainerDelegate}
8 * @implements {WebInspector.Searchable}
9 * @implements {WebInspector.Replaceable}
10 * @extends {WebInspector.VBox}
11 * @param {!WebInspector.Workspace} workspace
12 * @param {!WebInspector.SourcesPanel} sourcesPanel
14 WebInspector.SourcesView = function(workspace, sourcesPanel)
16 WebInspector.VBox.call(this);
24 this._searchableView = new WebInspector.SearchableView(this);
28 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.UISourceCodeFrame>} *
    [all...]
RevisionHistoryView.js 33 * @extends {WebInspector.VBox}
35 WebInspector.RevisionHistoryView = function()
37 WebInspector.VBox.call(this);
47 * @param {!WebInspector.UISourceCode} uiSourceCode
48 * @this {WebInspector.RevisionHistoryView}
56 WebInspector.workspace.uiSourceCodes().forEach(populateRevisions.bind(this));
57 WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeContentCommitted, this._revisionAdded, this);
58 WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestTimingView.js 33 * @extends {WebInspector.VBox}
34 * @param {!WebInspector.NetworkRequest} request
36 WebInspector.RequestTimingView = function(request)
38 WebInspector.VBox.call(this);
44 WebInspector.RequestTimingView.prototype = {
47 this._request.addEventListener(WebInspector.NetworkRequest.Events.TimingChanged, this._refresh, this);
48 this._request.addEventListener(WebInspector.NetworkRequest.Events.FinishedLoading, this._refresh, this);
52 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("This request has no detailed timing info."));
69 this._request.removeEventListener(WebInspector.NetworkRequest.Events.TimingChanged, this._refresh, this)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
ProfileLauncherView.js 33 * @extends {WebInspector.VBox}
34 * @implements {WebInspector.TargetManager.Observer}
35 * @param {!WebInspector.ProfilesPanel} profilesPanel
37 WebInspector.ProfileLauncherView = function(profilesPanel)
39 WebInspector.VBox.call(this);
50 selectTargetText.textContent = WebInspector.UIString("Target:");
52 new WebInspector.TargetsComboBoxController(targetsSelect, targetSpan);
57 this._loadButton.textContent = WebInspector.UIString("Load");
59 WebInspector.targetManager.observeTargets(this);
62 WebInspector.ProfileLauncherView.prototype =
    [all...]
CPUProfileView.js 29 * @extends {WebInspector.VBox}
30 * @param {!WebInspector.CPUProfileHeader} profileHeader
32 WebInspector.CPUProfileView = function(profileHeader)
34 WebInspector.VBox.call(this);
37 this._viewType = WebInspector.settings.createSetting("cpuProfilerView", WebInspector.CPUProfileView._TypeHeavy);
40 columns.push({id: "self", title: WebInspector.UIString("Self"), width: "120px", sort: WebInspector.DataGrid.Order.Descending, sortable: true});
41 columns.push({id: "total", title: WebInspector.UIString("Total"), width: "120px", sortable: true});
42 columns.push({id: "function", title: WebInspector.UIString("Function"), disclosure: true, sortable: true})
    [all...]
ProfilesPanel.js 28 * @extends {WebInspector.Object}
32 WebInspector.ProfileType = function(id, name)
34 WebInspector.Object.call(this);
37 /** @type {!Array.<!WebInspector.ProfileHeader>} */
39 /** @type {?WebInspector.ProfileHeader} */
49 WebInspector.ProfileType.Events = {
56 WebInspector.ProfileType.prototype = {
136 * @return {!Array.<!WebInspector.ProfileHeader>}
141 * @param {!WebInspector.ProfileHeader} profile
143 * @this {WebInspector.ProfileType
    [all...]
CPUProfileFlameChart.js 34 * @implements {WebInspector.FlameChartDataProvider}
35 * @param {!WebInspector.CPUProfileDataModel} cpuProfile
36 * @param {?WebInspector.Target} target
38 WebInspector.CPUFlameChartDataProvider = function(cpuProfile, target)
40 WebInspector.FlameChartDataProvider.call(this);
43 this._colorGenerator = WebInspector.CPUFlameChartDataProvider.colorGenerator();
46 WebInspector.CPUFlameChartDataProvider.prototype = {
106 * @return {?WebInspector.FlameChart.TimelineData}
132 * @return {?WebInspector.FlameChart.TimelineData}
193 this._timelineData = new WebInspector.FlameChart.TimelineData(entryLevels, entryTotalTimes, entryStartTimes)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
FrameworkBlackboxDialog.js 9 * @extends {WebInspector.DialogDelegate}
11 WebInspector.FrameworkBlackboxDialog = function()
13 WebInspector.DialogDelegate.call(this);
18 header.createChild("span").textContent = WebInspector.UIString("Framework blackbox patterns");
26 contentScriptsSection.appendChild(WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIString("Blackbox content scripts"), WebInspector.settings.skipContentScripts, true));
29 blockHeader.createChild("span").textContent = WebInspector.UIString("URI pattern");
30 blockHeader.createChild("span").textContent = WebInspector.UIString("Behavior");
35 this._blackboxLabel = WebInspector.UIString("Blackbox")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
View.js 29 * @extends {WebInspector.Object}
31 WebInspector.View = function()
44 WebInspector.View._cssFileToVisibleViewCount = {};
45 WebInspector.View._cssFileToStyleElement = {};
46 WebInspector.View._cssUnloadTimeout = 2000;
48 WebInspector.View._buildSourceURL = function(cssFile)
50 return "\n/*# sourceURL=" + WebInspector.ParsedURL.completeURL(window.location.href, cssFile) + " */";
57 WebInspector.View.createStyleElement = function(cssFile)
61 styleElement.textContent = loadResource(cssFile) + WebInspector.View._buildSourceURL(cssFile);
66 WebInspector.View.prototype =
    [all...]
ShowMoreDataGridNode.js 33 * @extends {WebInspector.DataGridNode}
39 WebInspector.ShowMoreDataGridNode = function(callback, startPosition, endPosition, chunkSize)
41 WebInspector.DataGridNode.call(this, {summaryRow:true}, false);
50 this.showNext.textContent = WebInspector.UIString("Show %d before", this._chunkSize);
59 this.showLast.textContent = WebInspector.UIString("Show %d after", this._chunkSize);
65 WebInspector.ShowMoreDataGridNode.prototype = {
91 this.showAll.textContent = WebInspector.UIString("Show all %d", totalSize);
98 WebInspector.DataGridNode.prototype.createCells.call(this);
151 __proto__: WebInspector.DataGridNode.prototype
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditLauncherView.js 33 * @param {!WebInspector.AuditController} auditController
34 * @extends {WebInspector.VBox}
36 WebInspector.AuditLauncherView = function(auditController)
38 WebInspector.VBox.call(this);
60 this._headerElement.textContent = WebInspector.UIString("No audits to run");
63 WebInspector.targetManager.addModelListener(WebInspector.NetworkManager, WebInspector.NetworkManager.EventTypes.RequestStarted, this._onRequestStarted, this);
64 WebInspector.targetManager.addModelListener(WebInspector.NetworkManager, WebInspector.NetworkManager.EventTypes.RequestFinished, this._onRequestFinished, t (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
StaticContentProvider.js 7 * @implements {WebInspector.ContentProvider}
8 * @param {!WebInspector.ResourceType} contentType
11 WebInspector.StaticContentProvider = function(contentType, content)
17 WebInspector.StaticContentProvider.prototype = {
27 * @return {!WebInspector.ResourceType}
46 * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
51 * @this {WebInspector.StaticContentProvider}
55 callback(WebInspector.ContentProvider.performSearchInContent(this._content, query, caseSensitive, isRegex));
Geometry.js 31 WebInspector.Geometry = {};
36 WebInspector.Geometry._Eps = 1e-5;
44 WebInspector.Geometry.Vector = function(x, y, z)
51 WebInspector.Geometry.Vector.prototype = {
63 if (length <= WebInspector.Geometry._Eps)
78 WebInspector.Geometry.EulerAngles = function(alpha, beta, gamma)
87 * @return {!WebInspector.Geometry.EulerAngles}
89 WebInspector.Geometry.EulerAngles.fromRotationMatrix = function(rotationMatrix)
94 return new WebInspector.Geometry.EulerAngles(WebInspector.Geometry.radToDeg(alpha), WebInspector.Geometry.radToDeg(beta), WebInspector.Geometry.radToDeg(gam (…)
    [all...]
Settings.js 34 WebInspector.Settings = function()
36 this._eventSupport = new WebInspector.Object();
37 this._registry = /** @type {!Object.<string, !WebInspector.Setting>} */ ({});
100 WebInspector.Settings.prototype = {
104 * @return {!WebInspector.Setting}
109 this._registry[key] = new WebInspector.Setting(key, defaultValue, this._eventSupport, window.localStorage);
117 * @return {!WebInspector.Setting}
122 this._registry[key] = new WebInspector.RegExpSetting(key, defaultValue, this._eventSupport, window.localStorage, regexFlags);
131 * @param {!WebInspector.Object} eventSupport
135 WebInspector.Setting = function(name, defaultValue, eventSupport, storage
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionAuditCategory.js 33 * @implements {WebInspector.AuditCategory}
39 WebInspector.ExtensionAuditCategory = function(extensionOrigin, id, displayName, ruleCount)
47 WebInspector.ExtensionAuditCategory.prototype = {
66 * @param {!WebInspector.Target} target
67 * @param {!Array.<!WebInspector.NetworkRequest>} requests
68 * @param {function(!WebInspector.AuditRuleResult)} ruleResultCallback
70 * @param {!WebInspector.Progress} progress
74 var results = new WebInspector.ExtensionAuditCategoryResults(this, target, ruleResultCallback, categoryDoneCallback, progress);
75 WebInspector.extensionServer.startAuditRun(this, results);
81 * @param {!WebInspector.ExtensionAuditCategory} categor
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
HeapSnapshotWorker.js 36 var dispatcher = new WebInspector.HeapSnapshotWorkerDispatcher(this, postMessageWrapper);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
LiveLocation.js 7 * @param {function(!WebInspector.UILocation):(boolean|undefined)} updateDelegate
9 WebInspector.LiveLocation = function(updateDelegate)
14 WebInspector.LiveLocation.prototype = {
25 * @return {!WebInspector.UILocation}
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
IndexedDBViews.js 33 * @extends {WebInspector.VBox}
34 * @param {!WebInspector.IndexedDBModel.Database} database
36 WebInspector.IDBDatabaseView = function(database)
38 WebInspector.VBox.call(this);
66 WebInspector.IDBDatabaseView.prototype = {
82 this._securityOriginTreeElement.title = this._formatHeader(WebInspector.UIString("Security origin"), this._database.databaseId.securityOrigin);
83 this._nameTreeElement.title = this._formatHeader(WebInspector.UIString("Name"), this._database.databaseId.name);
84 this._stringVersionTreeElement.title = this._formatHeader(WebInspector.UIString("String Version"), this._database.version);
85 this._intVersionTreeElement.title = this._formatHeader(WebInspector.UIString("Integer Version"), this._database.intVersion);
89 * @param {!WebInspector.IndexedDBModel.Database} databas
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorUtils.js 33 * @extends {WebInspector.InplaceEditor}
35 WebInspector.CodeMirrorUtils = function()
37 WebInspector.InplaceEditor.call(this);
41 * @param {!WebInspector.TextRange} range
44 WebInspector.CodeMirrorUtils.toPos = function(range)
55 * @return {!WebInspector.TextRange}
57 WebInspector.CodeMirrorUtils.toRange = function(start, end)
59 return new WebInspector.TextRange(start.line, start.ch, end.line, end.ch);
62 WebInspector.CodeMirrorUtils.prototype = {
82 editingContext.cssLoadView = new WebInspector.CodeMirrorCSSLoadView()
    [all...]

Completed in 573 milliseconds

1 2 3 4 5 67 8 91011>>