Home
last modified time | relevance | path

Searched refs:mNightMode (Results 1 – 2 of 2) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DConfiguration.java157 private NightMode mNightMode = NightMode.NOTNIGHT; field in Configuration
254 copy.mNightMode = original.getNightMode(); in copy()
317 return mNightMode; in getNightMode()
513 mNightMode = night; in setNightMode()
797 mNightMode = NightMode.getEnum(values[5]); in initialize()
798 if (mNightMode == null) { in initialize()
799 mNightMode = NightMode.NOTNIGHT; in initialize()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
DConfigurationSelector.java1449 private final Combo mNightMode; field in ConfigurationSelector.NightModeEdit
1454 mNightMode = new Combo(this, SWT.DROP_DOWN | SWT.READ_ONLY); in NightModeEdit()
1455 fillCombo(mNightMode, NightMode.values()); in NightModeEdit()
1457 mNightMode.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); in NightModeEdit()
1458 mNightMode.addSelectionListener(new SelectionListener() { in NightModeEdit()
1472 int index = mNightMode.getSelectionIndex(); in onNightModeChange()
1494 mNightMode.clearSelection(); in setQualifier()
1496 mNightMode.select(NightMode.getIndex(value)); in setQualifier()