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

1 2 3 4 5 6

  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.2.1-1.js 24 ECMA Section: 11.2.1 Property Accessors
55 whose property name is Result(6).
67 var TITLE = "Property Accessors";
74 var PROPERTY = new Array();
79 PROPERTY[p++] = new Property( "this", "NaN", "number" );
80 PROPERTY[p++] = new Property( "this", "Infinity", "number" );
81 PROPERTY[p++] = new Property( "this", "eval", "function" )
    [all...]
11.2.1-2.js 24 ECMA Section: 11.2.1 Property Accessors
55 whose property name is Result(6).
67 var TITLE = "Property Accessors";
74 var PROPERTY = new Array();
79 PROPERTY[p++] = new Property( "\"hi\"", "hi", "hi", NaN );
80 PROPERTY[p++] = new Property( NaN, NaN, "NaN", NaN );
81 // PROPERTY[p++] = new Property( 3, 3, "3", 3 )
    [all...]
11.2.1-5.js 24 ECMA Section: 11.2.1 Property Accessors
55 whose property name is Result(6).
67 var TITLE = "Property Accessors";
74 var PROPERTY = new Array();
79 PROPERTY[p++] = new Property( new String("hi"), "hi", "hi", NaN );
80 PROPERTY[p++] = new Property( new Number(NaN), NaN, "NaN", NaN );
81 PROPERTY[p++] = new Property( new Number(3), 3, "3", 3 )
    [all...]
  /system/core/nexus/
