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

  /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-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...]
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...]
  /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;
  /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 ) {
  /system/core/nexus/
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...]
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;
  /external/chromium/net/http/
http_auth_handler.h 82 enum Property {
  /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/v8/src/
ast.cc 42 Property Property::this_property_(VariableProxySentinel::this_proxy(), NULL, 0);
119 ObjectLiteral::Property::Property(Literal* key, Expression* value) {
135 ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) {
142 bool ObjectLiteral::Property::IsCompileTimeValue() {
ast.h 87 V(Property) \
131 virtual Property* AsProperty() { return NULL; }
192 // Symbols that cannot be parsed as array indices are considered property
193 // names. We do not treat symbols that can be array indexes as property
788 // Property is used for passing information
791 class Property: public ZoneObject {
795 CONSTANT, // Property with constant value (compile time).
796 COMPUTED, // Property with computed value (execution time).
797 MATERIALIZED_LITERAL, // Property value is a materialized literal.
798 GETTER, SETTER, // Property is an accessor function
    [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/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 21 import com.vladium.util.Property;
194 // * Creates a property view specific to 'reportType' report type.
212 // * @param type [null/empty indicates type-neutral property]
281 /* view type is no longer a user-overridable property [it is driven by SourceFile attribute presence]
292 result.setHideClasses (Property.toBoolean (hideClasses));
493 // // TODO: this kind of lookup makes the property listing confusing
  /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...]
  /external/chromium/third_party/icu/source/tools/genpname/
genpname.cpp 88 class Property : public Alias {
93 Property(int32_t enumValue,
99 Property::Property(int32_t _enumValue,
112 /* return a list of unique names, not including "", for this property
197 const Property* a;
200 PropertyArrayList(const Property* _a, int32_t _n) {
267 * An element in the map from enumerated property enums to value maps.
940 // Note: u_init() will try to open ICU property data.
1010 // already eliminated duplicate names for a single property, whic
    [all...]
  /external/icu4c/tools/genpname/
genpname.cpp 89 class Property : public Alias {
94 Property(int32_t enumValue,
100 Property::Property(int32_t _enumValue,
113 /* return a list of unique names, not including "", for this property
198 const Property* a;
201 PropertyArrayList(const Property* _a, int32_t _n) {
268 * An element in the map from enumerated property enums to value maps.
941 // Note: u_init() will try to open ICU property data.
1011 // already eliminated duplicate names for a single property, whic
    [all...]
  /external/webkit/JavaScriptCore/parser/
Grammar.y 284 %type <propertyNode> Property
322 Property:
339 Property { $$.m_node.head = new (GLOBAL_DATA) PropertyListNode(GLOBAL_DATA, $1.m_node);
343 | PropertyList ',' Property { $$.m_node.head = $1.m_node.head;
    [all...]
  /frameworks/base/core/java/android/pim/vcard/
VCardEntry.java 257 public final String phoneticName; // We won't have this in "TITLE" property.
389 /* package */ static class Property {
632 // Probably the "TITLE" property comes before the "ORG" property via
701 * regitimate property to be understood.
761 * Assume the ';' means the same meaning in N property
820 public void addProperty(final Property property) {
821 final String propName = property.mPropertyName;
822 final Map<String, Collection<String>> paramMap = property.mParameterMap
    [all...]
  /packages/apps/Tag/src/com/android/vcard/
VCardEntry.java 255 public final String phoneticName; // We won't have this in "TITLE" property.
387 /* package */ static class Property {
631 // Probably the "TITLE" property comes before the "ORG" property via
700 * regitimate property to be understood.
760 * Assume the ';' means the same meaning in N property
819 public void addProperty(final Property property) {
820 final String propName = property.mPropertyName;
821 final Map<String, Collection<String>> paramMap = property.mParameterMap
    [all...]
  /external/emma/lib/
emma.jar 
  /prebuilt/common/ant/
ant.jar 

Completed in 408 milliseconds