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

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/dbus/
property.h 31 // member for each property defined as an instance of the Property<> class,
34 // property defined to associate them with their string name.
40 // dbus::Property<std::string> name;
41 // dbus::Property<uint16_t> version;
42 // dbus::Property<dbus::ObjectPath> parent;
43 // dbus::Property<std::vector<std::string> > children;
101 // the current value of the name property would be:
116 // the property value, and whether it emits a signal or a Get() call is
124 // in property.cc because template methods use them
    [all...]
property.cc 5 #include "dbus/property.h"
50 PropertyBase* property) {
51 property->Init(this, name);
52 properties_map_[name] = property;
73 LOG(WARNING) << "Property changed signal has wrong parameters: "
82 LOG(WARNING) << "Property changed signal has wrong parameters: "
87 LOG(WARNING) << "Property changed signal has wrong parameters: "
100 void PropertySet::Get(PropertyBase* property, GetCallback callback) {
104 writer.AppendString(property->name());
111 property,
284 PropertyBase* property = it->second; local
    [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;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
Property.java 20 * A <code>Property</code> represents a single member variable of a class,
22 * class is the actual name of the property as given for the class, not an
28 * on the name of the property.
31 public abstract class Property implements Comparable<Property> {
36 public Property(String name, Class<?> type) {
56 public int compareTo(Property o) {
79 if (other instanceof Property) {
80 Property p = (Property) other
    [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...]
  /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);
Stream.h 64 * A Policy element may implement getter/setter function for a given property.
65 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t
68 template <typename Property>
69 Property get() const;
71 template <typename Property>
72 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);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
VarCheck.c 43 VAR_CHECK_VARIABLE_PROPERTY Property;
47 Status = VarCheckLibVariablePropertyGet (VariableName, VendorGuid, &Property);
49 Property.Property |= VAR_CHECK_VARIABLE_PROPERTY_READ_ONLY;
51 Property.Revision = VAR_CHECK_VARIABLE_PROPERTY_REVISION;
52 Property.Property = VAR_CHECK_VARIABLE_PROPERTY_READ_ONLY;
53 Property.Attributes = 0;
54 Property.MinSize = 1;
55 Property.MaxSize = MAX_UINTN;
    [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...]
  /frameworks/support/transition/base/android/support/transition/
ObjectAnimatorUtilsImpl.java 22 import android.util.Property;
26 <T> ObjectAnimator ofPointF(T target, Property<T, PointF> property, Path path);
PropertyValuesHolderUtilsImpl.java 22 import android.util.Property;
26 PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path);
  /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...]
  /packages/apps/Launcher3/src/com/android/launcher3/anim/
PropertyResetListener.java 22 import android.util.Property;
25 * An AnimatorListener that sets the given property to the given value at the end of the animation.
29 private Property<T, V> mPropertyToReset;
32 public PropertyResetListener(Property<T, V> propertyToReset, V resetToValue) {

Completed in 950 milliseconds

1 2 3 4 5 6 7 8 91011>>