HomeSort by relevance Sort by last modified time
    Searched refs:propertyIsEnumerable (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-156354.js 38 * SUMMARY: Testing propertyIsEnumerable() on non-existent property
45 var summary = 'Testing propertyIsEnumerable() on non-existent property';
55 actual = this.propertyIsEnumerable('XYZ');
60 actual = this.propertyIsEnumerable('');
65 actual = this.propertyIsEnumerable(undefined);
70 actual = this.propertyIsEnumerable(null);
75 actual = this.propertyIsEnumerable('\u02b1');
83 actual = obj.propertyIsEnumerable('prop1');
88 actual = obj.propertyIsEnumerable('prop2');
94 eval("actual = obj.propertyIsEnumerable('prop2')")
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1692.js 28 // Test that Object.prototype.propertyIsEnumerable handles array indices
53 assertFalse(o.propertyIsEnumerable("a"));
54 assertFalse(o.propertyIsEnumerable("b"));
55 assertFalse(o.propertyIsEnumerable("1"));
56 assertFalse(o.propertyIsEnumerable("2"));
59 assertTrue(o.propertyIsEnumerable("c"));
60 assertFalse(o.propertyIsEnumerable("d"));
61 assertTrue(o.propertyIsEnumerable("3"));
62 assertFalse(o.propertyIsEnumerable("4"));
65 assertFalse(o.propertyIsEnumerable("f"))
    [all...]
regress-874178.js 32 assertTrue(foo.propertyIsEnumerable('bar'));
  /external/webkit/Source/JavaScriptCore/runtime/
CommonIdentifiers.h 60 macro(propertyIsEnumerable) \
ObjectPrototype.cpp 51 putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructure, 1, exec->propertyNames().propertyIsEnumerable, objectProtoFuncPropertyIsEnumerable), DontEnum);
149 return JSValue::encode(jsBoolean(thisValue.toThisObject(exec)->propertyIsEnumerable(exec, Identifier(exec, exec->argument(0).toString(exec)))));
JSObject.cpp 420 bool JSObject::propertyIsEnumerable(ExecState* exec, const Identifier& propertyName) const
JSObject.h 119 bool propertyIsEnumerable(ExecState*, const Identifier& propertyName) const;
    [all...]
  /external/v8/test/mjsunit/
function-names.js 97 "propertyIsEnumerable", "__defineGetter__", "__lookupGetter__",
undeletable-functions.js 84 "isPrototypeOf", "propertyIsEnumerable", "__defineGetter__",
function-call.js 34 Object.prototype.propertyIsEnumerable,
  /external/v8/test/mjsunit/harmony/
proxies.js     [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp 365 if (object->propertyIsEnumerable(exec, *it)) {
    [all...]
  /external/v8/src/
v8natives.js     [all...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
code-load.js 196 opertyIsEnumerable!=\"undefined\"&&!a.propertyIsEnumerable(\"splice\"))return\"\
198 pertyIsEnumerable!=\"undefined\"&&!a.propertyIsEnumerable(\"call\"))return\"fun\
    [all...]

Completed in 397 milliseconds