OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mConfigChooser
(Results
1 - 10
of
10
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
LocaleMenuListener.java
46
private final ConfigurationChooser
mConfigChooser
;
54
mConfigChooser
= configChooser;
63
mConfigChooser
.selectLocale(mLocale);
64
mConfigChooser
.onLocaleChange();
68
IProject project =
mConfigChooser
.getProject();
69
Shell shell =
mConfigChooser
.getShell();
TargetMenuListener.java
42
private final ConfigurationChooser
mConfigChooser
;
50
mConfigChooser
= configChooser;
64
target = ConfigurationMatcher.findDefaultRenderTarget(
mConfigChooser
);
73
mConfigChooser
.selectTarget(target);
74
mConfigChooser
.onRenderingTargetChange();
ActivityMenuListener.java
51
private final ConfigurationChooser
mConfigChooser
;
59
mConfigChooser
= configChooser;
68
Configuration configuration =
mConfigChooser
.getConfiguration();
70
AdtPlugin.openJavaClass(
mConfigChooser
.getProject(), fqcn);
74
mConfigChooser
.selectActivity(mFqcn);
75
mConfigChooser
.onSelectActivity();
DeviceMenuListener.java
54
private final ConfigurationChooser
mConfigChooser
;
60
mConfigChooser
= configChooser;
66
mConfigChooser
.selectDevice(mDevice);
67
mConfigChooser
.onDeviceChange();
OrientationMenuAction.java
48
private final ConfigurationChooser
mConfigChooser
;
55
mConfigChooser
= configuration;
99
NightMode selected =
mConfigChooser
.getConfiguration().getNightMode();
109
UiMode selected =
mConfigChooser
.getConfiguration().getUiMode();
134
Configuration configuration =
mConfigChooser
.getConfiguration();
136
mConfigChooser
.notifyFolderConfigChanged();
153
Configuration configuration =
mConfigChooser
.getConfiguration();
ConfigurationMenuListener.java
71
private final ConfigurationChooser
mConfigChooser
;
81
mConfigChooser
= configChooser;
99
ConfigurationClient client =
mConfigChooser
.getClient();
109
IFile editedFile =
mConfigChooser
.getEditedFile();
ThemeMenuAction.java
76
private final ConfigurationChooser
mConfigChooser
;
85
mConfigChooser
= configuration;
181
IProject project =
mConfigChooser
.getEditedFile().getProject();
184
Configuration configuration =
mConfigChooser
.getConfiguration();
273
String current =
mConfigChooser
.getConfiguration().getTheme();
280
return theme.equals(
mConfigChooser
.getConfiguration().getTheme());
285
SelectThemeAction action = new SelectThemeAction(
mConfigChooser
, title, theme, selected);
Configuration.java
111
protected ConfigurationChooser
mConfigChooser
;
165
mConfigChooser
= chooser;
179
mConfigChooser
= chooser;
189
return
mConfigChooser
;
238
Configuration copy = create(original.
mConfigChooser
);
579
if (target == null &&
mConfigChooser
!= null) {
580
target =
mConfigChooser
.getProjectTarget();
654
IProject project =
mConfigChooser
.getProject();
702
ResourceRepository frameworkRes =
mConfigChooser
.getClient().getFrameworkResources();
722
for (Device d :
mConfigChooser
.getDeviceList())
[
all
...]
ConfigurationMatcher.java
71
private final ConfigurationChooser
mConfigChooser
;
88
mConfigChooser
= chooser;
188
List<Locale> localeList =
mConfigChooser
.getLocaleList();
225
mConfigChooser
.selectDeviceState(matchState);
226
mConfigChooser
.selectLocale(locale);
250
List<Locale> localeList =
mConfigChooser
.getLocaleList();
251
List<Device> deviceList =
mConfigChooser
.getDeviceList();
360
mConfigChooser
.selectDevice(mConfiguration.getDevice());
361
mConfigChooser
.selectDeviceState(mConfiguration.getDeviceState());
362
mConfigChooser
.selectLocale(mConfiguration.getLocale())
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java
248
private ConfigurationChooser
mConfigChooser
;
412
mConfigChooser
= new ConfigurationChooser(this, layoutBarAndCanvas, initialState);
413
mConfigChooser
.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
520
Display display =
mConfigChooser
.getDisplay();
525
if (!
mConfigChooser
.isDisposed()) {
649
IAndroidTarget oldTarget =
mConfigChooser
.getConfiguration().getTarget();
680
best = ConfigurationMatcher.getBestFileMatch(
mConfigChooser
);
695
data =
mConfigChooser
.getConfiguration().toPersistentString();
714
mConfigChooser
.saveConstraints();
721
Configuration configuration =
mConfigChooser
.getConfiguration()
[
all
...]
Completed in 136 milliseconds