HomeSort by relevance Sort by last modified time
    Searched refs:textEditor (Results 1 - 16 of 16) sorted by null

  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
TextEditor.java 29 public class TextEditor implements Editor {
32 final EditText textEditor = (EditText) v.findViewById(R.id.text_editor);
33 textEditor.setVisibility(View.VISIBLE);
34 textEditor.setInputType(getInputType());
37 textEditor.setText(item.getValue() == null ? "" : item.getValue().toString());
41 textEditor.addTextChangedListener(new TextWatcher() {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
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);
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._handleGutterClick.bind(this), this);
54 this.textEditor.element.addEventListener("mousedown", this._onMouseDownAndClick.bind(this, true), true);
55 this.textEditor.element.addEventListener("click", this._onMouseDownAndClick.bind(this, false), true);
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))
    [all...]
UISourceCodeFrame.js 50 this.textEditor.setCompletionDictionary(WebInspector.settings.textEditorAutocompletion.get() ? new WebInspector.SampleCompletionDictionary() : null);
141 this.textEditor.setSelection(new WebInspector.TextRange(start[0], start[1],
143 this.textEditor.revealLine(start[0]);
TextEditor.js 35 WebInspector.TextEditor = function() { };
37 WebInspector.TextEditor.Events = {
42 WebInspector.TextEditor.GutterClickEventData;
44 WebInspector.TextEditor.prototype = {
171 * @param {!WebInspector.TextEditor} textEditor
173 inheritScrollPositions: function(textEditor) { },
CodeMirrorTextEditor.js 54 * @implements {WebInspector.TextEditor}
696 this.dispatchEventToListeners(WebInspector.TextEditor.Events.GutterClick, { lineNumber: lineNumber, event: event });
820 * @param {!WebInspector.TextEditor} textEditor
822 inheritScrollPositions: function(textEditor)
    [all...]
SourceFrame.js 163 get textEditor()
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
SourceRevealer.java 49 import org.eclipse.ui.texteditor.IDocumentProvider;
50 import org.eclipse.ui.texteditor.ITextEditor;
92 ITextEditor textEditor = (ITextEditor)editor;
94 IEditorInput input = textEditor.getEditorInput();
97 IDocumentProvider documentProvider = textEditor.getDocumentProvider();
102 textEditor.selectAndReveal(lineInfo.getOffset(), lineInfo.getLength());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAnnotation.java 68 import org.eclipse.ui.texteditor.IDocumentProvider;
69 import org.eclipse.ui.texteditor.ITextEditor;
120 ITextEditor textEditor = AdtUtils.getActiveTextEditor();
121 IDocumentProvider provider = textEditor.getDocumentProvider();
122 IEditorInput editorInput = textEditor.getEditorInput();
312 ITextEditor textEditor = AdtUtils.getActiveTextEditor();
313 IDocumentProvider provider = textEditor.getDocumentProvider();
314 IEditorInput editorInput = textEditor.getEditorInput();
RunLintAction.java 49 import org.eclipse.ui.texteditor.ITextEditor;
130 ITextEditor textEditor = AdtUtils.getActiveTextEditor();
131 if (textEditor != null) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 55 import org.eclipse.ui.texteditor.IDocumentProvider;
56 import org.eclipse.ui.texteditor.ITextEditor;
380 ITextEditor textEditor = (ITextEditor)editor;
382 IEditorInput input = textEditor.getEditorInput();
385 IDocumentProvider documentProvider = textEditor.getDocumentProvider();
390 textEditor.selectAndReveal(lineInfo.getOffset(), lineInfo.getLength());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategy.java 36 import org.eclipse.ui.texteditor.ITextEditor;
37 import org.eclipse.ui.texteditor.ITextEditorExtension3;
452 ITextEditor textEditor = AdtUtils.getActiveTextEditor();
453 if (textEditor instanceof ITextEditorExtension3) {
454 ITextEditorExtension3 editor = (ITextEditorExtension3) textEditor;
Hyperlinks.java 136 import org.eclipse.ui.texteditor.ITextEditor;
    [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 673 milliseconds