PropertyManager.h 25 #include "Property.h"
34 int attachProperty(const char *ns, Property *p);
35 int detachProperty(const char *ns, Property *p);
44 Property *lookupProperty_UNLOCKED(PropertyNamespace *ns, const char *name);
45 int doSet(Property *p, int idx, const char *value);
46 int doGet(Property *p, int idx, char *buffer, size_t max);
Property.h 23 class Property {
37 Property(const char *name, bool ro, int type, int elements);
38 virtual ~Property() {}
54 class StringProperty : public Property {
78 class IntegerProperty : public Property {
100 class IPV4AddressProperty : public Property {
122 typedef android::List<Property *> PropertyCollection;
Property.cpp 22 #define LOG_TAG "Property"
26 #include "Property.h"
28 Property::Property(const char *name, bool readOnly,
33 LOGW("Property name %s violates namespace rules", name);
38 Property(name, ro, Property::Type_STRING, elements) {
41 LOGE("Integer 'set' called on string property!");
46 LOGE("IpAddr 'set' called on string property!");
51 LOGE("Integer 'get' called on string property!");
    [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> {
Property.java 20 * A property is an abstraction that can be used to represent a <emb>mutable</em> value that is held
21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
25 * @param <T> The class on which the property is declared.
26 * @param <V> The type that this property represents.
28 public abstract class Property<T, V> {
34 * This factory method creates and returns a Property given the <code>class</code> and
47 * <code>setName()</code> method is not found, the <code>Property</code> will be
49 * a property is allowed, but will have no effect.</p>
54 public static <T, V> Property<T, V> of(Class<T> hostType, Class<V> valueType, String name) {
59 * A constructor that takes an identifying name and {@link #getType() type} for the property
    [all...]
  /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/webkit/Source/WebCore/platform/
HashTools.h 42 struct Property {
54 const Property* findProperty(register const char* str, register unsigned int len);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
PropertiesTableModel.java 26 private List<ViewNode.Property> properties;
27 private List<ViewNode.Property> privateProperties = new ArrayList<ViewNode.Property>();
44 ViewNode.Property property = new ViewNode.Property(); local
45 property.name = "absolute_x";
46 property.value = String.valueOf(x);
47 privateProperties.add(property);
49 property = new ViewNode.Property()
63 ViewNode.Property property; local
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnDiffFooter.pl 48 Property changes on: FileA
65 Property changes on: Makefile
81 Property changes on: Makefile
97 Property changes on: Makefile
114 Property changes on: FileA
131 Property changes on: FileA
145 # Property value followed by empty line and start of next diff
151 Property changes on: FileA
168 diffName => "add svn:executable, followed by empty line and start of next property diff",
170 Property changes on: File
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 83 struct Property {
84 ALWAYS_INLINE Property(void* = 0)
88 ALWAYS_INLINE Property(const Identifier* ident, PropertyNode::Type ty)
93 ALWAYS_INLINE Property(PropertyNode::Type ty)
154 template <bool complete> Property createProperty(const Identifier* name, int, PropertyNode::Type type)
158 return Property(type);
159 return Property(name, type);
161 template <bool complete> Property createProperty(JSGlobalData* globalData, double name, int, PropertyNode::Type type)
164 return Property(type);
165 return Property(&globalData->parser->arena().identifierArena().makeNumericIdentifier(globalData, name), type)
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewNode.java 30 public List<Property> properties = new ArrayList<Property>();
31 public Map<String, Property> namedProperties = new HashMap<String, Property>();
95 Property p = namedProperties.get(name);
107 Property p = namedProperties.get(name);
165 public static class Property {
183 final Property other = (Property) obj;
  /external/icu4c/tools/genpname/
data.h     [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
expression-002.js 4 ECMA Section: 11.2.1 Property Accessors
14 var TITLE = "Property Accessors";
24 var PROPERTY = new Array();
29 OBJECT = new Property( "undefined", void 0, "undefined", NaN );
52 function Property( object, value, string, number ) {
expression-003.js 4 ECMA Section: 11.2.1 Property Accessors
14 var TITLE = "Property Accessors";
24 OBJECT = new Property( "undefined", void 0, "undefined", NaN );
47 function Property( object, value, string, number ) {
expression-004.js 4 ECMA Section: 11.2.1 Property Accessors
12 var TITLE = "Property Accessors";
19 var OBJECT = new Property( "null", null, "null", 0 );
41 function Property( object, value, string, number ) {
  /external/chromium/chrome/browser/prefs/
pref_observer_mock.cc 16 Property(&Details<std::string>::ptr,
pref_observer_mock.h 19 using testing::Property;
  /external/emma/core/java12/com/vladium/emma/
EMMAProperties.java 20 import com.vladium.util.Property;
99 * Wraps a Properties into a IProperties with the app's standard property
135 // note: this does not use Property.getAppProperties() by design,
136 // because that mechanism is not property alias-capable
138 final IProperties systemRedirects = wrap (Property.getSystemPropertyRedirects (EMMAProperties.SYSTEM_PROPERTY_REDIRECTS));
139 final IProperties appDefaults = wrap (Property.getProperties (appName + "_default.properties", loader));
142 final String fileName = Property.getSystemProperty (appName + ".properties");
147 systemFile = wrap (Property.getLazyPropertiesFromFile (file));
149 final IProperties system = wrap (Property.getSystemProperties (appName));
150 final IProperties userOverrides = wrap (Property.getProperties (appName + ".properties", loader))
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/
ViewNode.java 48 public List<Property> properties = new ArrayList<Property>();
50 public Map<String, Property> namedProperties = new HashMap<String, Property>();
163 ViewNode.Property property = new ViewNode.Property(); local
164 property.name = data.substring(start, index);
169 property.value = data.substring(index2 + 1, index2 + 1 + length);
171 properties.add(property);
    [all...]
  /external/chromium/chrome/browser/automation/
automation_provider_unittest.cc 35 EXPECT_CALL(*mock, OnUnhandledMessage(testing::Property(&IPC::Message::type,
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 15 ICalendar.Property prop = new ICalendar.Property("prop1", "value1");
40 // properties should be listed in insertion order, by property name.
41 component.addProperty(new ICalendar.Property("prop2", "value3"));
42 component.addProperty(new ICalendar.Property("prop1", "value1"));
43 component.addProperty(new ICalendar.Property("prop1", "value2"));
60 child.addProperty(new ICalendar.Property("prop2", "value2"));
62 parent.addProperty(new ICalendar.Property("prop1", "value1"));
63 parent.addProperty(new ICalendar.Property("prop1", "value12"));
80 ICalendar.Property prop1 = component.getFirstProperty("PROP1")
98 ICalendar.Property property = component.getFirstProperty("DTSTART"); local
    [all...]

Completed in 428 milliseconds

1 2 3 4 5 6