Home
last modified time | relevance | path

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

/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DTextEditor.java32 final EditText textEditor = (EditText) v.findViewById(R.id.text_editor); in bindEditor() local
33 textEditor.setVisibility(View.VISIBLE); in bindEditor()
34 textEditor.setInputType(getInputType()); in bindEditor()
37 textEditor.setText(item.getValue() == null ? "" : item.getValue().toString()); in bindEditor()
41 textEditor.addTextChangedListener(new TextWatcher() { in bindEditor()
/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
DSourceRevealer.java92 ITextEditor textEditor = (ITextEditor)editor; in reveal() local
94 IEditorInput input = textEditor.getEditorInput(); in reveal()
97 IDocumentProvider documentProvider = textEditor.getDocumentProvider(); in reveal()
102 textEditor.selectAndReveal(lineInfo.getOffset(), lineInfo.getLength()); in reveal()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DAddSuppressAnnotation.java120 ITextEditor textEditor = AdtUtils.getActiveTextEditor(); in run() local
121 IDocumentProvider provider = textEditor.getDocumentProvider(); in run()
122 IEditorInput editorInput = textEditor.getEditorInput(); in run()
312 ITextEditor textEditor = AdtUtils.getActiveTextEditor(); in createFixes() local
313 IDocumentProvider provider = textEditor.getDocumentProvider(); in createFixes()
314 IEditorInput editorInput = textEditor.getEditorInput(); in createFixes()
DRunLintAction.java130 ITextEditor textEditor = AdtUtils.getActiveTextEditor(); in getMenu() local
131 if (textEditor != null) { in getMenu()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DBaseProjectHelper.java383 ITextEditor textEditor = (ITextEditor)editor; in revealSource() local
385 IEditorInput input = textEditor.getEditorInput(); in revealSource()
388 IDocumentProvider documentProvider = textEditor.getDocumentProvider(); in revealSource()
393 textEditor.selectAndReveal(lineInfo.getOffset(), lineInfo.getLength()); in revealSource()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidXmlAutoEditStrategy.java452 ITextEditor textEditor = AdtUtils.getActiveTextEditor(); in isSmartInsertMode() local
453 if (textEditor instanceof ITextEditorExtension3) { in isSmartInsertMode()
454 ITextEditorExtension3 editor = (ITextEditorExtension3) textEditor; in isSmartInsertMode()
DHyperlinks.java1414 ITextEditor textEditor = (ITextEditor) getAdapter(ITextEditor.class); in detectHyperlinks() local
1415 if (region == null || !(textEditor instanceof JavaEditor)) in detectHyperlinks()
1418 IAction openAction = textEditor.getAction("OpenEditor"); //$NON-NLS-1$ in detectHyperlinks()
1424 IJavaElement input = EditorUtility.getEditorInputJavaElement(textEditor, false); in detectHyperlinks()
1429 IDocument document = textEditor.getDocumentProvider().getDocument( in detectHyperlinks()
1430 textEditor.getEditorInput()); in detectHyperlinks()