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

1 2

  /external/v8/test/mjsunit/regress/
regress-192.js 28 // Test that exceptions are correctly propagated when creating object
33 Object.prototype.__defineGetter__("x", function() {});
35 // Creating this object literal will throw an exception because we are
regress-1254366.js 30 Object.prototype.findOrStore = function() {
35 var a = new Object();
regress-191.js 34 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
38 assertFalse(setterCalled, "accessor setter call on context object");
regress-crbug-3184.js 28 Object.extend = function (dest, source) {
33 Object.extend ( Function.prototype,
70 Object.extend( Array.prototype,
  /external/v8/test/mjsunit/
try-catch-extension-object.js 30 // Object prototype have no effect.
33 Object.prototype.__defineSetter__("x", function() { setterCalled = true; });
arguments-opt.js 97 // Object access.
127 Object.prototype[5] = 42;
129 Object.prototype[-5] = 87;
obj-construct.js 30 function Object() {
  /dalvik/dx/tests/076-dex-synch-and-stack/
Blort.java 20 new Object();
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 42 // Add a setter for x to Object.prototype and make sure it gets
45 Object.prototype.__defineSetter__('x', function(value) { result_x = value; });
53 var proto = new Object();
69 var o1 = new Object();
70 var o2 = new Object();
74 Object.prototype.__defineSetter__('z', function(value) { result_z = value; });
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifier.java 25 Class<?> applicableTo() default Object.class;
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-004.js 43 // SECTION1: define getter/setter directly on an object (not its prototype)
44 obj = new Object();
74 // SECTION2: define getter/setter in Object.prototype
75 Object.prototype.nameSETS = 0;
76 Object.prototype.nameGETS = 0;
77 Object.prototype.__defineSetter__('name', function(newValue) {this._name=newValue; this.nameSETS++;});
78 Object.prototype.__defineGetter__('name', function() {this.nameGETS++; return this._name;});
80 obj = new Object();
getset-005.js 52 // SECTION1: define getter/setter directly on an object (not its prototype)
53 obj = new Object();
83 // SECTION2: define getter/setter in Object.prototype
84 Object.prototype.nameSETS = 0;
85 Object.prototype.nameGETS = 0;
86 Object.prototype.__defineSetter__(cnName, cnNameSetter);
87 Object.prototype.__defineGetter__(cnName, cnNameGetter);
89 obj = new Object();
getset-003.js 43 // SECTION1: define getter/setter directly on an object (not its prototype)
44 obj = new Object();
74 // SECTION2: define getter/setter in Object.prototype
75 Object.prototype.nameSETS = 0;
76 Object.prototype.nameGETS = 0;
77 Object.prototype.name setter = function(newValue) {this._name=newValue; this.nameSETS++;}
78 Object.prototype.name getter = function() {this.nameGETS++; return this._name;}
80 obj = new Object();
getset-006.js 57 // SECTION1: define getter/setter directly on an object (not its prototype)
58 obj = new Object();
83 // SECTION2: define getter/setter in Object.prototype
84 Object.prototype.nameSETS = 0;
85 Object.prototype.nameGETS = 0;
86 Object.prototype.__defineSetter__(cnName, cnNameSetter);
87 Object.prototype.__defineGetter__(cnName, cnNameGetter);
89 obj = new Object();
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-tagcloud.js 38 if (!Object.prototype.toJSONString) {
49 case 'object':
99 Object.prototype.toJSONString = function (w) {
111 case 'object':
135 Object.prototype.hasOwnProperty.apply(this, [k])) {
138 case 'object':
182 if (v && typeof v === 'object') {
184 if (Object.prototype.hasOwnProperty.apply(v, [i])) {
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-tagcloud.js 38 if (!Object.prototype.toJSONString) {
49 case 'object':
99 Object.prototype.toJSONString = function (w) {
111 case 'object':
135 Object.prototype.hasOwnProperty.apply(this, [k])) {
138 case 'object':
182 if (v && typeof v === 'object') {
184 if (Object.prototype.hasOwnProperty.apply(v, [i])) {
    [all...]
  /dalvik/dx/tests/089-dex-define-object/
Object.java 19 public class Object {
20 public Object() {
24 public boolean equals(Object o) {
32 public final native Class<? extends Object> getClass();
  /libcore/luni/src/main/java/java/lang/
Object.java 43 * &#x0040;Override public boolean equals(Object o) {
50 * // Return false if the other object has the wrong type.
131 public class Object {
133 * Constructs a new instance of {@code Object}.
135 public Object() {
139 * Creates and returns a copy of this {@code Object}. The default
142 * object references) from this instance to the new instance. A "deep" copy,
148 * @return a copy of this object.
150 * if this object's class does not implement the {@code
153 protected Object clone() throws CloneNotSupportedException
    [all...]
  /external/webkit/WebCore/inspector/front-end/
utilities.js 29 Object.proxyType = function(objectProxy)
35 if (type !== "object" && type !== "function")
41 Object.properties = function(obj)
49 Object.sortedProperties = function(obj, sortFunc)
51 return Object.properties(obj).sort(sortFunc);
753 if (typeof substitution == "object" && Object.proxyType(substitution) === "number")
761 if (typeof substitution == "object" && Object.proxyType(substitution) === "number")
771 if (typeof substitution == "object" && Object.proxyType(substitution) !== "null"
    [all...]
  /external/giflib/
gifalloc.c 41 * Color map object functions
52 ColorMapObject *Object;
60 Object = (ColorMapObject *)malloc(sizeof(ColorMapObject));
61 if (Object == (ColorMapObject *) NULL) {
65 Object->Colors = (GifColorType *)calloc(ColorCount, sizeof(GifColorType));
66 if (Object->Colors == (GifColorType *) NULL) {
70 Object->ColorCount = ColorCount;
71 Object->BitsPerPixel = BitSize(ColorCount);
74 memcpy((char *)Object->Colors,
78 return (Object);
    [all...]
  /external/v8/benchmarks/
deltablue.js 49 Object.prototype.inheritsFrom = function (shuper) {
332 var Direction = new Object();
  /external/webkit/SunSpider/tests/v8-v4/
v8-deltablue.js 43 Object.prototype.inherits = function (shuper) {
326 var Direction = new Object();
  /external/v8/test/cctest/
test-alloc.cc 38 static Object* AllocateAfterFailures() {
63 Object* object = Heap::AllocateJSObject(*Top::object_function()); local
64 CHECK(!Heap::CopyJSObject(JSObject::cast(object))->IsFailure());
74 // Large object space.
99 static Handle<Object> Test() {
100 CALL_HEAP_FUNCTION(AllocateAfterFailures(), Object);
108 Handle<Object> o = Test();
114 static Object* TestAccessorGet(Object* object, void*)
    [all...]
  /external/v8/src/
v8natives.js 31 // const $Object = global.Object;
49 function InstallFunctions(object, attributes, functions) {
51 %OptimizeObjectForAddingMultipleProperties(object, functions.length >> 1);
57 %SetProperty(object, key, f, attributes);
59 %ToFastProperties(object);
63 // lies above the current object/prototype. This lets you override
66 function InstallFunctionsOnHiddenPrototype(object, attributes, functions) {
67 var hidden_prototype = new $Object();
68 %SetHiddenPrototype(object, hidden_prototype)
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/BusAccess/Shm_Common/
whalTrace.h 92 char Object[TRACER_MAX_OBJ_LEN];

Completed in 404 milliseconds

1 2