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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/css/
HashTools.h 25 struct Property {
35 const Property* findProperty(register const char* str, register unsigned len);
  /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/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/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/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedProperty.h 104 template <typename Property>
107 Property* baseValue()
112 Property* currentValue()
117 const Property* currentValue() const
150 ASSERT(value->type() == Property::classType());
151 m_currentValue = static_pointer_cast<Property>(value.release());
162 SVGAnimatedPropertyCommon(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue)
163 : SVGAnimatedPropertyBase(Property::classType(), contextElement, attributeName)
169 RefPtr<Property> m_baseValue;
170 RefPtr<Property> m_currentValue
    [all...]
  /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...]
  /external/chromium_org/chromeos/dbus/
bluetooth_adapter_client.h 17 #include "dbus/property.h"
28 dbus::Property<std::string> address;
31 dbus::Property<std::string> name;
34 // this property can be changed to change the presentation for when
36 dbus::Property<std::string> alias;
39 dbus::Property<uint32> bluetooth_class;
42 dbus::Property<bool> powered;
47 dbus::Property<bool> discoverable;
52 dbus::Property<bool> pairable;
57 dbus::Property<uint32> pairable_timeout
    [all...]
nfc_record_client.h 15 #include "dbus/property.h"
30 dbus::Property<std::string> type;
33 // This property is only valid for Text and SmartPoster's title records.
35 dbus::Property<std::string> encoding;
37 // The ISO/IANA language code (For example "en" or "jp"). This property is
39 dbus::Property<std::string> language;
42 // This property is only valid for Text and SmartPoster's title records.
44 dbus::Property<std::string> representation;
47 // URI, including the scheme and the resource. This property is only valid
50 dbus::Property<std::string> uri
    [all...]
bluetooth_device_client.h 17 #include "dbus/property.h"
28 dbus::Property<std::string> address;
31 // different local name, use the |alias| property.
32 dbus::Property<std::string> name;
36 dbus::Property<std::string> icon;
39 dbus::Property<uint32> bluetooth_class;
42 dbus::Property<uint16> appearance;
45 dbus::Property<uint16> vendor;
49 dbus::Property<std::vector<std::string> > uuids;
52 dbus::Property<bool> paired
    [all...]
bluetooth_gatt_service_client.h 14 #include "dbus/property.h"
25 dbus::Property<std::string> uuid;
28 dbus::Property<dbus::ObjectPath> device;
31 dbus::Property<bool> primary;
35 dbus::Property<std::vector<dbus::ObjectPath> > includes;
57 // in the value of the property named |property_name|.
  /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...]
  /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...]

Completed in 1246 milliseconds

1 2 3 4 5 6 7 8 91011>>