Home
last modified time | relevance | path

Searched refs:textEditor (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DJavaScriptSourceFrame.js47 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 …]
DCSSSourceFrame.js76 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);
DUISourceCodeFrame.js50 …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]);
DTextEditor.js173 inheritScrollPositions: function(textEditor) { }, argument
DCodeMirrorTextEditor.js822 inheritScrollPositions: function(textEditor) argument
1440 WebInspector.CodeMirrorTextEditor.AutocompleteController = function(textEditor, codeMirror) argument
1442 this._textEditor = textEditor;
DSourceFrame.js163 get textEditor() getter in WebInspector.SourceFrame