Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 25 of 42) sorted by relevance

12

/development/tools/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
DApkConfigurationHelper.java28 public static ApkSettings getSettings(ProjectProperties properties) { in getSettings() argument
31 boolean splitByDensity = Boolean.parseBoolean(properties.getProperty( in getSettings()
44 public static void setProperties(ProjectProperties properties, ApkSettings settings) { in setProperties() argument
45 properties.setProperty(ProjectProperties.PROPERTY_SPLIT_BY_DENSITY, in setProperties()
/development/tools/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
DPropertiesTableModel.java26 private List<ViewNode.Property> properties; field in PropertiesTableModel
30 properties = node.properties; in PropertiesTableModel()
58 (properties == null ? 0 : properties.size()); in getRowCount()
68 property = properties.get(row - privateProperties.size()); in getValueAt()
/development/tools/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
DSdk.java203 ProjectProperties properties = ProjectProperties.load( in setProject() local
205 if (properties == null) { in setProject()
207 properties = ProjectProperties.create(project.getLocation().toOSString(), in setProject()
217 properties.setAndroidTarget(target); in setProject()
233 ApkConfigurationHelper.setProperties(properties, settings); in setProject()
240 properties.save(); in setProject()
309 ProjectProperties properties = ProjectProperties.load(location.toOSString(), in loadProjectProperties() local
311 if (properties == null) { in loadProjectProperties()
319 ApkSettings settings = ApkConfigurationHelper.getSettings(properties); in loadProjectProperties()
327 return properties.getProperty(ProjectProperties.PROPERTY_TARGET); in loadProjectProperties()
[all …]
/development/tools/sdkmanager/libs/sdklib/src/com/android/sdklib/
DAndroidVersion.java63 public AndroidVersion(Properties properties, int defaultApiLevel, String defaultCodeName) { in AndroidVersion() argument
64 if (properties == null) { in AndroidVersion()
68 mApiLevel = Integer.parseInt(properties.getProperty(PROP_API_LEVEL, in AndroidVersion()
70 mCodename = properties.getProperty(PROP_CODENAME, defaultCodeName); in AndroidVersion()
DPlatformTarget.java46 PlatformTarget(String location, Map<String, String> properties, in PlatformTarget() argument
52 mProperties = Collections.unmodifiableMap(properties); in PlatformTarget()
/development/ndk/apps/san-angeles/project/
Ddefault.properties6 # To customize properties used by the Ant build system use,
7 # "build.properties", and override values to adapt the script to your
/development/samples/JetBoy/
Ddefault.properties6 # To customize properties used by the Ant build system use,
7 # "build.properties", and override values to adapt the script to your
/development/ndk/apps/hello-gl2/project/
Ddefault.properties6 # To customize properties used by the Ant build system use,
7 # "build.properties", and override values to adapt the script to your
/development/ndk/apps/hello-jni/project/
Ddefault.properties6 # To customize properties used by the Ant build system use,
7 # "build.properties", and override values to adapt the script to your
/development/ndk/apps/hello-jni/project/tests/
Ddefault.properties6 # To customize properties used by the Ant build system use,
7 # "build.properties", and override values to adapt the script to your
/development/ndk/apps/two-libs/project/
Ddefault.properties6 # To customize properties used by the Ant build system use,
7 # "build.properties", and override values to adapt the script to your
/development/ndk/apps/two-libs/project/tests/
Ddefault.properties6 # To customize properties used by the Ant build system use,
7 # "build.properties", and override values to adapt the script to your
/development/tools/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/
DAvdManager.java183 Map<String, String> properties) { in AvdInfo() argument
184 this(name, path, targetHash, target, properties, AvdStatus.OK); in AvdInfo()
201 Map<String, String> properties, AvdStatus status) { in AvdInfo() argument
206 mProperties = properties == null ? null : Collections.unmodifiableMap(properties); in AvdInfo()
1035 Map<String, String> properties = null; in parseAvdInfo() local
1052 properties = SdkManager.parsePropertyFile(configIniFile, log); in parseAvdInfo()
1065 if (properties != null) { in parseAvdInfo()
1066 String imageSysDir = properties.get(AVD_INI_IMAGES_1); in parseAvdInfo()
1072 imageSysDir = properties.get(AVD_INI_IMAGES_2); in parseAvdInfo()
1093 } else if (properties == null) { in parseAvdInfo()
[all …]
/development/apps/CustomLocale/
D.gitignore4 default.properties
/development/tools/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
DAvdDetailsDialog.java115 Map<String, String> properties = mAvdInfo.getProperties(); in createContents() local
116 if (properties != null) { in createContents()
117 String skin = properties.get(AvdManager.AVD_INI_SKIN_NAME); in createContents()
122 String sdcard = properties.get(AvdManager.AVD_INI_SDCARD_SIZE); in createContents()
124 sdcard = properties.get(AvdManager.AVD_INI_SDCARD_PATH); in createContents()
131 HashMap<String, String> copy = new HashMap<String, String>(properties); in createContents()
DHardwarePropertyChooser.java46 HardwarePropertyChooser(Shell parentShell, Map<String, HardwareProperty> properties, in HardwarePropertyChooser() argument
49 mProperties = properties; in HardwarePropertyChooser()
/development/build/
Dsdk.atree22 development/tools/scripts/doc_source.properties docs/source.properties
23 development/tools/scripts/tools_source.properties tools/source.properties
24 development/tools/scripts/platform_source.properties platforms/${PLATFORM_NAME}/source.properties
157 external/qemu/android/avd/hardware-properties.ini tools/lib/hardware-properties.ini
/development/tools/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
DUiPropertySheetPage.java31 import org.eclipse.ui.views.properties.PropertySheetEntry;
32 import org.eclipse.ui.views.properties.PropertySheetPage;
/development/tools/anttasks/src/com/android/ant/
DAaptExecLoopTask.java133 ProjectProperties properties = ProjectProperties.load(baseDir.getAbsolutePath(), in execute() local
137 ApkSettings apkSettings = ApkConfigurationHelper.getSettings(properties); in execute()
/development/tools/hierarchyviewer/src/com/android/hierarchyviewer/scene/
DViewHierarchyLoader.java169 node.properties.add(property); in loadProperties()
178 Collections.sort(node.properties, new Comparator<ViewNode.Property>() { in loadProperties()
/development/tools/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
Dbuild_messages.properties41 …ompiler_Compliance_5=Android requires compiler compliance level 5.0. Please fix project properties.
42 …ce_Compatibility_5=Android requires source compatibility set to 5.0. Please fix project properties.
43 …ss_Compatibility_5=Android requires .class compatibility set to 5.0. Please fix project properties.
/development/tools/eclipse/scripts/
Dbuild_plugins.sh182 rm -fv *.properties *.xml
/development/tools/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DTextAttributeDescriptor.java29 import org.eclipse.ui.views.properties.IPropertyDescriptor;
/development/tools/eclipse/buildConfig/
Dbuild.properties19 # Typical users need only update the following properties:
122 #The value will only be applied to plugin or features indicating build.properties, qualifier = cont…
175 # This section defines properties parameterizing the repositories where plugins, fragments
225 …-ins that do not set the Bundle-RequiredExecutionEnvironment or set javacSource in build.properties
228 …ins that do not set the Bundle-RequiredExecutionEnvironment or set javacTarget in build.properties.
/development/tools/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
DAndroidPropertyPage.java17 package com.android.ide.eclipse.adt.internal.properties;

12