OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:optionids
(Results
1 - 2
of
2
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplatePage.java
662
Integer[]
optionIds
= (Integer[]) combo.getData(ATTR_MIN_API);
664
if (index != -1 && index <
optionIds
.length) {
665
Integer requiredMinSdk =
optionIds
[index];
676
optionIds
= (Integer[]) combo.getData(ATTR_MIN_BUILD_API);
677
if (index != -1 && index <
optionIds
.length) {
678
Integer requiredBuildApi =
optionIds
[index];
753
String[]
optionIds
= (String[]) combo.getData(ATTR_ID);
755
if (index != -1 && index <
optionIds
.length) {
756
String optionId =
optionIds
[index];
[
all
...]
NewProjectPage.java
356
String[]
optionIds
= (String[]) mThemeCombo.getData(ATTR_ID);
357
for (int index =
optionIds
.length - 1; index >= 0; index--) {
361
String optionId =
optionIds
[index];
[
all
...]
Completed in 176 milliseconds