Searched refs:obj (Results 1 - 25 of 2363) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1203459.js29 var obj = { 0.2 : 'a' }
H A Dregress-1103.js31 var obj = this;
32 obj = Object.freeze(obj);
H A Dregress-1120.js31 var obj = this;
32 Object.freeze(obj);
33 assertFalse(Object.isExtensible(obj));
H A Dregress-612.js32 obj = {}
35 obj.__defineGetter__('foobar', function() { return 42; })
38 obj.a = 1
39 obj.b = 2;
40 obj.c = 3;
44 obj.__defineGetter__('foobar', function() { return 42; })
H A Dregress-712.js33 var obj = {};
34 Object.defineProperty(obj, "x", { get: function() { return "42"; },
36 assertEquals(obj.x, "42");
37 Object.defineProperty(obj, 'x', {});
38 assertEquals(obj.x, "42");
H A Dregress-crbug-72736.js33 var obj = {};
34 Object.defineProperty(obj, 'foo', { value: 10, configurable: true });
35 assertEquals(obj.foo, 10);
36 Object.defineProperty(obj, 'foo', { value: 20, configurable: true });
37 assertEquals(obj.foo, 20);
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-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-1563.js30 obj = new Uint8ClampedArray(10);
34 function set_pixel(obj, arg) {
35 obj[0] = arg;
38 set_pixel(obj, 1.5);
39 set_pixel(obj, NaN);
41 set_pixel(obj, undefined);
42 set_pixel(obj, undefined);
44 assertEquals(0, obj[0]);
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));
/external/v8/test/mjsunit/regress/
H A Dregress-1203459.js29 var obj = { 0.2 : 'a' }
H A Dregress-1103.js31 var obj = this;
32 obj = Object.freeze(obj);
H A Dregress-1120.js31 var obj = this;
32 Object.freeze(obj);
33 assertFalse(Object.isExtensible(obj));
H A Dregress-612.js32 obj = {}
35 obj.__defineGetter__('foobar', function() { return 42; })
38 obj.a = 1
39 obj.b = 2;
40 obj.c = 3;
44 obj.__defineGetter__('foobar', function() { return 42; })
H A Dregress-712.js33 var obj = {};
34 Object.defineProperty(obj, "x", { get: function() { return "42"; },
36 assertEquals(obj.x, "42");
37 Object.defineProperty(obj, 'x', {});
38 assertEquals(obj.x, "42");
H A Dregress-crbug-72736.js33 var obj = {};
34 Object.defineProperty(obj, 'foo', { value: 10, configurable: true });
35 assertEquals(obj.foo, 10);
36 Object.defineProperty(obj, 'foo', { value: 20, configurable: true });
37 assertEquals(obj.foo, 20);
H A Dregress-1563.js30 obj = new PixelArray(10);
34 function set_pixel(obj, arg) {
35 obj[0] = arg;
38 set_pixel(obj, 1.5);
39 set_pixel(obj, NaN);
41 set_pixel(obj, undefined);
42 set_pixel(obj, undefined);
44 assertEquals(0, obj[0]);
/external/chromium_org/v8/test/mjsunit/
H A Dfast-non-keyed.js33 function AddProps(obj) {
35 obj["x" + i] = 0;
40 function AddPropsNonKeyed(obj) {
41 obj.x0 = 0;
42 obj.x1 = 0;
43 obj.x2 = 0;
44 obj.x3 = 0;
45 obj.x4 = 0;
46 obj.x5 = 0;
47 obj
[all...]
/external/dropbear/libtommath/
H A Dmakefile.bcc10 OBJECTS=bncore.obj bn_mp_init.obj bn_mp_clear.obj bn_mp_exch.obj bn_mp_grow.obj bn_mp_shrink.obj \
11 bn_mp_clamp.obj bn_mp_zero.obj bn_mp_set.obj bn_mp_set_int.obj bn_mp_init_siz
[all...]
/external/icu4c/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...]
/external/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...]
/external/qemu/android/utils/
H A Dvector.h23 #define AVECTOR_SIZE(obj,name) \
24 (obj)->num_##name
26 #define AVECTOR_INIT(obj,name) \
28 (obj)->name = NULL; \
29 (obj)->num_##name = 0; \
30 (obj)->max_##name = 0; \
33 #define AVECTOR_INIT_ALLOC(obj,name,count) \
35 AARRAY_NEW0( (obj)->name, (count) ); \
36 (obj)->num_##name = 0; \
37 (obj)
[all...]
/external/lzma/C/Util/7z/
H A Dmakefile7 $O\7zAlloc.obj \
8 $O\7zBuf.obj \
9 $O\7zBuf2.obj \
10 $O\7zCrc.obj \
11 $O\7zCrcOpt.obj \
12 $O\7zFile.obj \
13 $O\7zDec.obj \
14 $O\7zIn.obj \
15 $O\7zStream.obj \
16 $O\Bcj2.obj \
[all...]
/external/zlib/src/watcom/
H A Dwatcom_l.mak12 OBJS = adler32.obj compress.obj crc32.obj deflate.obj &
13 gzclose.obj gzlib.obj gzread.obj gzwrite.obj &
14 infback.obj inffast.obj inflat
[all...]

Completed in 713 milliseconds

1234567891011>>