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

1 2 3 4

  /external/webkit/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...]
11.2.1-3-n.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( "undefined", void 0, "undefined", NaN );
81 for ( var i = 0, RESULT; i < PROPERTY.length; i++ ) {
83 PROPERTY[i].object + ".valueOf()",
84 PROPERTY[i].value,
85 eval( PROPERTY[i].object+ ".valueOf()" ) )
    [all...]
11.2.1-4-n.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( "null", null, "null", 0 );
81 for ( var i = 0, RESULT; i < PROPERTY.length; i++ ) {
83 PROPERTY[i].object + ".valueOf()",
84 PROPERTY[i].value,
85 eval( PROPERTY[i].object+ ".valueOf()" ) )
    [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...]
PropertyManager.cpp 54 Property *PropertyManager::lookupProperty_UNLOCKED(PropertyNamespace *ns, const char *name) {
66 int PropertyManager::attachProperty(const char *ns_name, Property *p) {
69 LOGD("Attaching property %s to namespace %s", p->getName(), ns_name);
80 LOGE("Failed to register property %s.%s (%s)",
90 int PropertyManager::detachProperty(const char *ns_name, Property *p) {
93 LOGD("Detaching property %s from namespace %s", p->getName(), ns_name);
113 LOGE("Property %s.%s not found", ns_name, p->getName());
119 int PropertyManager::doSet(Property *p, int idx, const char *value) {
126 if (p->getType() == Property::Type_STRING) {
128 } else if (p->getType() == Property::Type_INTEGER)
    [all...]
  /development/simulator/app/
PropertyServer.h 33 /* copy a property into valueBuf; returns false if property not found */
36 /* set the property, replacing it if it already exists */
39 /* property name constants */
43 /* one property entry */
44 typedef struct Property {
47 } Property;
65 android::List<Property> mPropList;
PropertyServer.cpp 4 // Property sever. Mimics behavior provided on the device by init(8) and
69 typedef List<Property>::iterator PropIter;
176 * Get the value of a property.
180 * Returns "true" if the property was found.
184 typedef List<Property>::iterator PropIter;
190 Property& prop = *pi;
209 * Set the value of a property, replacing it if it already exists.
211 * If "value" is NULL, the property is removed.
213 * If the property is immutable, this returns "false" without doing
218 typedef List<Property>::iterator PropIter
    [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,
  /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...]
  /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/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/third_party/icu/source/tools/genpname/
data.h     [all...]
  /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...]
Command.java 18 import com.vladium.util.Property;
159 m_propertyOverrides = Property.combine (cmdOverrides, m_propertyOverrides);
171 fileOverrides = Property.getPropertiesFromFile (m_propertyFile);
175 exit (true, "property override file [" + m_propertyFile.getAbsolutePath () + "] could not be read", ioe, RC_USAGE);
180 m_propertyOverrides = Property.combine (m_propertyOverrides, fileOverrides);
259 return Property.toBoolean (v);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 14 ICalendar.Property prop = new ICalendar.Property("prop1", "value1");
39 // properties should be listed in insertion order, by property name.
40 component.addProperty(new ICalendar.Property("prop2", "value3"));
41 component.addProperty(new ICalendar.Property("prop1", "value1"));
42 component.addProperty(new ICalendar.Property("prop1", "value2"));
59 child.addProperty(new ICalendar.Property("prop2", "value2"));
61 parent.addProperty(new ICalendar.Property("prop1", "value1"));
62 parent.addProperty(new ICalendar.Property("prop1", "value12"));
79 ICalendar.Property prop1 = component.getFirstProperty("PROP1")
97 ICalendar.Property property = component.getFirstProperty("DTSTART"); local
    [all...]
  /external/emma/core/java13/com/vladium/util/exit/
ExitHookManager.java 15 import com.vladium.util.Property;
42 throw new UnsupportedOperationException ("no shutdown hook manager available [JVM: " + Property.getSystemFingerprint () + "]");
  /frameworks/base/core/java/android/pim/
ICalendar.java 77 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
78 new LinkedHashMap<String, ArrayList<Property>>();
135 * Adds a Property to this component.
138 public void addProperty(Property prop) {
140 ArrayList<Property> props = mPropsMap.get(name);
142 props = new ArrayList<Property>();
149 * Returns a set of the property names within this component.
150 * @return A set of property names within this component.
159 * @param name The name of the property that should be returned.
162 public List<Property> getProperties(String name)
489 Property property; local
    [all...]
RecurrenceSet.java 173 ICalendar.Property dtstartProperty =
267 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART");
292 ICalendar.Property durationProp = new ICalendar.Property("DURATION");
326 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART");
351 ICalendar.Property durationProp = new ICalendar.Property("DURATION");
370 ICalendar.Property prop = new ICalendar.Property(propertyName)
    [all...]

Completed in 177 milliseconds

1 2 3 4