/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
D | EnumXmlPropertyEditor.java | 23 import org.eclipse.wb.internal.core.model.property.Property; 24 import org.eclipse.wb.internal.core.model.property.editor.AbstractComboPropertyEditor; 25 import org.eclipse.wb.internal.core.model.property.editor.ITextValuePropertyEditor; 35 protected String getText(Property property) throws Exception { in getText() argument 36 Object value = property.getValue(); in getText() 48 private String[] getItems(Property property) { in getItems() argument 49 XmlProperty xmlProperty = (XmlProperty) property; in getItems() 57 protected void addItems(Property property, CCombo3 combo) throws Exception { in addItems() argument 58 for (String item : getItems(property)) { in addItems() 64 protected void selectItem(Property property, CCombo3 combo) throws Exception { in selectItem() argument [all …]
|
D | BooleanXmlPropertyEditor.java | 26 import org.eclipse.wb.internal.core.model.property.Property; 27 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 50 public void paint(Property property, GC gc, int x, int y, int width, int height) in paint() argument 52 Object value = property.getValue(); in paint() 84 public boolean activate(PropertyTable propertyTable, Property property, Point location) in activate() argument 88 cycleValue(property); in activate() 95 public void doubleClick(Property property, Point location) throws Exception { in doubleClick() argument 96 cycleValue(property); in doubleClick() 102 private void cycleValue(Property property) throws Exception { in cycleValue() argument 103 Object value = property.getValue(); in cycleValue() [all …]
|
D | XmlPropertyComposite.java | 22 import org.eclipse.wb.internal.core.model.property.Property; 67 XmlPropertyComposite property = (XmlPropertyComposite) obj; in equals() local 68 return Arrays.equals(mProperties, property.mProperties); in equals() 76 for (Property property : mProperties) { in isModified() 77 if (property.isModified()) { in isModified() 88 for (Property property : mProperties) { in getValue() 89 Object propertyValue = property.getValue(); in getValue() 103 for (Property property : mProperties) { in setValue() 104 property.setValue(value); in setValue() 113 Property property = properties[i]; in create() local [all …]
|
D | PropertyFactory.java | 52 import org.eclipse.wb.internal.core.editor.structure.property.PropertyListIntersector; 53 import org.eclipse.wb.internal.core.model.property.ComplexProperty; 54 import org.eclipse.wb.internal.core.model.property.Property; 55 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory; 56 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 57 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresenta… 211 XmlProperty property = new XmlProperty(editor, this, node, descriptor); in getProperties() local 221 property.setPriority(PRIO_FIRST + priority); in getProperties() 223 property.setPriority(priority); in getProperties() 236 property.setCategory(category); in getProperties() [all …]
|
D | XmlPropertyEditor.java | 72 import org.eclipse.wb.internal.core.model.property.Property; 73 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor; 74 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresenta… 75 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation; 76 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 104 protected void onClick(PropertyTable propertyTable, Property property) throws Exception { 105 openDialog(propertyTable, property); 115 public String getText(Property property) throws Exception { in getText() argument 116 Object value = property.getValue(); in getText() 124 protected String getEditorText(Property property) throws Exception { in getEditorText() argument [all …]
|
D | StringXmlPropertyDialog.java | 23 import org.eclipse.wb.internal.core.model.property.Property; 24 import org.eclipse.wb.internal.core.model.property.editor.string.StringPropertyDialog; 27 StringXmlPropertyDialog(Shell parentShell, Property property) throws Exception { in StringXmlPropertyDialog() argument 28 super(parentShell, property); in StringXmlPropertyDialog()
|
D | PropertyValueCompleter.java | 26 PropertyValueCompleter(XmlProperty property) { in PropertyValueCompleter() argument 27 mProperty = property; in PropertyValueCompleter()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/ |
D | AdtPrefs.java | 161 String property = event != null ? event.getProperty() : null; in loadValues() local 163 if (property == null || PREFS_SDK_DIR.equals(property)) { in loadValues() 184 if (property == null || PREFS_BUILD_VERBOSITY.equals(property)) { in loadValues() 191 if (property == null || PREFS_BUILD_RES_AUTO_REFRESH.equals(property)) { in loadValues() 195 if (property == null || PREFS_BUILD_FORCE_ERROR_ON_NATIVELIB_IN_JAR.equals(property)) { in loadValues() 200 if (property == null || PREFS_BUILD_SKIP_POST_COMPILE_ON_FILE_SAVE.equals(property)) { in loadValues() 205 if (property == null || PREFS_MONITOR_DENSITY.equals(property)) { in loadValues() 209 if (property == null || PREFS_FORMAT_GUI_XML.equals(property)) { in loadValues() 213 if (property == null || PREFS_PREFER_XML.equals(property)) { in loadValues() 217 if (property == null || PREFS_USE_CUSTOM_XML_FORMATTER.equals(property)) { in loadValues() [all …]
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
D | PropertiesTableModel.java | 44 ViewNode.Property property = new ViewNode.Property(); in loadPrivateProperties() local 45 property.name = "absolute_x"; in loadPrivateProperties() 46 property.value = String.valueOf(x); in loadPrivateProperties() 47 privateProperties.add(property); in loadPrivateProperties() 49 property = new ViewNode.Property(); in loadPrivateProperties() 50 property.name = "absolute_y"; in loadPrivateProperties() 51 property.value = String.valueOf(y); in loadPrivateProperties() 52 privateProperties.add(property); in loadPrivateProperties() 63 ViewNode.Property property; in getValueAt() local 66 property = privateProperties.get(row); in getValueAt() [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/ |
D | PropertyChangeTransform.java | 56 IGLProperty property = mAccessor.getProperty(state); in apply() local 62 if (!mPredicate.apply(property.getValue())) { in apply() 67 if (property != null) { in apply() 68 mOldValue = property.getValue(); in apply() 69 property.setValue(mNewValue); in apply() 83 IGLProperty property = mAccessor.getProperty(state); in revert() local 84 property.setValue(mOldValue); in revert()
|
D | BufferSubDataTransform.java | 44 IGLProperty property = mAccessor.getProperty(state); in apply() local 45 mOldData = (byte[]) property.getValue(); in apply() 60 property.setValue(mNewData); in apply() 66 IGLProperty property = mAccessor.getProperty(state); in revert() local 67 property.setValue(mOldData); in revert()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/ |
D | GLListProperty.java | 67 public boolean add(IGLProperty property) { in add() argument 68 property.setParent(this); in add() 69 return mList.add(property); in add() 72 public boolean remove(IGLProperty property) { in remove() argument 73 return mList.remove(property); in remove() 76 public void set(int index, IGLProperty property) { in set() argument 78 mList.set(index, property); in set() 79 property.setParent(this); in set() 151 public int indexOf(IGLProperty property) { in indexOf() argument 152 return mList.indexOf(property); in indexOf()
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
D | ViewHierarchyLoader.java | 160 ViewNode.Property property = new ViewNode.Property(); in loadProperties() local 161 property.name = data.substring(start, index); in loadProperties() 163 int colonIndex = property.name.indexOf(':'); in loadProperties() 165 property.name = property.name.substring(colonIndex + 1); in loadProperties() 171 property.value = data.substring(index2 + 1, index2 + 1 + length); in loadProperties() 173 node.properties.add(property); in loadProperties() 174 node.namedProperties.put(property.name, property); in loadProperties()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/ |
D | AndroidJUnitPropertyTester.java | 49 public boolean test(Object receiver, String property, Object[] args, Object expectedValue) { in test() argument 77 if (PROPERTY_IS_TEST.equals(property)) { in test() 79 } else if (PROPERTY_CAN_LAUNCH_AS_JUNIT_TEST.equals(property)) { in test() 83 String.format("Unknown test property '%s'", property)); //$NON-NLS-1$ in test()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
D | StateLabelProvider.java | 43 public String getColumnText(IGLProperty property, int columnIndex) { in getColumnText() argument 46 return getName(property); in getColumnText() 48 return getValue(property); in getColumnText()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
D | BaseViewRule.java | 556 Prop property = properties.get(attribute); in addCommonPropertyActions() local 557 if (property != null) { in addCommonPropertyActions() 558 String title = property.getTitle(); in addCommonPropertyActions() 560 title = String.format("Edit %1$s", property.getTitle()); in addCommonPropertyActions() 562 actions.add(createPropertyAction(property, attribute, title, in addCommonPropertyActions() 577 static void editedProperty(String property) { in editedProperty() argument 578 if (sRecent.contains(property)) { in editedProperty() 579 sRecent.remove(property); in editedProperty() 583 sRecent.add(0, property); in editedProperty() 594 Prop property = properties.get(attribute); in addRecentPropertyActions() local [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
D | ExportGradleTest.java | 125 Object property = job.getProperty(ERROR_KEY); in testSimpleAndroidApp() local 126 assertNull(property); in testSimpleAndroidApp() 202 Object property = job.getProperty(ERROR_KEY); in testSimpleAndroidLib() local 203 assertNull(property); in testSimpleAndroidLib() 239 Object property = job.getProperty(ERROR_KEY); in testPlainJavaProject() local 240 assertNull(property); in testPlainJavaProject()
|
/sdk/testapps/libsTest/appTest/ |
D | proguard-project.txt | 2 # to define the proguard.config property as described in that file. 8 # include property in project.properties.
|
/sdk/testapps/libsTest/app/ |
D | proguard-project.txt | 2 # to define the proguard.config property as described in that file. 8 # include property in project.properties.
|
/sdk/files/ |
D | proguard-project.txt | 2 # to define the proguard.config property as described in that file. 8 # include property in project.properties.
|
/sdk/testapps/jarCheckTests3/app/ |
D | proguard-project.txt | 2 # to define the proguard.config property as described in that file. 8 # include property in project.properties.
|
/sdk/testapps/buildConfigTest/lib1/ |
D | proguard-project.txt | 2 # to define the proguard.config property as described in that file. 8 # include property in project.properties.
|
/sdk/testapps/jarCheckTests1/app/ |
D | proguard-project.txt | 2 # to define the proguard.config property as described in that file. 8 # include property in project.properties.
|
/sdk/testapps/javaProjectTest/lib2/ |
D | proguard-project.txt | 2 # to define the proguard.config property as described in that file. 8 # include property in project.properties.
|
/sdk/testapps/libsTest/lib1Test/ |
D | proguard-project.txt | 2 # to define the proguard.config property as described in that file. 8 # include property in project.properties.
|