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

1 2 3 4 5 6 7 8

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.2.1-1.js 24 ECMA Section: 11.2.1 Property Accessors
55 whose property name is Result(6).
67 var TITLE = "Property Accessors";
74 var PROPERTY = new Array();
79 PROPERTY[p++] = new Property( "this", "NaN", "number" );
80 PROPERTY[p++] = new Property( "this", "Infinity", "number" );
81 PROPERTY[p++] = new Property( "this", "eval", "function" )
    [all...]
  /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;
  /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/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...]
CharacterPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception {
58 return getText(property);
    [all...]
DoubleObjectPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
60 protected String getEditorText(Property property) throws Exception {
61 return getText(property);
    [all...]
DoublePropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
58 protected String getEditorText(Property property) throws Exception {
59 return getText(property);
    [all...]
FloatPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
15 import org.eclipse.wb.internal.core.model.property.Property;
24 * @coverage core.model.property.editor
43 public String getText(Property property) throws Exception {
44 Object value = property.getValue();
57 protected String getEditorText(Property property) throws Exception {
58 return getText(property);
    [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/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...]
  /external/webkit/Source/WebCore/platform/
HashTools.h 42 struct Property {
54 const Property* findProperty(register const char* str, register unsigned int len);
  /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 358 milliseconds

1 2 3 4 5 6 7 8