OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LayoutDevice
(Results
1 - 6
of
6
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutDeviceManager.java
21
import com.android.ide.eclipse.adt.internal.sdk.
LayoutDevice
.DeviceConfig;
106
private List<
LayoutDevice
> mDefaultLayoutDevices =
107
new ArrayList<
LayoutDevice
>();
108
private List<
LayoutDevice
> mAddOnLayoutDevices =
109
new ArrayList<
LayoutDevice
>();
110
private final List<
LayoutDevice
> mUserLayoutDevices =
111
new ArrayList<
LayoutDevice
>();
112
private List<
LayoutDevice
> mLayoutDevices;
119
public List<
LayoutDevice
> getCombinedList() {
123
public List<
LayoutDevice
> getDefaultLayoutDevices()
[
all
...]
LayoutDeviceHandler.java
65
private List<
LayoutDevice
> mDevices = new ArrayList<
LayoutDevice
>();
67
private
LayoutDevice
mCurrentDevice;
74
public List<
LayoutDevice
> getDevices() {
86
mCurrentDevice = new
LayoutDevice
(deviceName);
LayoutDevice.java
53
* To create, edit and delete
LayoutDevice
objects, see {@link LayoutDeviceManager}.
56
public class
LayoutDevice
{
92
LayoutDevice
(String name) {
237
* Adds config to the
LayoutDevice
.
252
* Adds a list of config to the
LayoutDevice
295
* Adds config to the
LayoutDevice
. This is to be used to add plenty of
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigManagerDialog.java
22
import com.android.ide.eclipse.adt.internal.sdk.
LayoutDevice
;
25
import com.android.ide.eclipse.adt.internal.sdk.
LayoutDevice
.DeviceConfig;
86
public DeviceSelection(DeviceType type,
LayoutDevice
device,
94
final
LayoutDevice
device;
134
} else if (parentElement instanceof
LayoutDevice
) {
135
LayoutDevice
device = (
LayoutDevice
)parentElement;
156
} else if (element instanceof
LayoutDevice
) {
157
LayoutDevice
device = (
LayoutDevice
)element
[
all
...]
ConfigurationComposite.java
47
import com.android.ide.eclipse.adt.internal.sdk.
LayoutDevice
;
48
import com.android.ide.eclipse.adt.internal.sdk.
LayoutDevice
.DeviceConfig;
164
private List<
LayoutDevice
> mDeviceList;
250
LayoutDevice
device;
295
for (
LayoutDevice
d : mDeviceList) {
[
all
...]
ConfigEditDialog.java
27
import com.android.ide.eclipse.adt.internal.sdk.
LayoutDevice
;
57
* Dialog to edit both a {@link
LayoutDevice
}, and a {@link FolderConfiguration} at the same time.
Completed in 46 milliseconds