HomeSort by relevance Sort by last modified time
    Searched refs:Property (Results 126 - 150 of 446) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/DeskClock/src/com/android/deskclock/widget/
CircleView.java 26 import android.util.Property;
38 * A Property wrapper around the fillColor functionality handled by the
41 public final static Property<CircleView, Integer> FILL_COLOR =
42 new Property<CircleView, Integer>(Integer.class, "fillColor") {
55 * A Property wrapper around the radius functionality handled by the
58 public final static Property<CircleView, Float> RADIUS =
59 new Property<CircleView, Float>(Float.class, "radius") {
  /packages/apps/Launcher3/src/com/android/launcher3/keyboard/
FocusIndicatorHelper.java 32 import android.util.Property;
48 public static final Property<FocusIndicatorHelper, Float> ALPHA =
49 new Property<FocusIndicatorHelper, Float>(Float.TYPE, "alpha") {
61 public static final Property<FocusIndicatorHelper, Float> SHIFT =
62 new Property<FocusIndicatorHelper, Float>(
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyLoader.java 160 ViewNode.Property property = new ViewNode.Property(); local
161 property.name = data.substring(start, index);
163 int colonIndex = property.name.indexOf(':');
165 property.name = property.name.substring(colonIndex + 1);
171 property.value = data.substring(index2 + 1, index2 + 1 + length);
173 node.properties.add(property);
174 node.namedProperties.put(property.name, property)
    [all...]
  /external/v8/src/ast/
ast.cc 17 #include "src/property-details.h"
18 #include "src/property.h"
148 Property* property = expr->AsProperty(); local
149 LhsKind assign_type = Property::GetAssignType(property);
296 ObjectLiteral::Property* property = properties()->at(i); local
297 Expression* value = property->value();
299 property->SetSlot(spec->AddStoreICSlot())
329 ObjectLiteral::Property* property = properties()->at(property_index); local
372 ObjectLiteral::Property* property = properties()->at(property_index); local
393 ObjectLiteral::Property* property = properties()->at(i); local
436 ObjectLiteral::Property* property = properties()->at(i); local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTableTooltipHelper.java 11 package org.eclipse.wb.internal.core.model.property.table;
21 import org.eclipse.wb.internal.core.model.property.Property;
28 * @coverage core.model.property.table
73 private Property m_property;
84 public void update(Property property,
91 m_property = property;
125 // check for property
  /external/v8/src/
typing-asm.h 140 void VisitHeapAccess(Property* expr, bool assigning, Type* assignment_type);
151 void VisitSIMDProperty(Property* expr);
163 void VisitLibraryAccess(ObjectTypeMap* map, Property* expr);
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
ProgressDrawable.java 30 import android.util.Property;
43 private static Property<ProgressDrawable, Integer> LEVEL =
44 new Property<ProgressDrawable, Integer>(Integer.class, "level") {
  /external/emma/core/java12/com/vladium/util/
Property.java 7 * $Id: Property.java,v 1.1.1.1.2.4 2004/07/16 23:32:04 vlad_r Exp $
32 abstract class Property
49 * should be used for read-only property only
92 * This method is not property aliasing-aware.
105 final Properties appDefaults = Property.getProperties (namespace + "_default.properties", loader);
108 final String fileName = Property.getSystemProperty (namespace + ".properties");
113 systemFileOverrides = Property.getLazyPropertiesFromFile (file);
115 final Properties systemOverrides = Property.getSystemProperties (namespace);
116 final Properties resOverrides = Property.getProperties (namespace + ".properties", loader);
309 * Returns a lazy property implementation that will read 'load' as a .propertie
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/ant/
GenericCfg.java 23 import com.vladium.util.Property;
28 * that are set via generic 'properties=&lt;file&gt;' attribute and &lt;property&gt;
57 // generic property element:
63 final PropertyElement property = new PropertyElement (); local
64 m_genericPropertyElements.add (property);
66 return property;
78 fileSettings = EMMAProperties.wrap (Property.getPropertiesFromFile (m_settingsFile));
83 + ": property file [" + m_settingsFile.getAbsolutePath () + "] could not be read" , ioe, m_task.getLocation ()).fillInStackTrace ();
103 final PropertyElement property = (PropertyElement) i.next (); local
105 final String name = property.getName ()
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
StylingPolicy.java 40 * property values and splitting combo properties into multiple more specific
68 CssSchema.Property cssProperty = CssSchema.DISALLOWED;
69 List<CssSchema.Property> cssProperties = null;
  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 35 private class Property {
36 // MTP property code
43 Property(int code, int type, int column) {
56 private final Property[] mProperties;
66 // constructs a property group for a list of properties
78 mProperties = new Property[count];
89 private Property createProperty(int code, ArrayList<String> columns) {
186 Log.e(TAG, "unsupported property " + code);
192 return new Property(code, type, columns.size() - 1);
194 return new Property(code, type, -1)
355 Property property = mProperties[propertyIndex]; local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAnimUtils.java 24 import android.util.Property;
102 public static ObjectAnimator ofFloat(View target, Property<View, Float> property,
104 ObjectAnimator anim = ObjectAnimator.ofFloat(target, property, values);
  /system/connectivity/shill/
static_ip_parameters.h 42 // Take a property store and add static IP parameters to them.
62 // Return whether configuration parameters contain an address property.
65 // Return whether configuration parameters contain a namerservers property.
75 struct Property {
91 static const Property kProperties[];
93 // These functions try to retrieve the argument |property| out of the
96 void ApplyInt(const std::string& property, int32_t* value_out);
97 void ApplyString(const std::string& property, std::string* value_out);
98 void ApplyStrings(const std::string& property,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
property.py 33 class Property(object):
90 raise ValueError('%s is a required property' % self.name)
124 class StringProperty(Property):
135 class TextProperty(Property):
157 Hashed property whose original value can not be
245 class BlobProperty(Property):
261 class S3KeyProperty(Property):
308 class IntegerProperty(Property):
337 class LongProperty(Property):
361 class BooleanProperty(Property)
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
VectorDrawable.java 42 import android.util.Property;
164 * If this property is animated, any value set by the animation will override the original value.
165 * No path fill is drawn if this property is not specified.</dd>
171 * If this property is animated, any value set by the animation will override the original value.
172 * No path outline is drawn if this property is not specified.</dd>
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategory.java 11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
17 * Describes category of {@link Property}.
20 * @coverage core.model.property
119 * @return <code>true</code> if this property is preferred.
126 * @return <code>true</code> if this property is advanced.
133 * @return <code>true</code> if this property is really advanced.
140 * @return <code>true</code> if this property is hidden.
147 * @return <code>true</code> if this property is system
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.h 72 // Visit a keyed super property load. The optional
76 void VisitKeyedSuperPropertyLoad(Property* property,
79 // Visit a named super property load. The optional
83 void VisitNamedSuperPropertyLoad(Property* property,
86 void VisitPropertyLoad(Register obj, Property* expr);
87 void VisitPropertyLoadForAccumulator(Register obj, Property* expr);
142 ObjectLiteralProperty* property, int slot_number = 0);
144 ObjectLiteralProperty* property,
    [all...]
  /system/connectivity/shill/dbus/
chromeos_wimax_manager_proxy.h 52 brillo::dbus_utils::Property<std::vector<dbus::ObjectPath>> devices;
70 // Callback invoked when the value of property |property_name| is changed.
  /cts/tests/tests/animation/src/android/animation/cts/
ObjectAnimatorTest.java 24 import android.util.Property;
55 String property = "y"; local
58 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
75 String property = "y"; local
78 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
81 objAnimator.setPropertyName(property);
88 String property = "backgroundColor"; local
92 final ObjectAnimator colorAnimator = ObjectAnimator.ofInt(object, property,
114 String property = "backgroundColor"; local
119 final ObjectAnimator colorAnimator = ObjectAnimator.ofObject(object, property,
180 String property = "y"; local
214 String property = "y"; local
235 String property = "y"; local
269 final Property property = AnimTarget.TEST_VALUE; local
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 177 /// Access Expression | "Base" Decl | "Property" Decl
179 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
194 /// The extra flag is "true" if the Base and Property are enough to uniquely
201 /// The "property" decl, as described in the class documentation.
205 const NamedDecl *Property;
215 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
220 const NamedDecl *getProperty() const { return Property; }
223 /// rather than, say, an instance variable or property of another object.
238 return Base == Other.Base && Property == Other.Property
    [all...]
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 25 import android.util.Property;
33 * This class holds information about a property and the values that that property
41 * The name of the property associated with the values. This need not be a real property,
50 protected Property mProperty;
54 * PropertyValuesHolder, since it holds all of the per-property information. This
55 * property is automatically
62 * PropertyValuesHolder, since it holds all of the per-property information. This
63 * property is automaticall
    [all...]
  /system/connectivity/shill/vpn/
openvpn_driver.cc 83 // Some configurations pass the netmask in the ifconfig_remote property.
102 const VPNDriver::Property OpenVPNDriver::kProperties[] = {
110 { kOpenVPNClientCertIdProperty, Property::kCredential },
117 Property::kEphemeral | Property::kCredential | Property::kWriteOnly },
118 { kOpenVPNPasswordProperty, Property::kCredential | Property::kWriteOnly },
119 { kOpenVPNPinProperty, Property::kCredential },
134 Property::kEphemeral | Property::kCredential | Property::kWriteOnly }
    [all...]
  /external/emma/core/java12/com/vladium/emma/rt/
RT.java 15 import com.vladium.util.Property;
184 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_FILE, local
186 return new File (property);
199 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_MERGE, local
201 return Property.toBoolean (property);
  /external/opencv3/modules/videoio/src/
cap_dshow.cpp 14 // Third party copyrights are property of their respective owners.
541 bool setVideoSettingFilter(int deviceID, long Property, long lValue, long Flags = 0, bool useDefaultValue = false);
542 bool setVideoSettingFilterPct(int deviceID, long Property, float pctValue, long Flags = 0);
543 bool getVideoSettingFilter(int deviceID, long Property, long &min, long &max, long &SteppingDelta, long &currentValue, long &flags, long &defaultValue);
545 bool setVideoSettingCamera(int deviceID, long Property, long lValue, long Flags = 0, bool useDefaultValue = false);
546 bool setVideoSettingCameraPct(int deviceID, long Property, float pctValue, long Flags = 0);
547 bool getVideoSettingCamera(int deviceID, long Property, long &min, long &max, long &SteppingDelta, long &currentValue, long &flags, long &defaultValue);
549 //bool setVideoSettingCam(int deviceID, long Property, long lValue, long Flags = NULL, bool useDefaultValue = false);
    [all...]
  /external/snakeyaml/src/test/java/examples/staticstate/
StaticFieldsTest.java 27 import org.yaml.snakeyaml.introspector.Property;
81 protected MappingNode representJavaBean(Set<Property> properties, Object javaBean) {

Completed in 1906 milliseconds

1 2 3 4 56 7 8 91011>>