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

1 2 3 45 6 7 8 91011>>

  /external/libbrillo/brillo/dbus/
dbus_property.h 9 #include <dbus/property.h>
14 // Re-implementation of dbus::Property<T> that can handle any type supported by
16 // This class is pretty much a copy of dbus::Property<T> from dbus/property.h
20 class Property : public dbus::PropertyBase {
22 Property() = default;
39 // Requests that the remote object change the property value to |value|,
69 // to replace the property value with the set value without using a
77 // value of a property.
84 // Current cached value of the property
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssSchemaTest.java 62 CssSchema.Property property = CssSchema.DEFAULT.forKey(propName); local
65 property.literals.contains("expression"));
68 property.fnKeys.containsKey("expression("));
71 property.literals.contains("url"));
74 property.fnKeys.containsKey("url("));
89 CssSchema.Property cssFloat = custom.forKey("float");
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue133/
StackOverflowTest.java 23 import org.yaml.snakeyaml.introspector.Property;
41 || message.contains("Unable to find getter for property 'location'"));
51 * property when we dump the instance of Point.
56 protected NodeTuple representJavaBeanProperty(Object javaBean, Property property,
58 if (javaBean instanceof Point && "location".equals(property.getName())) {
62 .representJavaBeanProperty(javaBean, property, propertyValue, customTag);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue48/
SkipJavaBeanPropertyTest.java 21 import org.yaml.snakeyaml.introspector.Property;
47 protected NodeTuple representJavaBeanProperty(Object bean, Property property, Object value,
50 return super.representJavaBeanProperty(bean, property, value, customTag);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
StringXmlPropertyDialog.java 23 import org.eclipse.wb.internal.core.model.property.Property;
24 import org.eclipse.wb.internal.core.model.property.editor.string.StringPropertyDialog;
27 StringXmlPropertyDialog(Shell parentShell, Property property) throws Exception {
28 super(parentShell, property);
XmlProperty.java 38 import org.eclipse.wb.internal.core.model.property.Property;
39 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
40 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider;
41 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipTextProvider;
48 * An Android XML property
50 class XmlProperty extends Property {
54 private Property mParent;
106 // If we're nested within a complex property, say "Line Spacing", don't
107 // include "Line Spacing " as a prefix for each property her
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
ICalendar.java 76 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
77 new LinkedHashMap<String, ArrayList<Property>>();
134 * Adds a Property to this component.
137 public void addProperty(Property prop) {
139 ArrayList<Property> props = mPropsMap.get(name);
141 props = new ArrayList<Property>();
148 * Returns a set of the property names within this component.
149 * @return A set of property names within this component.
158 * @param name The name of the property that should be returned.
161 public List<Property> getProperties(String name)
488 Property property; local
    [all...]
RecurrenceSet.java 191 ICalendar.Property dtstartProperty =
287 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART");
312 ICalendar.Property durationProp = new ICalendar.Property("DURATION");
346 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART");
371 ICalendar.Property durationProp = new ICalendar.Property("DURATION");
390 ICalendar.Property prop = new ICalendar.Property(propertyName)
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
PropertyTest.java 24 import android.util.Property;
78 // Utility methods to get/set instance values. Used by Property classes below.
104 // Properties. RAW subclass from the generic Property class, the others subclass from
107 private static final Property<PropertyTest, Point> RAW_POINT_PROP =
108 new Property<PropertyTest, Point>(Point.class, "rawPoint") {
120 private static final Property<PropertyTest, Float> RAW_FLOAT_PROP =
121 new Property<PropertyTest, Float>(Float.class, "rawFloat") {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DividerHandleView.java 28 import android.util.Property;
39 private final static Property<DividerHandleView, Integer> WIDTH_PROPERTY
40 = new Property<DividerHandleView, Integer>(Integer.class, "width") {
54 private final static Property<DividerHandleView, Integer> HEIGHT_PROPERTY
55 = new Property<DividerHandleView, Integer>(Integer.class, "height") {
  /frameworks/support/transition/src/android/support/transition/
ViewUtils.java 26 import android.util.Property;
58 * A {@link Property} for animating transitionAlpha value of a View.
60 static final Property<View, Float> TRANSITION_ALPHA =
61 new Property<View, Float>(Float.class, "translationAlpha") {
75 static final Property<View, Rect> CLIP_BOUNDS =
76 new Property<View, Rect>(Rect.class, "clipBounds") {
  /packages/apps/Launcher3/src/com/android/launcher3/pageindicators/
PageIndicatorLineCaret.java 17 import android.util.Property;
64 private static final Property<PageIndicatorLineCaret, Integer> PAINT_ALPHA
65 = new Property<PageIndicatorLineCaret, Integer>(Integer.class, "paint_alpha") {
78 private static final Property<PageIndicatorLineCaret, Float> NUM_PAGES
79 = new Property<PageIndicatorLineCaret, Float>(Float.class, "num_pages") {
92 private static final Property<PageIndicatorLineCaret, Integer> TOTAL_SCROLL
93 = new Property<PageIndicatorLineCaret, Integer>(Integer.class, "total_scroll") {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
StringPropertyDialog.java 11 package org.eclipse.wb.internal.core.model.property.editor.string;
23 import org.eclipse.wb.internal.core.model.property.Property;
33 * @coverage core.model.property.editor
47 private final Property m_property;
54 public StringPropertyDialog(Shell parentShell, Property property) throws Exception {
56 m_property = property;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
SkipBeanTest.java 24 import org.yaml.snakeyaml.introspector.Property;
44 protected NodeTuple representJavaBeanProperty(Object javaBean, Property property,
50 .representJavaBeanProperty(javaBean, property, propertyValue, customTag);
64 protected NodeTuple representJavaBeanProperty(Object javaBean, Property property,
66 NodeTuple tuple = super.representJavaBeanProperty(javaBean, property, propertyValue,
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
10 // This file implements semantic analysis for Objective C @property and
33 /// getImpliedARCOwnership - Given a set of property attributes and a
55 // property type.
64 /// Check the internal consistency of a property declaration with
67 ObjCPropertyDecl *property) {
68 if (property->isInvalidDecl()) return;
71 = property->getPropertyAttributes();
73 = property->getType().getObjCLifetime();
78 = getImpliedARCOwnership(propertyKind, property->getType())
915 ObjCPropertyDecl *property = nullptr; local
1916 const auto *property = propertyImpl->getPropertyDecl(); local
    [all...]
  /cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
Calendarcommon2Test.java 38 List<ICalendar.Property> properties =
44 // this test apk which has the hardcoded behavior of adding a property
  /external/llvm/lib/CodeGen/
FuncletLayout.cpp 33 MachineFunctionProperties::Property::AllVRegsAllocated);
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Engine.h 183 template <typename Property, typename Key>
184 Property getPropertyForKey(Key key) const;
186 template <typename Property, typename Key>
187 bool setPropertyForKey(const Property &property, const Key &key);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTooltipProvider.java 11 package org.eclipse.wb.internal.core.model.property.table;
13 import org.eclipse.wb.internal.core.model.property.Property;
27 * @coverage core.model.property.table
31 * Show tooltip directly on property row.
35 * Show tooltip below property row.
47 public abstract Control createTooltipControl(Property property,
61 * use tooltip to show just longer (full) text of property. But for "class" property we sho
    [all...]
PropertyTable.java 11 package org.eclipse.wb.internal.core.model.property.table;
42 import org.eclipse.wb.internal.core.model.property.Property;
43 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
44 import org.eclipse.wb.internal.core.model.property.category.PropertyCategoryProvider;
45 import org.eclipse.wb.internal.core.model.property.category.PropertyCategoryProviders;
46 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
47 import org.eclipse.wb.internal.core.model.property.editor.complex.IComplexPropertyEditor;
48 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
49 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation
286 Property property = m_activePropertyInfo.getProperty(); local
392 Property property = m_activePropertyInfo.getProperty(); local
448 Property property = m_activePropertyInfo.getProperty(); local
498 Property property = propertyInfo.getProperty(); local
797 Property property = propertyInfo.getProperty(); local
1190 Property property = propertyInfo.getProperty(); local
1248 Property property = propertyInfo.getProperty(); local
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructor.java 30 import org.yaml.snakeyaml.introspector.Property;
78 Property property = getPropertyUtils().getProperty(bean.getClass(), key); local
80 property.set(bean, entry.getValue());
82 throw new YAMLException("Cannot set property='" + key + "' with value='"
204 Property property = getPropertyUtils().getProperty(bean.getClass(), local
206 property.set(bean, value);
213 * Provide the name of the property which is used when the entries form a
214 * sequence. The property must be a List
221 Property property = iterator.next(); local
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
Representer.java 29 import org.yaml.snakeyaml.introspector.Property;
63 * when the property class is the same as runtime class
71 protected MappingNode representJavaBean(Set<Property> properties, Object javaBean) {
80 for (Property property : properties) {
81 Object memberValue = property.get(javaBean);
84 NodeTuple tuple = representJavaBeanProperty(javaBean, property, memberValue,
107 * Represent one JavaBean property.
111 * @param property
112 * - the property of the instanc
    [all...]
  /external/v8/src/ast/
ast.cc 18 #include "src/property-details.h"
19 #include "src/property.h"
225 Property* property = expr->AsProperty(); local
226 LhsKind assign_type = Property::GetAssignType(property);
374 ClassLiteral::Property* property = properties()->at(i); local
375 Expression* value = property->value();
377 property->SetSlot(spec->AddStoreICSlot())
402 ObjectLiteral::Property* property = properties()->at(property_index); local
445 ObjectLiteral::Property* property = properties()->at(property_index); local
466 ObjectLiteral::Property* property = properties()->at(i); local
509 ObjectLiteral::Property* property = properties()->at(i); local
    [all...]
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 25 import android.util.Property;
33 * as well as the name of the property that will be animated. Appropriate set/get functions
35 * animate the property.
64 * <a href="{@docRoot}guide/topics/graphics/prop-animation.html#object-animator">Property
77 * A weak reference to the target object on which the property exists, set
84 private Property mProperty;
89 * Sets the name of the property that will be animated. This name is used to derive
91 * For example, a property name of <code>foo</code> will result
97 * name of the property being animated, use <code>float</code> or <code>int</code> typed values,
100 * property types and return types will work, but will have more overhead in processin
    [all...]
  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
SlideKitkat.java 29 import android.util.Property;
58 /** Returns the property to animate translation */
59 Property<View, Float> getProperty();
72 public Property<View, Float> getProperty() {
87 public Property<View, Float> getProperty() {
210 private Animator createAnimation(final View view, Property<View, Float> property,
215 start = View.TRANSLATION_Y == property ? startPosition[1] : startPosition[0];
218 final ObjectAnimator anim = ObjectAnimator.ofFloat(view, property, start, end);
220 SlideAnimatorListener listener = new SlideAnimatorListener(view, property, terminalValue, end
    [all...]

Completed in 482 milliseconds

1 2 3 45 6 7 8 91011>>