/development/tools/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/ |
D | ApkConfigurationHelper.java | 28 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/ |
D | PropertiesTableModel.java | 26 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/ |
D | Sdk.java | 203 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/ |
D | AndroidVersion.java | 63 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()
|
D | PlatformTarget.java | 46 PlatformTarget(String location, Map<String, String> properties, in PlatformTarget() argument 52 mProperties = Collections.unmodifiableMap(properties); in PlatformTarget()
|
/development/ndk/apps/san-angeles/project/ |
D | default.properties | 6 # 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/ |
D | default.properties | 6 # 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/ |
D | default.properties | 6 # 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/ |
D | default.properties | 6 # 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/ |
D | default.properties | 6 # 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/ |
D | default.properties | 6 # 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/ |
D | default.properties | 6 # 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/ |
D | AvdManager.java | 183 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 | .gitignore | 4 default.properties
|
/development/tools/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/ |
D | AvdDetailsDialog.java | 115 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()
|
D | HardwarePropertyChooser.java | 46 HardwarePropertyChooser(Shell parentShell, Map<String, HardwareProperty> properties, in HardwarePropertyChooser() argument 49 mProperties = properties; in HardwarePropertyChooser()
|
/development/build/ |
D | sdk.atree | 22 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/ |
D | UiPropertySheetPage.java | 31 import org.eclipse.ui.views.properties.PropertySheetEntry; 32 import org.eclipse.ui.views.properties.PropertySheetPage;
|
/development/tools/anttasks/src/com/android/ant/ |
D | AaptExecLoopTask.java | 133 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/ |
D | ViewHierarchyLoader.java | 169 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/ |
D | build_messages.properties | 41 …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/ |
D | build_plugins.sh | 182 rm -fv *.properties *.xml
|
/development/tools/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
D | TextAttributeDescriptor.java | 29 import org.eclipse.ui.views.properties.IPropertyDescriptor;
|
/development/tools/eclipse/buildConfig/ |
D | build.properties | 19 # 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/ |
D | AndroidPropertyPage.java | 17 package com.android.ide.eclipse.adt.internal.properties;
|