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

1 2 3 4 56 7 8 91011>>

  /external/v8/test/mjsunit/
object-create.js 77 // Add a property foo that returns a function.
83 // Ensure the property is writable.
114 assertTrue(/Invalid property/.test(e));
169 assertTrue(/Invalid property/.test(e));
with-prototype.js 29 // extension object contains a property with the name assigned to in
debug-backtrace-text.js 79 // 0: Call distance on Point where distance is a property on the prototype
80 // 1: Call distance on Point where distance is a direct property
array-functions-prototype-misc.js 138 // Add a numeric property to the prototype of the array class. This
202 // 15.4.4.12 line 24 says the object itself has to have the property...
210 // 15.4.4.12 line 41 says the object itself has to have the property...
224 // 15.4.4.12 line 10 says the object itself has to have the property...
  /external/v8/test/mjsunit/regress/
regress-20070207.js 29 // value of setting a property in the arguments object.
regress-526.js 28 // Test object literals with computed property and getter.
regress-334.js 83 // Unshadowing a prototype property exposes its attributes.
87 // Can't delete prototype property.
  /external/webkit/LayoutTests/fast/js/resources/
const.js 117 const bodyId = (ranConstInitialiser = true, "Const initialiser overwrote existing property");
  /external/webkit/WebCore/bridge/objc/
objc_instance.mm 342 bool ObjcInstance::setValueOfUndefinedField(ExecState* exec, const Identifier& property, JSValue aValue)
359 [targetObject setValue:objcValue.objectValue forUndefinedKey:[NSString stringWithCString:property.ascii() encoding:NSASCIIStringEncoding]];
370 JSValue ObjcInstance::getValueOfUndefinedField(ExecState* exec, const Identifier& property) const
385 id objcValue = [targetObject valueForUndefinedKey:[NSString stringWithCString:property.ascii() encoding:NSASCIIStringEncoding]];
  /external/webkit/WebCore/rendering/
RenderLayerBacking.cpp 237 // Set transform property, if it is not animating. We have to do this here because the transform
    [all...]
  /external/webkit/WebKitTools/Scripts/
prepare-ChangeLog     [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdCreationDialog.java 391 b.setToolTipText("Add a new hardware property");
409 mDeleteHardwareProp.setToolTipText("Delete the selected hardware property");
496 col1.setText("Property");
525 HardwareProperty property = mHardwareMap.get(hardwareName);
526 switch (property.getType()) {
546 HardwareProperty property = mHardwareMap.get(hardwareName);
548 switch (property.getType()) {
563 HardwareProperty property = mHardwareMap.get(hardwareName);
564 switch (property.getType()) {
581 HardwareProperty property = mHardwareMap.get(hardwareName)
    [all...]
  /external/webkit/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 86 var property = properties[i], value = source[property];
92 })(property).wrap(method);
97 this.prototype[property] = value;
107 for (var property in source)
108 destination[property] = source[property];
138 for (var property in object) {
139 var value = Object.toJSON(object[property]);
141 results.push(property.toJSON() + ': ' + value)
    [all...]
  /external/v8/src/
parser.cc 210 ZoneList<ObjectLiteral::Property*>* properties,
221 // Decide if a property should be in the object boilerplate.
222 bool IsBoilerplateProperty(ObjectLiteral::Property* property);
814 return Property::this_property();
867 return new Property(obj, key, pos);
1577 Property* property = assignment->target()->AsProperty(); local
1588 Property* property = assignment->target()->AsProperty(); local
2821 Property* property = expression ? expression->AsProperty() : NULL; local
3494 ObjectLiteral::Property* property = properties->at(i); local
3551 ObjectLiteral::Property* property = local
3594 ObjectLiteral::Property* property = local
4111 ObjectLiteral::Property* property = local
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 69 static String propertyIdToString(AnimatedPropertyID property)
71 switch (property) {
542 if (valueList.property() == AnimatedPropertyWebkitTransform) {
566 switch (valueList.property()) {
581 anim->setName(propertyIdToString(valueList.property()));
605 ASSERT(valueList.property() == AnimatedPropertyWebkitTransform);
763 anim->setName(propertyIdToString(valueList.property()));
  /external/webkit/WebCore/css/
CSSGrammar.y 229 %type <integer> property
533 /* if we come across rules with invalid values like this case: @variables { varname: *; }, just discard the property/value pair */
1237 property ':' maybe_space expr prio {
1300 property: label
    [all...]
  /external/zlib/contrib/delphi/
ZLib.pas 54 property OnProgress: TNotifyEvent read FOnProgress write FOnProgress;
69 The Position property returns the number of uncompressed bytes of
94 property CompressionRate: Single read GetCompressionRate;
95 property OnProgress;
108 The Position property returns the number of bytes of uncompressed data that
123 property OnProgress;
  /hardware/msm7k/libgralloc-qsd8k/
framebuffer.cpp 225 char property[PROPERTY_VALUE_MAX]; local
226 if (property_get("debug.sf.hw", property, NULL) > 0 && atoi(property) == 0)
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
DTM.java 183 * Set a run time property for this DTM instance.
185 * @param property a <code>String</code> value
188 public void setProperty(String property, Object value);
572 * standard input, for example), the value of this property is unknown.
587 * it is not known, the value of this property is null.
605 * either "yes" or "no". This property is derived from the optional
617 * property is derived from the XML declaration optionally present at the
642 * it exists. Otherwise this property has no value.
651 * no external subset or if it has no public identifier, this property
757 * declarations processed] property of the document information ite
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebview.h 89 QVariant inputMethodQuery(Qt::InputMethodQuery property) const;
  /frameworks/base/awt/java/awt/image/
BufferedImage.java 501 // awt.225=Property name is null
507 Object property = properties.get(name); local
508 if (property == null) {
509 property = Image.UndefinedProperty;
511 return property;
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioPolicyInterface.h 79 // set a system property (e.g. camera sound always audible)
80 virtual void setSystemProperty(const char* property, const char* value) = 0;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
StackTracePanel.java 122 public boolean isLabelProperty(Object element, String property) {
  /dalvik/libcore/luni/src/main/java/java/lang/
SecurityManager.java 413 * property.
415 private static boolean checkPackageProperty(final String property,
418 .getSecurityProperty(property));
454 * system property.
457 * the name of the property to access.
460 * key} system property.
  /external/emma/lib/
emma_ant.jar 

Completed in 1436 milliseconds

1 2 3 4 56 7 8 91011>>