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

<<11121314

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
Workspace.js 34 WebInspector.ProjectSearchConfig = function() {}
36 WebInspector.ProjectSearchConfig.prototype = {
70 * @param {!WebInspector.ResourceType} contentType
72 WebInspector.FileDescriptor = function(parentPath, name, originURL, url, contentType)
84 WebInspector.ProjectDelegate = function() { }
86 WebInspector.ProjectDelegate.prototype = {
134 * @param {function(boolean, string=, string=, string=, !WebInspector.ResourceType=)} callback
169 * @param {function(!Array.<!WebInspector.ContentProvider.SearchMatch>)} callback
174 * @param {!WebInspector.ProjectSearchConfig} searchConfig
176 * @param {!WebInspector.Progress} progres
    [all...]
SearchConfig.js 7 * @implements {WebInspector.ProjectSearchConfig}
12 WebInspector.SearchConfig = function(query, ignoreCase, isRegex)
21 WebInspector.SearchConfig.RegexQuery;
25 * @return {!WebInspector.SearchConfig}
27 WebInspector.SearchConfig.fromPlainObject = function(object)
29 return new WebInspector.SearchConfig(object.query, object.ignoreCase, object.isRegex);
32 WebInspector.SearchConfig.prototype = {
79 * @type {!Array.<!WebInspector.SearchConfig.QueryTerm>}
95 /** @type {!Array.<!WebInspector.SearchConfig.RegexQuery>} */
145 * @return {?WebInspector.SearchConfig.QueryTerm
    [all...]
IsolatedFileSystem.js 33 * @param {!WebInspector.IsolatedFileSystemManager} manager
38 WebInspector.IsolatedFileSystem = function(manager, path, name, rootURL)
50 WebInspector.IsolatedFileSystem.errorMessage = function(error)
52 return WebInspector.UIString("File system error: %s", error.message);
59 WebInspector.IsolatedFileSystem.normalizePath = function(fileSystemPath)
61 if (WebInspector.isWin())
66 WebInspector.IsolatedFileSystem.prototype = {
82 this._normalizedPath = WebInspector.IsolatedFileSystem.normalizePath(this._path);
122 * @this {WebInspector.IsolatedFileSystem}
134 * @this {WebInspector.IsolatedFileSystem
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
RemoteObject.js 32 * This may not be an interface due to "instanceof WebInspector.RemoteObject" checks in the code.
36 WebInspector.RemoteObject = function() { }
38 WebInspector.RemoteObject.prototype = {
72 * @param {function(?Array.<!WebInspector.RemoteObjectProperty>, ?Array.<!WebInspector.RemoteObjectProperty>)} callback
81 * @param {function(?Array.<!WebInspector.RemoteObjectProperty>, ?Array.<!WebInspector.RemoteObjectProperty>)} callback
100 * @param {function(?WebInspector.RemoteObject, boolean=)=} callback
118 * @return {!WebInspector.Target}
134 * @param {function(?WebInspector.DebuggerModel.FunctionDetails)} callbac
    [all...]
ContentProviders.js 33 * @implements {WebInspector.ContentProvider}
34 * @param {!Array.<!WebInspector.Script>} scripts
36 WebInspector.ConcatenatedScriptsContentProvider = function(scripts)
41 WebInspector.ConcatenatedScriptsContentProvider.scriptOpenTag = "<script>";
42 WebInspector.ConcatenatedScriptsContentProvider.scriptCloseTag = "</script>";
44 WebInspector.ConcatenatedScriptsContentProvider.prototype = {
46 * @return {!Array.<!WebInspector.Script>}
58 var scriptOpenTagLength = WebInspector.ConcatenatedScriptsContentProvider.scriptOpenTag.length;
59 var scriptCloseTagLength = WebInspector.ConcatenatedScriptsContentProvider.scriptCloseTag.length;
83 * @return {!WebInspector.ResourceType
    [all...]
Resource.js 31 * @extends {WebInspector.SDKObject}
32 * @implements {WebInspector.ContentProvider}
33 * @param {!WebInspector.Target} target
34 * @param {?WebInspector.NetworkRequest} request
39 * @param {!WebInspector.ResourceType} type
43 WebInspector.Resource = function(target, request, url, documentURL, frameId, loaderId, type, mimeType, isHidden)
45 WebInspector.SDKObject.call(this, target);
51 this._type = type || WebInspector.resourceTypes.Other;
59 this._request.addEventListener(WebInspector.NetworkRequest.Events.FinishedLoading, this._requestFinished, this);
62 WebInspector.Resource.Events =
    [all...]
NetworkRequest.js 33 * @extends {WebInspector.SDKObject}
34 * @implements {WebInspector.ContentProvider}
36 * @param {!WebInspector.Target} target
43 WebInspector.NetworkRequest = function(target, requestId, url, documentURL, frameId, loaderId, initiator)
45 WebInspector.SDKObject.call(this, target);
62 this._type = WebInspector.resourceTypes.Other;
65 /** @type {!Array.<!WebInspector.NetworkRequest.WebSocketFrame>} */
76 WebInspector.NetworkRequest.Events = {
85 WebInspector.NetworkRequest.InitiatorType = {
93 WebInspector.NetworkRequest.NameValue
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineLayersView.js 9 * @extends {WebInspector.VBox}
11 WebInspector.TimelineLayersView = function()
13 WebInspector.VBox.call(this);
16 this._layers3DView = new WebInspector.Layers3DView();
17 this._layers3DView.addEventListener(WebInspector.Layers3DView.Events.ObjectSelected, this._onObjectSelected, this);
18 this._layers3DView.addEventListener(WebInspector.Layers3DView.Events.ObjectHovered, this._onObjectHovered, this);
19 this._layers3DView.addEventListener(WebInspector.Layers3DView.Events.JumpToPaintEventRequested, this._jumpToPaintEvent, this);
23 WebInspector.TimelineLayersView.prototype = {
25 * @param {!WebInspector.DeferredLayerTree} deferredLayerTree
26 * @param {?Array.<!WebInspector.LayerPaintEvent>} paint
    [all...]
TimelineView.js 34 * @extends {WebInspector.HBox}
35 * @implements {WebInspector.TimelineModeView}
36 * @param {!WebInspector.TimelineModeViewDelegate} delegate
37 * @param {!WebInspector.TimelineModel} model
38 * @param {!WebInspector.TimelineUIUtils} uiUtils
40 WebInspector.TimelineView = function(delegate, model, uiUtils)
42 WebInspector.HBox.call(this);
48 this._presentationModel = new WebInspector.TimelinePresentationModel(model, uiUtils);
49 this._calculator = new WebInspector.TimelineCalculator(model);
50 this._linkifier = new WebInspector.Linkifier()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DropDownMenu.js 7 * @extends {WebInspector.Object}
9 WebInspector.DropDownMenu = function()
17 WebInspector.DropDownMenu.Events = {
22 WebInspector.DropDownMenu.prototype = {
25 this.dispatchEventToListeners(WebInspector.DropDownMenu.Events.BeforeShow, null);
32 this.dispatchEventToListeners(WebInspector.DropDownMenu.Events.ItemSelected, selectedOption.id);
67 __proto__: WebInspector.Object.prototype
PieChart.js 36 WebInspector.PieChart = function(size, formatter)
38 var shadowSize = WebInspector.PieChart._ShadowSizePercent;
40 this.element.appendChild(WebInspector.View.createStyleElement("pieChart.css"));
60 WebInspector.PieChart._ShadowSizePercent = 0.02;
62 WebInspector.PieChart.prototype = {
85 this._group.setAttribute("transform", "scale(" + (value / 2) + ") translate(" + (1 + WebInspector.PieChart._ShadowSizePercent) + ",1)");
DOMSyntaxHighlighter.js 36 WebInspector.DOMSyntaxHighlighter = function(mimeType, stripExtraWhitespace)
42 WebInspector.DOMSyntaxHighlighter.prototype = {
71 * @this {WebInspector.DOMSyntaxHighlighter}
86 var tokenize = self.runtime.instance(WebInspector.TokenizerFactory).createTokenizer(this._mimeType);
SettingsUI.js 31 WebInspector.SettingsUI = {}
35 * @param {!WebInspector.Setting} setting
41 WebInspector.SettingsUI.createSettingCheckbox = function(name, setting, omitParagraphElement, inputElement, tooltip)
46 WebInspector.SettingsUI.bindCheckbox(input, setting);
64 * @param {!WebInspector.Setting} setting
66 WebInspector.SettingsUI.bindCheckbox = function(input, setting)
86 * @param {!WebInspector.Setting} setting
96 WebInspector.SettingsUI.createSettingInputField = function(label, setting, numeric, maxLength, width, validatorCallback, instant, clearForZero, placeholder)
208 WebInspector.SettingsUI.createCustomSetting = function(name, element)
218 * @param {!WebInspector.Setting} settin
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
ResourceScriptMapping.js 33 * @implements {WebInspector.DebuggerSourceMapping}
34 * @param {!WebInspector.DebuggerModel} debuggerModel
35 * @param {!WebInspector.Workspace} workspace
36 * @param {!WebInspector.DebuggerWorkspaceBinding} debuggerWorkspaceBinding
38 WebInspector.ResourceScriptMapping = function(debuggerModel, workspace, debuggerWorkspaceBinding)
43 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this);
44 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
48 /** @type {!Map.<!WebInspector.UISourceCode, !WebInspector.ResourceScriptFile>} */
51 debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this)
    [all...]
BreakpointManager.js 33 * @extends {WebInspector.Object}
34 * @implements {WebInspector.TargetManager.Observer}
35 * @param {!WebInspector.Setting} breakpointStorage
36 * @param {!WebInspector.Workspace} workspace
37 * @param {!WebInspector.TargetManager} targetManager
38 * @param {!WebInspector.DebuggerWorkspaceBinding} debuggerWorkspaceBinding
40 WebInspector.BreakpointManager = function(breakpointStorage, workspace, targetManager, debuggerWorkspaceBinding)
42 this._storage = new WebInspector.BreakpointManager.Storage(this, breakpointStorage);
50 /** @type {!StringMultimap.<!WebInspector.BreakpointManager.Breakpoint>} */
53 this._workspace.addEventListener(WebInspector.Workspace.Events.ProjectRemoved, this._projectRemoved, this)
    [all...]
CompilerScriptMapping.js 33 * @implements {WebInspector.DebuggerSourceMapping}
34 * @param {!WebInspector.DebuggerModel} debuggerModel
35 * @param {!WebInspector.Workspace} workspace
36 * @param {!WebInspector.NetworkWorkspaceBinding} networkWorkspaceBinding
37 * @param {!WebInspector.DebuggerWorkspaceBinding} debuggerWorkspaceBinding
39 WebInspector.CompilerScriptMapping = function(debuggerModel, workspace, networkWorkspaceBinding, debuggerWorkspaceBinding)
44 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAddedToWorkspace, this);
48 /** @type {!Object.<string, !WebInspector.SourceMap>} */
50 /** @type {!Object.<string, !Array.<function(?WebInspector.SourceMap)>>} */
52 /** @type {!Object.<string, !WebInspector.SourceMap>} *
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
SourceFrame.js 32 * @extends {WebInspector.VBox}
34 * @implements {WebInspector.Replaceable}
35 * @param {!WebInspector.ContentProvider} contentProvider
37 WebInspector.SourceFrame = function(contentProvider)
39 WebInspector.VBox.call(this);
45 var textEditorDelegate = new WebInspector.TextEditorDelegateForSourceFrame(this);
47 this._textEditor = new WebInspector.CodeMirrorTextEditor(this._url, textEditorDelegate);
60 this._sourcePosition = new WebInspector.StatusBarText("", "source-frame-cursor-position");
62 this._errorPopoverHelper = new WebInspector.PopoverHelper(this.element, this._getErrorAnchor.bind(this), this._showErrorPopover.bind(this));
71 WebInspector.SourceFrame.createSearchRegex = function(query, modifiers
    [all...]
CodeMirrorTextEditor.js 33 * @extends {WebInspector.VBox}
34 * @implements {WebInspector.TextEditor}
36 * @param {!WebInspector.TextEditorDelegate} delegate
38 WebInspector.CodeMirrorTextEditor = function(url, delegate)
40 WebInspector.VBox.call(this);
121 WebInspector.settings.textEditorIndent.addChangeListener(this._updateEditorIndentation, this);
122 WebInspector.settings.textEditorAutoDetectIndent.addChangeListener(this._updateEditorIndentation, this);
124 WebInspector.settings.showWhitespacesInEditor.addChangeListener(this._updateCodeMirrorMode, this);
125 WebInspector.settings.textEditorBracketMatching.addChangeListener(this._enableBracketMatchingIfNeeded, this);
128 this._codeMirror.setOption("keyMap", WebInspector.isMac() ? "devtools-mac" : "devtools-pc")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
CSSSourceFrame.js 33 * @extends {WebInspector.UISourceCodeFrame}
34 * @param {!WebInspector.UISourceCode} uiSourceCode
36 WebInspector.CSSSourceFrame = function(uiSourceCode)
38 WebInspector.UISourceCodeFrame.call(this, uiSourceCode);
42 WebInspector.CSSSourceFrame.prototype = {
45 var shortcutKeys = WebInspector.ShortcutsScreen.SourcesPanelShortcuts;
87 var cssUnitRange = new WebInspector.TextRange(selection.startLine, token.startColumn, selection.startLine, token.endColumn);
99 __proto__: WebInspector.UISourceCodeFrame.prototype
SimpleHistoryManager.js 34 WebInspector.HistoryEntry = function() { }
36 WebInspector.HistoryEntry.prototype = {
49 WebInspector.SimpleHistoryManager = function(historyDepth)
57 WebInspector.SimpleHistoryManager.prototype = {
77 * @param {!function(!WebInspector.HistoryEntry):boolean} filterOutCallback
104 * @return {?WebInspector.HistoryEntry}
112 * @param {!WebInspector.HistoryEntry} entry
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DatabaseQueryView.js 28 * @extends {WebInspector.VBox}
30 WebInspector.DatabaseQueryView = function(database)
32 WebInspector.VBox.call(this);
47 this._prompt = new WebInspector.TextPromptWithHistory(this.completions.bind(this), " ");
53 WebInspector.DatabaseQueryView.Events = {
57 WebInspector.DatabaseQueryView.prototype = {
107 * @this {WebInspector.DatabaseQueryView}
146 var dataGrid = WebInspector.SortableDataGrid.create(columnNames, values);
156 this.dispatchEventToListeners(WebInspector.DatabaseQueryView.Events.SchemaUpdated, this.database);
166 * @param {!WebInspector.View} vie
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CanvasReplayStateView.js 33 * @extends {WebInspector.VBox}
34 * @param {!WebInspector.CanvasTraceLogPlayerProxy} traceLogPlayer
36 WebInspector.CanvasReplayStateView = function(traceLogPlayer)
38 WebInspector.VBox.call(this);
44 this._prevButton = this._createControlButton(controlsContainer, "canvas-replay-state-prev", WebInspector.UIString("Previous resource."), this._onResourceNavigationClick.bind(this, false));
45 this._nextButton = this._createControlButton(controlsContainer, "canvas-replay-state-next", WebInspector.UIString("Next resource."), this._onResourceNavigationClick.bind(this, true));
46 this._createControlButton(controlsContainer, "canvas-replay-state-refresh", WebInspector.UIString("Refresh."), this._onStateRefreshClick.bind(this));
48 this._resourceSelector = new WebInspector.StatusBarComboBox(this._onReplayResourceChanged.bind(this));
49 this._currentOption = this._resourceSelector.createOption(WebInspector.UIString("<auto>"), WebInspector.UIString("Show state of the last replayed resource."), "")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TestController.js 31 WebInspector.evaluateForTestInFrontend = function(callId, script)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
MetricsSidebarPane.js 31 * @extends {WebInspector.SidebarPane}
33 WebInspector.MetricsSidebarPane = function()
35 WebInspector.SidebarPane.call(this, WebInspector.UIString("Metrics"));
38 WebInspector.MetricsSidebarPane.prototype = {
40 * @param {?WebInspector.DOMNode=} node
55 * @param {!WebInspector.Target} target
63 this._target.cssModel.removeEventListener(WebInspector.CSSStyleModel.Events.StyleSheetChanged, this._styleSheetOrMediaQueryResultChanged, this);
64 this._target.cssModel.removeEventListener(WebInspector.CSSStyleModel.Events.MediaQueryResultChanged, this._styleSheetOrMediaQueryResultChanged, this);
65 this._target.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrModified, this._attributesUpdated, this)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/screencast/
ScreencastView.js 33 * @extends {WebInspector.VBox}
34 * @implements {WebInspector.DOMNodeHighlighter}
35 * @param {!WebInspector.Target} target
37 WebInspector.ScreencastView = function(target)
39 WebInspector.VBox.call(this);
46 WebInspector.ScreencastView._bordersSize = 44;
48 WebInspector.ScreencastView._navBarHeight = 29;
50 WebInspector.ScreencastView._HttpRegex = /^https?:\/\/(.+)/;
52 WebInspector.ScreencastView.prototype = {
93 this._shortcuts[WebInspector.KeyboardShortcut.makeKey("l", WebInspector.KeyboardShortcut.Modifiers.Ctrl)] = this._focusNavigati (…)
    [all...]

Completed in 163 milliseconds

<<11121314