HomeSort by relevance Sort by last modified time
    Searched refs:Property (Results 1 - 25 of 276) 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/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 42 /** Describes the kinds of tokens a CSS property's value can safely contain. */
46 static final class Property {
56 private Property(
73 static final Property DISALLOWED = new Property(
76 private final ImmutableMap<String, Property> properties;
78 private CssSchema(ImmutableMap<String, Property> properties) {
86 * @param propertyNames a series of lower-case CSS property names that appear
88 * property name. This class's {@code main} method will dump a list of
89 * known property names when run with zero arguments
130 Property property = properties.get(propertyName); local
    [all...]
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
InputSource.h 63 * A Policy element may implement getter/setter function for a given property.
64 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t
67 template <typename Property>
68 Property get() const;
70 template <typename Property>
71 status_t set(Property property);
Strategy.h 63 * A Policy element may implement getter/setter function for a given property.
64 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t
67 template <typename Property>
68 Property get() const;
70 template <typename Property>
71 status_t set(Property property);
Usage.h 63 * A Policy element may implement getter/setter function for a given property.
64 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t
67 template <typename Property>
68 Property get() const;
70 template <typename Property>
71 status_t set(Property property);
Element.h 66 * A Policy element may implement getter/setter function for a given property.
67 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t
70 * @tparam Property for which this policy element has setter / getter.
71 * @return the property kept track by this policy base element.
73 template <typename Property>
74 Property get() const;
77 * A Policy element may implement getter/setter function for a given property.
78 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t
81 * @tparam Property for which this policy element has setter / getter.
83 * @param[in] property value to be assigned for this policy base element
    [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/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...]
  /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...]
  /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...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapBmessageParser.java 32 import android.bluetooth.client.map.utils.BmsgTokenizer.Property;
44 private final static Property BEGIN_BMSG = new Property("BEGIN", "BMSG");
45 private final static Property END_BMSG = new Property("END", "BMSG");
47 private final static Property BEGIN_VCARD = new Property("BEGIN", "VCARD");
48 private final static Property END_VCARD = new Property("END", "VCARD");
50 private final static Property BEGIN_BENV = new Property("BEGIN", "BENV")
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
BmsgTokenizer.java 35 static public class Property {
39 public Property(String name, String value) {
57 return ((o instanceof Property) && ((Property) o).name.equals(name) && ((Property) o).value
73 public Property next(boolean alwaysReturn) throws ParseException {
84 throw new ParseException("Property or empty line expected", pos());
94 return new Property(mMatcher.group(2), mMatcher.group(3));
97 public Property next() throws ParseException {
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
BmsgTokenizer.java 35 static public class Property {
39 public Property(String name, String value) {
57 return ((o instanceof Property) && ((Property) o).name.equals(name) && ((Property) o).value
73 public Property next(boolean alwaysReturn) throws ParseException {
84 throw new ParseException("Property or empty line expected", pos());
94 return new Property(mMatcher.group(2), mMatcher.group(3));
97 public Property next() throws ParseException {
  /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...]

Completed in 412 milliseconds

1 2 3 4 5 6 7 8 91011>>