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

1234567891011>>

/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]);
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-842.js36 var obj = { name: "n1" };
39 obj = Object.freeze(obj);
H A Dregress-619.js31 var obj = {};
32 obj[1] = 42;
33 assertEquals(42, obj[1]);
34 Object.defineProperty(obj, '1', {value:10, writable:false});
35 assertEquals(10, obj[1]);
37 // We should not be able to override obj[1].
38 obj[1] = 5;
39 assertEquals(10, obj[1]);
43 obj[i] = 42;
47 Object.defineProperty(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/webkit/Source/WebKit/android/jni/
H A DWebCoreRefObject.h33 static inline WebCoreRefObject* Retain(WebCoreRefObject* obj) argument
35 if (obj)
36 obj->ref();
37 return obj;
40 static inline void Release(WebCoreRefObject* obj) argument
42 if (obj)
43 obj->unref();
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/
H A Dregress-79129-001.js47 obj={};
48 obj.a = obj.b = obj.c = 1;
49 delete obj.a;
50 delete obj.b;
51 delete obj.c;
52 obj.d = obj.e = 1;
53 obj
[all...]
H A Dshell.js24 * Suppose obj is an instance of a native type, e.g. Number.
25 * Then obj.toString() invokes Number.prototype.toString().
28 * The difference is this: suppose obj = new Number(7).
33 * The getJSClass() function returns 'Number', the [[Class]] property of obj.
43 function getJSType(obj)
45 if (isObject(obj))
46 return findType(obj);
52 function getJSClass(obj)
54 if (isObject(obj))
55 return findClass(findType(obj));
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A Dregress-104584.js27 * on the second call to obj.toString() or print(obj) below -
39 function F(obj)
41 if(!obj)
42 obj = {};
43 obj.toString();
45 obj.toString();
49 function G(obj)
51 if(!obj)
52 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/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...]
/external/clang/test/Analysis/
H A Dpointer-to-member.cpp14 A obj; local
16 obj.m_ptr = &obj;
17 clang_analyzer_eval(obj.m_ptr); // expected-warning{{TRUE}}
19 clang_analyzer_eval(obj); // expected-warning{{TRUE}}
21 obj.m_ptr = 0;
22 clang_analyzer_eval(obj.m_ptr); // expected-warning{{FALSE}}
24 clang_analyzer_eval(obj); // expected-warning{{FALSE}}
32 A obj; local
33 obj
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dcommon.h34 #define LOG_J(sev, obj) LOG(sev) << "Jingle:" << obj->ToString() << ": "
35 #define LOG_JV(sev, obj) LOG_V(sev) << "Jingle:" << obj->ToString() << ": "
/external/dropbear/libtomcrypt/
H A Dparsenames.pl11 foreach my $obj (@a) {
12 $len = $len + length($obj);
13 $obj =~ s/\*/\$/;
16 $len = length($obj);
18 print "$obj ";
/external/openssl/crypto/des/
H A Dmakefile.bc13 .c.obj:
16 .obj.exe:
17 $(CC) $(LFLAGS) -e$*.exe $*.obj libdes.lib
21 # "make clean": use a directory containing only libdes .exe and .obj files...
24 del *.obj
28 OBJS= cbc_cksm.obj cbc_enc.obj ecb_enc.obj pcbc_enc.obj \
29 qud_cksm.obj rand_ke
[all...]
/external/qemu/
H A Dqobject.h66 #define QOBJECT(obj) (&(obj)->base)
69 #define QINCREF(obj) \
70 qobject_incref(QOBJECT(obj))
73 #define QDECREF(obj) \
74 qobject_decref(QOBJECT(obj))
77 #define QOBJECT_INIT(obj, qtype_type) \
78 obj->base.refcnt = 1; \
79 obj->base.type = qtype_type
84 static inline void qobject_incref(QObject *obj) argument
94 qobject_decref(QObject *obj) argument
106 qobject_type(const QObject *obj) argument
[all...]
/external/v8/src/
H A Dinspector.h44 static void DumpObjectType(FILE* out, Object* obj, bool print_more);
45 static void DumpObjectType(FILE* out, Object* obj) { argument
46 DumpObjectType(out, obj, false);
48 static void DumpObjectType(Object* obj, bool print_more) { argument
49 DumpObjectType(stdout, obj, print_more);
51 static void DumpObjectType(Object* obj) { argument
52 DumpObjectType(stdout, obj, false);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DAttCertIssuer.java15 ASN1Encodable obj; field in class:AttCertIssuer
19 Object obj)
21 if (obj == null || obj instanceof AttCertIssuer)
23 return (AttCertIssuer)obj;
25 else if (obj instanceof V2Form)
27 return new AttCertIssuer(V2Form.getInstance(obj));
29 else if (obj instanceof GeneralNames)
31 return new AttCertIssuer((GeneralNames)obj);
33 else if (obj instanceo
18 getInstance( Object obj) argument
45 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]

Completed in 539 milliseconds

1234567891011>>