HomeSort by relevance Sort by last modified time
    Searched full:devicexml (Results 1 - 2 of 2) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutDeviceManager.java 252 File deviceXml = new File(userFolder, SdkConstants.FN_DEVICES_XML);
253 if (deviceXml.isDirectory() == false) {
254 write(deviceXml, mUserLayoutDevices);
275 File deviceXml = new File(userFolder, SdkConstants.FN_DEVICES_XML);
276 if (deviceXml.isFile()) {
277 parseLayoutDevices(deviceXml, mUserLayoutDevices);
285 void parseAddOnLayoutDevice(File deviceXml) {
286 parseLayoutDevices(deviceXml, mAddOnLayoutDevices);
297 * @param deviceXml the {@link File} to load/parse. This must be an existing file.
300 private void parseLayoutDevices(File deviceXml, List<LayoutDevice> list)
    [all...]
Sdk.java 686 File deviceXml = new File(target.getLocation(), SdkConstants.FN_DEVICES_XML);
687 if (deviceXml.isFile()) {
688 mLayoutDeviceManager.parseAddOnLayoutDevice(deviceXml);
    [all...]

Completed in 52 milliseconds