Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 89) sorted by relevance

1234

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
DEnumXmlPropertyEditor.java23 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 …]
DBooleanXmlPropertyEditor.java26 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 …]
DXmlPropertyComposite.java22 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 …]
DPropertyFactory.java52 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 …]
DXmlPropertyEditor.java72 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 …]
DStringXmlPropertyDialog.java23 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()
DPropertyValueCompleter.java26 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/
DAdtPrefs.java161 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/
DPropertiesTableModel.java44 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/
DPropertyChangeTransform.java56 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()
DBufferSubDataTransform.java44 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/
DGLListProperty.java67 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/
DViewHierarchyLoader.java160 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/
DAndroidJUnitPropertyTester.java49 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/
DStateLabelProvider.java43 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/
DBaseViewRule.java556 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/
DExportGradleTest.java125 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/
Dproguard-project.txt2 # to define the proguard.config property as described in that file.
8 # include property in project.properties.
/sdk/testapps/libsTest/app/
Dproguard-project.txt2 # to define the proguard.config property as described in that file.
8 # include property in project.properties.
/sdk/files/
Dproguard-project.txt2 # to define the proguard.config property as described in that file.
8 # include property in project.properties.
/sdk/testapps/jarCheckTests3/app/
Dproguard-project.txt2 # to define the proguard.config property as described in that file.
8 # include property in project.properties.
/sdk/testapps/buildConfigTest/lib1/
Dproguard-project.txt2 # to define the proguard.config property as described in that file.
8 # include property in project.properties.
/sdk/testapps/jarCheckTests1/app/
Dproguard-project.txt2 # to define the proguard.config property as described in that file.
8 # include property in project.properties.
/sdk/testapps/javaProjectTest/lib2/
Dproguard-project.txt2 # to define the proguard.config property as described in that file.
8 # include property in project.properties.
/sdk/testapps/libsTest/lib1Test/
Dproguard-project.txt2 # to define the proguard.config property as described in that file.
8 # include property in project.properties.

1234