Searched defs:obj (Results 1 - 25 of 1383) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/common/
H A Duhash_us.cpp19 uhash_deleteHashtable(void *obj) { argument
21 delete (Hashtable*) obj;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dproperty-stores.js32 var obj = {x: 0,
38 for (i = 0; i < 5; i++) { obj.f(); }
39 %OptimizeFunctionOnNextCall(obj.f);
40 obj.f();
41 assertEquals(7, obj.x);
43 for (i = 0; i < 5; i++) { obj.g(); }
44 %OptimizeFunctionOnNextCall(obj.g);
45 obj.g();
46 assertEquals(43, obj.x);
48 for (i = 0; i < 5; i++) { obj
[all...]
H A Dto-fast-properties.js33 var obj = {
40 obj.x += i;
42 assertEquals(obj.index() * n, obj.x);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2410.js35 var obj = { thrower: 'local' };
36 assertEquals(['thrower'], Object.getOwnPropertyNames(obj));
H A Dregress-2566.js28 function setProp(obj, prop, val) {
29 obj[prop] = val;
31 var obj = []; variable
32 setProp(obj, 'length', 1);
33 setProp(obj, 0, 5);
34 assertEquals(1, obj.length);
H A Dregress-753.js34 var obj = {a1: {b1: [1,2,3,4], b2: {c1: 1, c2: 2}},a2: 'a2'};
35 assertEquals(JSON.stringify(obj, null, 5.99999), JSON.stringify(obj, null, 5));
H A Dregress-2263.js28 var obj = { length: { valueOf: function(){ throw { type: "length" }}}};
30 assertThrows("Array.prototype.join.call(obj, sep)", undefined, "length");
H A Dregress-2291.js30 var obj = new Object(); class
32 obj == obj; // Populate IC cache with non-strict comparison.
34 StrictCompare(obj); // Set IC in StrictCompare from IC cache.
H A Dregress-2374.js30 var obj = JSON.parse(msg); variable
33 assertEquals(JSON.stringify(obj), JSON.stringify(obj2));
34 assertEquals(JSON.stringify(obj, null, 0), JSON.stringify(obj2));
H A Dregress-318420.js32 var obj = {
43 obj.foo(1, 2, 3, 4);
44 obj.foo(1, 2, 3, 4);
45 %OptimizeFunctionOnNextCall(obj.foo);
46 obj.foo(1, 2, 3, 4);
H A Dregress-728.js28 var obj = { 0: "obj0" };
34 obj[k] = "obj" + k;
39 function get(idx) { return obj[idx]; }
42 assertEquals(get(h), "obj" + h);
H A Dregress-gvn-ftt.js22 var obj = {o: a1};
24 f(obj, a1);
25 f(obj, a1);
27 assertEquals(a2.id, f(obj, a2).id);
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Diteration.js48 obj = new Object();
49 obj.a = 11;
50 obj.b = 22;
53 for ( prop in obj )
54 properties += (prop + "=" + obj[prop] + ";");
59 obj.y = 33;
60 obj.x = 44;
62 for ( prop in obj )
45 obj = new Object(); class
/external/icu/icu4c/source/common/
H A Duhash_us.cpp19 uhash_deleteHashtable(void *obj) { argument
21 delete (Hashtable*) obj;
/external/chromium_org/v8/test/mjsunit/
H A Dobject-get-own-property-names.js31 var obj = { a: 1, b: 2};
32 var propertyNames = Object.getOwnPropertyNames(obj);
38 var obj = { a: function(){}, b: function(){} };
39 var propertyNames = Object.getOwnPropertyNames(obj);
46 var obj = { a: 1, b: 2, c: 3 };
47 delete obj.b;
48 var propertyNames = Object.getOwnPropertyNames(obj)
65 var obj = { foo: "foo" };
66 obj.__proto__ = { bar: "bar" };
67 propertyNames = Object.getOwnPropertyNames(obj);
[all...]
H A Ddelete-non-configurable.js64 var obj = new Object(); class
66 obj[INDEX] = TIPLI;
67 Object.defineProperty(obj, INDEX, { configurable: false });
69 assertFalse(delete obj[INDEX]);
70 assertThrows("'use strict'; delete obj[INDEX];", TypeError);
71 assertFalse(delete obj[INDEX.toString()]);
72 assertThrows("'use strict'; delete obj[INDEX.toString()];", TypeError);
73 assertEquals(TIPLI, obj[INDEX]);
H A Dobject-freeze.js58 var obj = { x: 42, z: 'foobar' };
59 var desc = Object.getOwnPropertyDescriptor(obj, 'x');
64 desc = Object.getOwnPropertyDescriptor(obj, 'z');
69 assertTrue(Object.isExtensible(obj));
70 assertFalse(Object.isFrozen(obj));
72 Object.freeze(obj);
75 assertFalse(Object.isExtensible(obj));
76 assertTrue(Object.isFrozen(obj));
78 obj.foo = 42;
79 assertEquals(obj
[all...]
H A Dfunction-bind.js60 var obj = {x: 42, y: 43};
70 f = f_bound_this.bind(obj);
74 f = f_bound_this.bind(obj, 2);
H A Darray-slice.js87 obj = { toString: function() { throw 'Exception'; } };
90 assertEquals(7, array.slice(0, 7, obj, null, undefined).length);
98 assertEquals(7, array.slice(0, obj).length);
/external/chromium_org/v8/test/webkit/
H A Darray-tostring-and-join.js31 var obj = {};
32 obj.__proto__.toString = function() { return "*" + arr + "*"; }
34 arr[3] = obj;
/external/libnl/include/netlink/
H A Dobject.h33 extern struct nl_object * nl_object_clone(struct nl_object *obj);
59 static inline void * nl_object_priv(struct nl_object *obj) argument
61 return obj;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dicusvtst.h51 void msgstr(const UnicodeString& message, UObject* obj, UBool err = TRUE);
52 void logstr(const UnicodeString& message, UObject* obj) { argument
53 msgstr(message, obj, FALSE);
/external/chromium_org/third_party/webrtc/tools/rtcbot/bot/
H A Dapi.js26 // redefine a non-native method in a target "obj" from "src" that applies a list
28 function expose(obj, src, method, casts) { function
29 obj[method] = function () {
/external/deqp/framework/platform/android/
H A DtcuAndroidMain.cpp42 tcu::Android::TestActivity* obj = new tcu::Android::TestActivity(activity); local
43 DE_UNREF(obj);
/external/icu/icu4c/source/test/intltest/
H A Dicusvtst.h51 void msgstr(const UnicodeString& message, UObject* obj, UBool err = TRUE);
52 void logstr(const UnicodeString& message, UObject* obj) { argument
53 msgstr(message, obj, FALSE);

Completed in 3924 milliseconds

1234567891011>>