Searched refs:Property (Results 1 - 25 of 218) sorted by relevance

123456789

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DHashTools.h25 struct Property { struct in namespace:blink
35 const Property* findProperty(register const char* str, register unsigned len);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
H A DPropertyListIntersector.java15 import org.eclipse.wb.internal.core.model.property.Property;
22 * Helper for computing intersection of {@link Property} arrays.
38 public void intersect(Property[] properties) {
42 Property property = properties[i];
56 * @return the array of matched composite {@link Property}'s.
58 public Property[] getProperties() {
59 List<Property> properties = Lists.newArrayList();
61 Property compositeProperty = propertyGroup.getCompositeProperty();
67 return properties.toArray(new Property[properties.size()]);
76 * The group of {@link Property}'
[all...]
/external/chromium_org/ui/ozone/platform/dri/
H A Dhardware_display_plane.h43 struct Property { struct in class:ui::HardwareDisplayPlane
44 Property();
61 Property crtc_prop_;
62 Property fb_prop_;
63 Property crtc_x_prop_;
64 Property crtc_y_prop_;
65 Property crtc_w_prop_;
66 Property crtc_h_prop_;
67 Property src_x_prop_;
68 Property src_y_prop
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
H A DIComplexPropertyEditor.java13 import org.eclipse.wb.internal.core.model.property.Property;
26 Property[] getProperties(Property property) throws Exception;
/external/chromium_org/dbus/
H A Dproperty.h27 // member for each property defined as an instance of the Property<> class,
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;
130 // the Property<> template that are not type-specific, such as the
288 // and for Property<>. Not permitted with const references to this class.
329 // Property template, this defines the type-specific and type-safe methods
353 class CHROME_DBUS_EXPORT Property : public PropertyBase { class in namespace:dbus
355 Property() {} function in class:dbus::Property
[all...]
H A Dproperty.cc68 LOG(WARNING) << "Property changed signal has wrong parameters: "
77 LOG(WARNING) << "Property changed signal has wrong parameters: "
216 // Property<Byte> specialization.
220 Property<uint8>::Property() : value_(0) { function in class:dbus::Property
224 bool Property<uint8>::PopValueFromReader(MessageReader* reader) {
229 void Property<uint8>::AppendSetValueToWriter(MessageWriter* writer) {
234 // Property<bool> specialization.
238 Property<bool>::Property() function in class:dbus::Property
256 Property<int16>::Property() : value_(0) { function in class:dbus::Property
274 Property<uint16>::Property() : value_(0) { function in class:dbus::Property
292 Property<int32>::Property() : value_(0) { function in class:dbus::Property
310 Property<uint32>::Property() : value_(0) { function in class:dbus::Property
328 Property<int64>::Property() : value_(0), set_value_(0) { function in class:dbus::Property
346 Property<uint64>::Property() : value_(0) { function in class:dbus::Property
364 Property<double>::Property() : value_(0.0) { function in class:dbus::Property
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssSchema.java46 static final class Property { class in class:CssSchema
56 private Property( method in class:CssSchema.Property
73 static final Property DISALLOWED = new Property(
76 private final ImmutableMap<String, Property> properties;
78 private CssSchema(ImmutableMap<String, Property> properties) {
93 ImmutableMap.Builder<String, Property> propertiesBuilder =
96 Property prop = DEFINITIONS.get(propertyName);
111 Map<String, Property> properties = Maps.newLinkedHashMap();
128 Property forKe
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DPropertyManager.java17 * {@link PropertyManager} is used to get/set attributes of {@link Property}.
23 public static PropertyCategory getCategory(Property property) {
31 * @return the forced {@link PropertyCategory} of given Property, may be <code>null</code>.
33 public static PropertyCategory getCategoryForced(Property property) {
H A DProperty.java22 * {@link Property} is used to display/change properties of ObjectInfo's.
27 public abstract class Property { class
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) { method in class:Property
85 * Sets the {@link PropertyCategory} for this {@link Property}.
97 * @return the current value of this {@link Property} or {@link #UNKNOWN_VALUE}.
102 * Sets the new value of this {@link Property}.
105 * new value of {@link Property} or {@link #UNKNOWN_VALUE} if {@link Property}
128 * @return the composite {@link Property} fo
[all...]
H A DComplexProperty.java25 * Implementation of {@link Property} that shows given inner {@link Property}'s using
31 public class ComplexProperty extends Property {
36 private Property[] m_properties;
44 this(title, text, new Property[0]);
47 public ComplexProperty(String title, String text, Property[] properties) {
91 public Property[] getProperties() {
98 public void setProperties(Property[] properties) {
105 public void setProperties(List<Property> properties) {
106 Property[] propertiesArra
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategoryProvider.java13 import org.eclipse.wb.internal.core.model.property.Property;
16 * This interface is used to get {@link PropertyCategory} for {@link Property}.
23 * @return the {@link PropertyCategory} of given Property, not <code>null</code>.
25 PropertyCategory getCategory(Property property);
H A DPropertyCategoryProviders.java13 import org.eclipse.wb.internal.core.model.property.Property;
29 public PropertyCategory getCategory(Property property) {
35 * Returns result of {@link Property#getCategory()}, never <code>null</code>.
42 public PropertyCategory getCategory(Property property) {
64 public PropertyCategory getCategory(Property property) {
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DITextValuePropertyEditor.java13 import org.eclipse.wb.internal.core.model.property.Property;
25 void setText(Property property, String text) throws Exception;
H A DStringComboPropertyEditor.java14 import org.eclipse.wb.internal.core.model.property.Property;
40 protected String getText(Property property) throws Exception {
50 protected void addItems(Property property, CCombo3 combo) throws Exception {
57 protected void selectItem(Property property, CCombo3 combo) throws Exception {
62 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception {
H A DLocalePropertyEditor.java13 import org.eclipse.wb.internal.core.model.property.Property;
40 protected String getText(Property property) throws Exception {
55 protected void openDialog(Property property) throws Exception {
H A DPropertyEditor.java20 import org.eclipse.wb.internal.core.model.property.Property;
25 * Abstract editor for {@link Property}.
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)
55 * Activates editor for given {@link Property} at given place of {@link Composite}. Activation
57 * create here any {@link Control}'s required to edit {@link Property}.
69 public boolean activate(PropertyTable propertyTable, Property property, Point location)
81 * Deactivates editor for current {@link Property}. {@link PropertyEditor} should dispose any
82 * {@link Control}'s created before in {@link #activate(PropertyTable, Property, Point)}.
88 * is <code>true</code> if property should save value to {@link Property}
[all...]
H A DEnumerationValuesPropertyEditor.java16 import org.eclipse.wb.internal.core.model.property.Property;
59 public String getText(Property property) throws Exception {
62 if (value != Property.UNKNOWN_VALUE) {
80 if (value != Property.UNKNOWN_VALUE) {
107 protected void addItems(Property property, CCombo3 combo) throws Exception {
114 protected void selectItem(Property property, CCombo3 combo) throws Exception {
119 protected void toPropertyEx(Property property, CCombo3 combo, int index) throws Exception {
/external/chromium_org/chromeos/dbus/
H A Dbluetooth_device_client.h28 dbus::Property<std::string> address;
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;
55 dbus::Property<bool> connected;
59 dbus::Property<boo
[all...]
H A Dbluetooth_adapter_client.h28 dbus::Property<std::string> address;
31 dbus::Property<std::string> name;
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;
62 dbus::Property<uint32> discoverable_timeout;
66 dbus::Property<boo
[all...]
H A Dnfc_record_client.h30 dbus::Property<std::string> type;
35 dbus::Property<std::string> encoding;
39 dbus::Property<std::string> language;
44 dbus::Property<std::string> representation;
50 dbus::Property<std::string> uri;
56 dbus::Property<std::string> mime_type;
63 dbus::Property<uint32> size;
70 dbus::Property<std::string> action;
/external/clang/test/Analysis/
H A Dmalloc.cpp79 struct Property { struct
81 Property(char* n) function in struct:Property
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/
H A DCoverageOptionsFactory.java15 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/
H A DPropertyEditorPresentation.java13 import org.eclipse.wb.internal.core.model.property.Property;
26 * Shows presentation for given {@link Property}.
31 Property property,
40 public abstract void hide(PropertyTable propertyTable, Property property);
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGAnimatedProperty.h105 template <typename Property>
108 Property* baseValue()
113 Property* currentValue()
118 const Property* currentValue() const
151 ASSERT(value->type() == Property::classType());
152 m_currentValue = static_pointer_cast<Property>(value.release());
163 SVGAnimatedPropertyCommon(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue)
164 : SVGAnimatedPropertyBase(Property::classType(), contextElement, attributeName)
170 RefPtr<Property> m_baseValue;
171 RefPtr<Property> m_currentValu
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseSvnDiffFooter.pl49 Property changes on: FileA
66 Property changes on: Makefile
82 Property changes on: Makefile
98 Property changes on: Makefile
115 Property changes on: FileA
132 Property changes on: FileA
146 # Property value followed by empty line and start of next diff
152 Property changes on: FileA
171 Property changes on: FileA
176 Property change
[all...]

Completed in 2611 milliseconds

123456789