Searched refs:textEditor (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | JavaScriptSourceFrame.js | 47 this._popoverHelper = new WebInspector.ObjectPopoverHelper(this.textEditor.element, 50 this.textEditor.element.addEventListener("keydown", this._onKeyDown.bind(this), true); 52 …this.textEditor.addEventListener(WebInspector.TextEditor.Events.GutterClick, this._handleGutterCli… 54 …this.textEditor.element.addEventListener("mousedown", this._onMouseDownAndClick.bind(this, true), … 55 …this.textEditor.element.addEventListener("click", this._onMouseDownAndClick.bind(this, false), tru… 88 var textSelection = this.textEditor.selection(); 90 this._innerAddToWatch(this.textEditor.copyRange(textSelection)); 106 var selection = this.textEditor.selection(); 109 WebInspector.evaluateInConsole(this.textEditor.copyRange(selection)); 153 var textSelection = this.textEditor.selection(); [all …]
|
D | CSSSourceFrame.js | 76 var selection = this.textEditor.selection().normalize(); 77 var token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn); 80 … token = this.textEditor.tokenAtTextPosition(selection.startLine, selection.startColumn - 1); 88 var cssUnitText = this.textEditor.copyRange(cssUnitRange); 92 this.textEditor.editRange(cssUnitRange, newUnitText); 95 this.textEditor.setSelection(selection);
|
D | UISourceCodeFrame.js | 50 …this.textEditor.setCompletionDictionary(WebInspector.settings.textEditorAutocompletion.get() ? new… 141 this.textEditor.setSelection(new WebInspector.TextRange(start[0], start[1], 143 this.textEditor.revealLine(start[0]);
|
D | TextEditor.js | 173 inheritScrollPositions: function(textEditor) { }, argument
|
D | CodeMirrorTextEditor.js | 822 inheritScrollPositions: function(textEditor) argument 1440 WebInspector.CodeMirrorTextEditor.AutocompleteController = function(textEditor, codeMirror) argument 1442 this._textEditor = textEditor;
|
D | SourceFrame.js | 163 get textEditor() getter in WebInspector.SourceFrame
|