HomeSort by relevance Sort by last modified time
    Searched refs:Property (Results 1 - 25 of 272) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
PropertyListIntersector.java 11 package org.eclipse.wb.internal.core.editor.structure.property;
15 import org.eclipse.wb.internal.core.model.property.Property;
16 import org.eclipse.wb.internal.core.model.property.PropertyManager;
22 * Helper for computing intersection of {@link Property} arrays.
38 public void intersect(Property[] properties) {
42 Property property = properties[i]; local
43 m_intersection.add(new PropertyGroup(property));
56 * @return the array of matched composite {@link Property}'s.
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
IComplexPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor.complex;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
20 * @coverage core.model.property.editor
24 * @return sub-properties of given complex property.
26 Property[] getProperties(Property property) throws Exception;
  /external/chromium_org/dbus/
property.h 27 // member for each property defined as an instance of the Property<> class,
30 // property defined to associate them with their string name.
36 // dbus::Property<std::string> name;
37 // dbus::Property<uint16> version;
38 // dbus::Property<dbus::ObjectPath> parent;
39 // dbus::Property<std::vector<std::string> > children;
97 // the current value of the name property would be:
112 // the property value, and whether it emits a signal or a Get() call is
120 // in property.cc because template methods use them
    [all...]
property.cc 5 #include "dbus/property.h"
45 PropertyBase* property) {
46 property->Init(this, name);
47 properties_map_[name] = property;
68 LOG(WARNING) << "Property changed signal has wrong parameters: "
77 LOG(WARNING) << "Property changed signal has wrong parameters: "
95 void PropertySet::Get(PropertyBase* property, GetCallback callback) {
99 writer.AppendString(property->name());
106 property,
110 void PropertySet::OnGet(PropertyBase* property, GetCallback callback
    [all...]
  /external/chromium_org/chromeos/dbus/
bluetooth_adapter_client.h 17 #include "dbus/property.h"
32 dbus::Property<std::string> address;
35 dbus::Property<std::string> name;
38 // this property can be changed to change the presentation for when
40 dbus::Property<std::string> alias;
43 dbus::Property<uint32> bluetooth_class;
46 dbus::Property<bool> powered;
51 dbus::Property<bool> discoverable;
56 dbus::Property<bool> pairable;
61 dbus::Property<uint32> pairable_timeout
    [all...]
bluetooth_device_client.h 17 #include "dbus/property.h"
32 dbus::Property<std::string> address;
35 // different local name, use the |alias| property.
36 dbus::Property<std::string> name;
40 dbus::Property<std::string> icon;
43 dbus::Property<uint32> bluetooth_class;
46 dbus::Property<uint16> appearance;
49 dbus::Property<uint16> vendor;
53 dbus::Property<std::vector<std::string> > uuids;
56 dbus::Property<bool> paired
    [all...]
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 29 * Component and Property, for use in the test.
41 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
42 new LinkedHashMap<String, ArrayList<Property>>();
53 * Adds a Property to this component.
56 public void addProperty(Property prop) {
58 ArrayList<Property> props = mPropsMap.get(name);
60 props = new ArrayList<Property>();
69 * @param name The name of the property that should be returned.
72 public List<Property> getProperties(String name) {
78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
HashTools.h 30 struct Property {
41 const Property* findProperty(register const char* str, register unsigned int len);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
PropertyManager.java 11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
17 * {@link PropertyManager} is used to get/set attributes of {@link Property}.
20 * @coverage core.model.property
23 public static PropertyCategory getCategory(Property property) {
27 return property.getCategory();
31 * @return the forced {@link PropertyCategory} of given Property, may be <code>null</code>.
33 public static PropertyCategory getCategoryForced(Property property) {
    [all...]
Property.java 11 package org.eclipse.wb.internal.core.model.property;
15 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
16 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
22 * {@link Property} is used to display/change properties of ObjectInfo's.
25 * @coverage core.model.property
27 public abstract class Property {
29 * The value that should be used when we don't know real value of {@link Property}. We can not use
50 public Property(PropertyEditor editor) {
61 * @return the title displayed to the user to identify the property.
66 * @return <code>true</code> if this property has a non-default valu
    [all...]
ComplexProperty.java 11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.editor.TextDisplayPropertyEditor;
14 import org.eclipse.wb.internal.core.model.property.editor.complex.IComplexPropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
17 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider;
18 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipTextProvider;
25 * Implementation of {@link Property} that shows given inner {@link Property}'s using
29 * @coverage core.model.property
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategoryProvider.java 11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
16 * This interface is used to get {@link PropertyCategory} for {@link Property}.
19 * @coverage core.model.property
23 * @return the {@link PropertyCategory} of given Property, not <code>null</code>.
25 PropertyCategory getCategory(Property property);
PropertyCategoryProviders.java 11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.PropertyManager;
20 * @coverage core.model.property
29 public PropertyCategory getCategory(Property property) {
30 return property.getCategory();
35 * Returns result of {@link Property#getCategory()}, never <code>null</code>.
42 public PropertyCategory getCategory(Property property)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
ITextValuePropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
19 * @coverage core.model.property.editor
25 void setText(Property property, String text) throws Exception;
StringComboPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
20 * @coverage core.model.property.editor
40 protected String getText(Property property) throws Exception {
41 return (String) property.getValue();
50 protected void addItems(Property property, CCombo3 combo) throws Exception {
57 protected void selectItem(Property property, CCombo3 combo) throws Exception
    [all...]
LocalePropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
21 * @coverage core.model.property.editor
40 protected String getText(Property property) throws Exception {
41 Object value = property.getValue();
55 protected void openDialog(Property property) throws Exception {
56 Object value = property.getValue()
    [all...]
PropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
20 import org.eclipse.wb.internal.core.model.property.Property;
21 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
25 * Abstract editor for {@link Property}.
28 * @coverage core.model.property.editor
44 * Paints given {@link Property} given rectangle <code>(x, y, width, height)</code> of {@link GC}.
46 public abstract void paint(Property property, GC gc, int x, int y, int width, int height
    [all...]
EnumerationValuesPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
16 import org.eclipse.wb.internal.core.model.property.Property;
26 * @coverage core.model.property.editor
59 public String getText(Property property) throws Exception {
60 Object value = property.getValue();
62 if (value != Property.UNKNOWN_VALUE) {
80 if (value != Property.UNKNOWN_VALUE) {
96 // public String getClipboardSource(GenericProperty property) throws Exception
    [all...]
  /frameworks/base/core/java/android/util/
FloatProperty.java 18 import android.util.Property;
21 * An implementation of {@link android.util.Property} to be used specifically with fields of type
27 * @param <T> The class on which the Property is declared.
31 public abstract class FloatProperty<T> extends Property<T, Float> {
IntProperty.java 18 import android.util.Property;
21 * An implementation of {@link android.util.Property} to be used specifically with fields of type
27 * @param <T> The class on which the Property is declared.
31 public abstract class IntProperty<T> extends Property<T, Integer> {
  /external/clang/test/Analysis/
malloc.cpp 79 struct Property {
81 Property(char* n)
85 void append(Property x);
88 append(Property(getterName));
96 Property prop;
97 NestedProperty(Property p)
103 appendNested(NestedProperty(Property(getterName)));
  /external/emma/core/java12/com/vladium/emma/data/
CoverageOptionsFactory.java 15 import com.vladium.util.Property;
29 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
33 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
37 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
46 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS,
50 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS,
54 Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION,
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
PropertyEditorPresentation.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
22 * @coverage core.model.property.editor
26 * Shows presentation for given {@link Property}.
31 Property property,
40 public abstract void hide(PropertyTable propertyTable, Property property)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
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 {
36 Object value = property.getValue();
41 } else if (value == Property.UNKNOWN_VALUE) {
48 private String[] getItems(Property property) {
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
PropertiesTableModel.java 26 private List<ViewNode.Property> properties;
27 private List<ViewNode.Property> privateProperties = new ArrayList<ViewNode.Property>();
44 ViewNode.Property property = new ViewNode.Property(); local
45 property.name = "absolute_x";
46 property.value = String.valueOf(x);
47 privateProperties.add(property);
49 property = new ViewNode.Property()
63 ViewNode.Property property; local
    [all...]

Completed in 643 milliseconds

1 2 3 4 5 6 7 8 91011