HomeSort by relevance Sort by last modified time
    Searched refs:Property (Results 51 - 75 of 446) sorted by null

1 23 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyComposite.java 22 import org.eclipse.wb.internal.core.model.property.Property;
27 * Property holding multiple instances of the same {@link XmlProperty} (but
33 * org.eclipse.wb.internal.core.model.property.GenericPropertyComposite
67 XmlPropertyComposite property = (XmlPropertyComposite) obj; local
68 return Arrays.equals(mProperties, property.mProperties);
76 for (Property property : mProperties) {
77 if (property.isModified()) {
88 for (Property property : mProperties)
113 Property property = properties[i]; local
    [all...]
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.ButtonPropertyEditorPresentation;
73 * The {@link PropertyFactory} creates (and caches) the set of {@link Property}
87 System.err.println("WARNING: The property cache is disabled");
91 private static final Property[] NO_PROPERTIES = new Property[0]
211 XmlProperty property = new XmlProperty(editor, this, node, descriptor); local
285 XmlProperty property = properties.get(i); local
412 Property property = new ComplexProperty( local
427 Property property = new ComplexProperty( local
452 XmlProperty property = properties.get(i); local
665 Property property = new ComplexProperty( local
680 Property property = new ComplexProperty( local
    [all...]
  /system/connectivity/shill/dbus/
chromeos_wimax_network_proxy.h 53 brillo::dbus_utils::Property<uint32_t> identifier;
54 brillo::dbus_utils::Property<std::string> name;
55 brillo::dbus_utils::Property<int32_t> type;
56 brillo::dbus_utils::Property<int32_t> cinr;
57 brillo::dbus_utils::Property<int32_t> rssi;
58 brillo::dbus_utils::Property<int32_t> signal_strength;
74 // Callback invoked when the value of property |property_name| is changed.
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
AbstractListPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
35 public String getText(Property property) throws Exception {
37 Object value = property.getValue();
38 if (value != Property.UNKNOWN_VALUE) {
60 if (value != Property.UNKNOWN_VALUE) {
76 //public String getClipboardSource(GenericProperty property) throws Exception
    [all...]
StringArrayPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
18 import org.eclipse.wb.internal.core.model.property.Property;
25 * @coverage core.model.property.editor
44 protected String getText(Property property) throws Exception {
45 String[] items = getItems(property);
50 * @return the items specified in value of given {@link Property}.
52 private static String[] getItems(Property property) throws Exception
    [all...]
TextDialogPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
15 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
24 * @coverage core.model.property.editor
34 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
35 openDialog(property);
    [all...]
AbstractComboBoxPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
37 * @coverage core.model.property.editor
50 final Property property,
54 addItems(property, m_combo);
55 selectItem(property, m_combo);
60 handleKeyPressed(propertyTable, property, e)
    [all...]
AbstractComboPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
33 * @coverage core.model.property.editor
45 public boolean activate(final PropertyTable propertyTable, final Property property, Point location)
52 addItems(property, m_combo);
54 selectItem(property, m_combo);
67 toProperty(propertyTable, property, index)
    [all...]
TextDisplayPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider;
20 * Abstract {@link PropertyEditor} for displaying text as {@link Property} value in
24 * @coverage core.model.property.editor
33 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception {
34 String text = getText(property);
    [all...]
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/objectal/
ALChannelSource.java 6 import org.robovm.objc.annotation.Property;
17 @Property(selector = "sourcePool")
ALSoundSourcePool.java 7 import org.robovm.objc.annotation.Property;
18 @Property(selector = "sources")
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/
FlexibleScalarStylesInJavaBeanTest.java 32 import org.yaml.snakeyaml.introspector.Property;
79 protected Set<Property> getProperties(Class<? extends Object> type)
82 Set<Property> standard = super.getProperties(type);
83 Set<Property> sorted = new TreeSet<Property>(new PropertyComparator());
91 private class PropertyComparator implements Comparator<Property> {
92 public int compare(Property o1, Property o2) {
106 private int compareByName(Property o1, Property o2, String name)
    [all...]
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
RecurrenceSet.java 34 component.addProperty(new ICalendar.Property(CTS_PROPERTY_NAME));
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
IPropertyExceptionHandler.java 11 package org.eclipse.wb.internal.core.model.property.table;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
18 * {@link Property} modifications using {@link PropertyEditor}'s.
21 * @coverage core.model.property.table
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/custom/
UIAcceleration.java 58 @Property(selector = "timestamp")
60 @Property(selector = "x")
62 @Property(selector = "y")
64 @Property(selector = "z")
UIAccelerometer.java 58 @Property(selector = "updateInterval")
60 @Property(selector = "setUpdateInterval:")
62 @Property(selector = "delegate")
64 @Property(selector = "setDelegate:", strongRef = true)
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
MissingProperty.java 19 * A property that does not map to a real property; this is used when {@link
22 public class MissingProperty extends Property {
  /frameworks/base/core/java/android/util/
FloatProperty.java 19 * An implementation of {@link android.util.Property} to be used specifically with fields of type
25 * @param <T> The class on which the Property is declared.
27 public abstract class FloatProperty<T> extends Property<T, Float> {
IntProperty.java 19 * An implementation of {@link android.util.Property} to be used specifically with fields of type
25 * @param <T> The class on which the Property is declared.
27 public abstract class IntProperty<T> extends Property<T, Integer> {
  /cts/tests/tests/util/src/android/util/cts/
PropertyTest.java 22 import android.util.Property;
67 // Utility methods to get/set instance values. Used by Property classes below.
93 // Properties. RAW subclass from the generic Property class, the others subclass from
96 public static final Property<PropertyTest, Point> RAW_POINT_PROP =
97 new Property<PropertyTest, Point>(Point.class, "rawPoint") {
109 public static final Property<PropertyTest, Float> RAW_FLOAT_PROP =
110 new Property<PropertyTest, Float>(Float.class, "rawFloat") {
122 public static final Property<PropertyTest, Float> FLOAT_PROP =
136 public static final Property<PropertyTest, Integer> INT_PROP =
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
CustomOrderTest.java 30 import org.yaml.snakeyaml.introspector.Property;
48 protected Set<Property> createPropertySet(Class<? extends Object> type, BeanAccess bAccess)
50 Set<Property> result = new TreeSet<Property>(Collections.reverseOrder());
67 protected Set<Property> createPropertySet(Class<? extends Object> type, BeanAccess bAccess)
69 Set<Property> result = new LinkedHashSet<Property>(getPropertiesMap(type,
71 result.remove(result.iterator().next());// drop 'listInt' property
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewNode.java 30 public List<Property> properties = new ArrayList<Property>();
31 public Map<String, Property> namedProperties = new HashMap<String, Property>();
95 Property p = namedProperties.get(name);
107 Property p = namedProperties.get(name);
165 public static class Property {
183 final Property other = (Property) obj;
  /system/connectivity/shill/
static_ip_parameters.cc 46 const StaticIPParameters::Property StaticIPParameters::kProperties[] = {
47 { kAddressProperty, Property::kTypeString },
48 { kGatewayProperty, Property::kTypeString },
49 { kMtuProperty, Property::kTypeInt32 },
50 { kNameServersProperty, Property::kTypeStrings },
51 { kPeerAddressProperty, Property::kTypeString },
52 { kPrefixlenProperty, Property::kTypeInt32 }
63 const Property& property = kProperties[i]; local
64 const string name(string(kConfigKeyPrefix) + property.name)
153 const Property& property = kProperties[i]; local
200 const Property& property = kProperties[i]; local
    [all...]
  /frameworks/base/libs/hwui/
VectorDrawable.cpp 252 // Update staging property with property values from animation.
277 Property currentProperty = static_cast<Property>(propertyId);
278 if (currentProperty == Property::strokeColor) {
280 } else if (currentProperty == Property::fillColor) {
283 LOG_ALWAYS_FATAL("Error setting color property on FullPath: No valid property"
289 Property property = static_cast<Property>(propertyId) local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImplMac.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
25 * @coverage core.model.property.editor
43 protected final Control createControlImpl(final PropertyTable propertyTable, Property property) {
51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) {
52 CFlatButton button = (CFlatButton) m_propertyToControl.get(propertyTable, property);
    [all...]

Completed in 1785 milliseconds

1 23 4 5 6 7 8 91011>>