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

1 2

  /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-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...]
  /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 ) {
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 29 * Component and Property, for use in the test.
41 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
42 new LinkedHashMap<String, ArrayList<Property>>();
53 * Adds a Property to this component.
56 public void addProperty(Property prop) {
58 ArrayList<Property> props = mPropsMap.get(name);
60 props = new ArrayList<Property>();
69 * @param name The name of the property that should be returned.
72 public List<Property> getProperties(String name) {
78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.
    [all...]
  /external/webkit/Source/WebCore/platform/
HashTools.h 42 struct Property {
54 const Property* findProperty(register const char* str, register unsigned int len);
  /frameworks/base/core/java/android/util/
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/chromium/net/http/
http_auth_handler.h 138 enum Property {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
Property.java 11 package org.eclipse.wb.internal.core.model.property;
15 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
16 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
22 * {@link Property} is used to display/change properties of ObjectInfo's.
25 * @coverage core.model.property
27 public abstract class Property {
29 * The value that should be used when we don't know real value of {@link Property}. We can not use
50 public Property(PropertyEditor editor) {
61 * @return the title displayed to the user to identify the property.
66 * @return <code>true</code> if this property has a non-default valu
    [all...]
  /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/llvm/utils/TableGen/
CodeGenTarget.cpp 394 errs() << "Unsupported SD Node property '" << PropList[i]->getName()
534 Record *Property = PropList->getElementAsRecord(i);
535 assert(Property->isSubClassOf("IntrinsicProperty") &&
536 "Expected a property!");
538 if (Property->getName() == "IntrNoMem")
540 else if (Property->getName() == "IntrReadArgMem")
542 else if (Property->getName() == "IntrReadMem")
544 else if (Property->getName() == "IntrReadWriteArgMem")
546 else if (Property->getName() == "Commutative")
548 else if (Property->getName() == "Throws"
    [all...]
  /frameworks/base/include/androidfw/
KeyCharacterMap.h 184 struct Property {
185 inline Property(int32_t property = 0, int32_t metaState = 0) :
186 property(property), metaState(metaState) { }
188 int32_t property; member in struct:android::KeyCharacterMap::Parser::Property
  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 36 private class Property {
37 // MTP property code
44 Property(int code, int type, int column) {
58 private final Property[] mProperties;
68 // constructs a property group for a list of properties
81 mProperties = new Property[count];
92 private Property createProperty(int code, ArrayList<String> columns) {
178 Log.e(TAG, "unsupported property " + code);
184 return new Property(code, type, columns.size() - 1);
186 return new Property(code, type, -1)
347 Property property = mProperties[propertyIndex]; 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/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
  /external/v8/src/
ast.cc 35 #include "property-details.h"
36 #include "property.h"
174 ObjectLiteral::Property::Property(Literal* key,
194 ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) {
201 bool ObjectLiteral::Property::IsCompileTimeValue() {
208 void ObjectLiteral::Property::set_emit_store(bool emit_store) {
213 bool ObjectLiteral::Property::emit_store() {
248 ObjectLiteral::Property* property = properties()->at(i) local
550 Property* property = expression()->AsProperty(); local
    [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...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 131 /// Access Expression | "Base" Decl | "Property" Decl
133 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
148 /// The extra flag is "true" if the Base and Property are enough to uniquely
155 /// The "property" decl, as described in the class documentation.
159 const NamedDecl *Property;
171 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
176 const NamedDecl *getProperty() const { return Property; }
179 /// rather than, say, an instance variable or property of another object.
194 return Base == Other.Base && Property == Other.Property
    [all...]
  /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.
65 static void checkARCPropertyDecl(Sema &S, ObjCPropertyDecl *property) {
66 if (property->isInvalidDecl()) return;
69 = property->getPropertyAttributes();
71 = property->getType().getObjCLifetime();
77 = getImpliedARCOwnership(propertyKind, property->getType())
809 ObjCPropertyDecl *property = 0; local
1562 ObjCPropertyDecl *property = *P; local
    [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...]
  /external/clang/lib/Parse/
ParseObjc.cpp 291 /// The Objective-C property callback. This should be defined where
325 // Install the property declarator into interfaceDecl.
340 Decl *Property =
347 Props.push_back(Property);
349 FD.complete(Property);
358 /// objc-interface-decl-list objc-property-decl [OBJC2]
488 // Parse property attribute list, if any.
530 /// Parse property attribute declarations.
532 /// property-attr-decl: '(' property-attrlist ')
    [all...]

Completed in 704 milliseconds

1 2