Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DProjectChooserHelper.java236 int selectionIndex = 0; in ProjectCombo() local
241 selectionIndex = i + 1; in ProjectCombo()
245 select(selectionIndex); in ProjectCombo()
268 int selectionIndex = 0; in setSelectedProject() local
271 selectionIndex = i + 1; // +1: Slot 0 is reserved for "Choose Project" in setSelectedProject()
272 select(selectionIndex); in setSelectedProject()
284 int selectionIndex = getSelectionIndex(); in widgetSelected() local
285 if (selectionIndex > 0 && mAvailableProjects != null in widgetSelected()
286 && selectionIndex <= mAvailableProjects.length) { in widgetSelected()
289 mProject = mAvailableProjects[selectionIndex - 1].getProject(); in widgetSelected()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DChangeLayoutWizard.java164 int selectionIndex = mTypeCombo.getSelectionIndex(); in validatePage() local
165 String type = selectionIndex != -1 ? mClassNames.get(selectionIndex).getFirst() : null; in validatePage()
178 ViewElementDescriptor descriptor = mClassNames.get(selectionIndex).getSecond(); in validatePage()
DChangeViewWizard.java181 int selectionIndex = mTypeCombo.getSelectionIndex(); in validatePage() local
182 String type = selectionIndex != -1 ? mClassNames.get(selectionIndex) : null; in validatePage()
DWrapInWizard.java133 int selectionIndex = mTypeCombo.getSelectionIndex(); in validatePage() local
134 String type = selectionIndex != -1 ? mClassNames.get(selectionIndex).getFirst() : null; in validatePage()
149 ViewElementDescriptor descriptor = mClassNames.get(selectionIndex).getSecond(); in validatePage()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
DApplicationInfoPage.java249 int selectionIndex = -1; in setSdkTargets() local
254 selectionIndex = i; in setSdkTargets()
261 if (selectionIndex != -1) { in setSdkTargets()
262 mSdkCombo.select(selectionIndex); in setSdkTargets()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
DAndroidJUnitLaunchConfigurationTab.java761 int selectionIndex = mInstrumentationCombo.getSelectionIndex(); in getSelectedInstrumentation() local
762 if (mInstrumentations != null && selectionIndex >= 0 && in getSelectedInstrumentation()
763 selectionIndex < mInstrumentations.length) { in getSelectedInstrumentation()
764 return mInstrumentations[selectionIndex]; in getSelectedInstrumentation()