Home
last modified time | relevance | path

Searched refs:mSelection (Results 1 – 16 of 16) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
DExtractStringAction.java76 private ITextSelection mSelection; field in ExtractStringAction
108 mSelection = null; in selectionChanged()
112 mSelection = (ITextSelection) selection; in selectionChanged()
113 if (mSelection.getLength() > 0) { in selectionChanged()
119 action.setEnabled(mSelection != null && mFile != null); in selectionChanged()
127 if (mSelection != null && mFile != null) { in run()
128 ExtractStringRefactoring ref = new ExtractStringRefactoring(mFile, mEditor, mSelection); in run()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
DPropertySheetPage.java74 private List<CanvasViewInfo> mSelection; field in PropertySheetPage
124 if (mSelection != null) { in selectionChanged()
125 if (mSelection.isEmpty()) { in selectionChanged()
131 if (selectionCount == mSelection.size()) { in selectionChanged()
138 if (info != mSelection.get(i)) { in selectionChanged()
157 mSelection = Collections.emptyList(); in selectionChanged()
169 mSelection = newSelection; in selectionChanged()
185 if (mSelection != null && !mSelection.isEmpty()) { in startTrackingSelection()
186 for (CanvasViewInfo item : mSelection) { in startTrackingSelection()
196 if (mSelection != null && !mSelection.isEmpty()) { in stopTrackingSelection()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DClearLintMarkersAction.java29 private ISelection mSelection; field in ClearLintMarkersAction
33 mSelection = selection; in selectionChanged()
38 List<IProject> projects = RunLintAction.getProjects(mSelection, false /*warn*/); in run()
DRunLintAction.java62 private ISelection mSelection; field in RunLintAction
67 mSelection = selection; in selectionChanged()
72 List<IProject> projects = getProjects(mSelection, true /* warn */); in run()
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/actions/
DAddNativeAction.java33 private ISelection mSelection; field in AddNativeAction
38 if (mSelection instanceof IStructuredSelection) { in run()
39 IStructuredSelection ss = (IStructuredSelection) mSelection; in run()
61 mSelection = selection; in selectionChanged()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DImportProjectWizard.java43 private IStructuredSelection mSelection; field in ImportProjectWizard
53 if (mSelection != null) { in addPages()
54 mImportPage.init(mSelection, AdtUtils.getActivePart()); in addPages()
61 mSelection = selection; in init()
DNewProjectWizard.java54 private IStructuredSelection mSelection; field in NewProjectWizard
83 if (mSelection != null) { in addPages()
84 mNamePage.init(mSelection, AdtUtils.getActivePart()); in addPages()
113 mSelection = selection; in init()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
DExportAction.java36 private ISelection mSelection; field in ExportAction
49 if (mSelection instanceof IStructuredSelection) { in run()
50 IStructuredSelection selection = (IStructuredSelection)mSelection; in run()
83 mSelection = selection; in selectionChanged()
DExportWizardAction.java37 private ISelection mSelection; field in ExportWizardAction
50 if (mSelection instanceof IStructuredSelection) { in run()
51 IStructuredSelection selection = (IStructuredSelection)mSelection; in run()
92 mSelection = selection; in selectionChanged()
DOpenWizardAction.java65 private ISelection mSelection; field in OpenWizardAction
112 ISelection selection = mSelection; in run()
173 mSelection = selection; in selectionChanged()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
DFixProjectAction.java50 private ISelection mSelection; field in FixProjectAction
61 if (mSelection instanceof IStructuredSelection) { in run()
63 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator(); in run()
82 mSelection = selection; in selectionChanged()
DDexDumpAction.java63 private ISelection mSelection; field in DexDumpAction
72 if (mSelection instanceof IStructuredSelection) { in run()
73 for (Iterator<?> it = ((IStructuredSelection)mSelection).iterator(); it.hasNext();) { in run()
90 mSelection = selection; in selectionChanged()
DAddSupportJarAction.java97 private ISelection mSelection; field in AddSupportJarAction
108 if (mSelection instanceof IStructuredSelection) { in run()
110 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator(); in run()
129 mSelection = selection; in selectionChanged()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
DRenamePackageAction.java63 private ISelection mSelection; field in RenamePackageAction
76 mSelection = selection; in selectionChanged()
90 if (mSelection instanceof IStructuredSelection) { in run()
91 for (Iterator<?> it = ((IStructuredSelection) mSelection).iterator(); it.hasNext();) { in run()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DXmlEditorMultiOutline.java57 private ISelection mSelection; field in XmlEditorMultiOutline
125 return mSelection; in getSelection()
167 mSelection = selection; in setSelection()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DVisualRefactoring.java120 protected final ITextSelection mSelection; field in VisualRefactoring
148 mSelection = null; in VisualRefactoring()
163 mSelection = null; in VisualRefactoring()
188 mSelection = selection; in VisualRefactoring()
661 assert mTreeSelection == null || mSelection == null : in initElements()
662 "treeSel= " + mTreeSelection + ", sel=" + mSelection; in initElements() local
692 } else if (mSelection != null) { in initElements()
693 mSelectionStart = mSelection.getOffset(); in initElements()
694 mSelectionEnd = mSelectionStart + mSelection.getLength(); in initElements()