HomeSort by relevance Sort by last modified time
    Searched full:texteditor (Results 1 - 25 of 58) sorted by null

1 2 3

  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 
  /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() {
IntEditor.java 21 public class IntEditor extends TextEditor {
LinesEditor.java 21 public class LinesEditor extends TextEditor {
Editors.java 44 editors.put(TYPE_TEXT, new TextEditor());
  /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...]
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) { },
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]);
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...]
  /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());
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/binding/editors/controls/
DefaultControlActionsManager.java 18 import org.eclipse.ui.texteditor.IWorkbenchActionDefinitionIds;
AbstractControlActionsManager.java 33 import org.eclipse.ui.texteditor.IWorkbenchActionDefinitionIds;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditorContributor.java 25 import org.eclipse.ui.texteditor.ITextEditor;
26 import org.eclipse.ui.texteditor.ITextEditorActionConstants;
  /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/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;
AndroidTextEditor.java 49 import org.eclipse.ui.editors.text.TextEditor;
61 import org.eclipse.ui.texteditor.IDocumentProvider;
70 * It is designed to work with a {@link TextEditor} that will display a text file.
94 private TextEditor mTextEditor;
170 * multi-page editor) by re-using the actions defined by the {@link TextEditor}
499 mTextEditor = new TextEditor();
527 * Gives access to the {@link IDocument} from the {@link TextEditor}, corresponding to
Hyperlinks.java 136 import org.eclipse.ui.texteditor.ITextEditor;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceXmlTextAction.java 59 import org.eclipse.ui.texteditor.IDocumentProvider;
60 import org.eclipse.ui.texteditor.ITextEditor;
61 import org.eclipse.ui.texteditor.ITextEditorExtension;
62 import org.eclipse.ui.texteditor.ITextEditorExtension2;
  /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.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 80 * Copied from org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.
99 * org.eclipse.ui.texteditor.AbstractDecoratedTextEditor of the
  /sdk/eclipse/features/com.android.ide.eclipse.adt.package/
feature.xml 39 <import plugin="org.eclipse.ui.workbench.texteditor"/>
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlFormatPreferences.java 28 import org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants;
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/
monitor.product 85 <plugin id="org.eclipse.ui.workbench.texteditor"/>

Completed in 869 milliseconds

1 2 3