Searched refs:obj (Results 1 - 25 of 1203) 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-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/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/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/collada/src/dae/
H A DdaeRefCountedObj.cpp24 void checkedRelease(const daeRefCountedObj* obj) { argument
25 if (obj)
26 obj->release();
29 void checkedRef(const daeRefCountedObj* obj) { argument
30 if (obj)
31 obj->ref();
/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.h45 static void DumpObjectType(FILE* out, Object *obj, bool print_more);
46 static void DumpObjectType(FILE* out, Object *obj) { argument
47 DumpObjectType(out, obj, false);
49 static void DumpObjectType(Object *obj, bool print_more) { argument
50 DumpObjectType(stdout, obj, print_more);
52 static void DumpObjectType(Object *obj) { argument
53 DumpObjectType(stdout, obj, false);
/external/chromium/webkit/glue/
H A Dglue_serialize.cc70 inline void WriteData(const void* data, int length, SerializeObject* obj) { argument
71 obj->pickle.WriteData(static_cast<const char*>(data), length);
74 inline void ReadData(const SerializeObject* obj, const void** data, argument
77 obj->pickle.ReadData(&obj->iter, &tmp, length);
81 inline bool ReadBytes(const SerializeObject* obj, const void** data, argument
84 if (!obj->pickle.ReadBytes(&obj->iter, &tmp, length))
90 inline void WriteInteger(int data, SerializeObject* obj) { argument
91 obj
94 ReadInteger(const SerializeObject* obj) argument
100 WriteInteger64(int64 data, SerializeObject* obj) argument
104 ReadInteger64(const SerializeObject* obj) argument
110 WriteReal(double data, SerializeObject* obj) argument
114 ReadReal(const SerializeObject* obj) argument
124 WriteBoolean(bool data, SerializeObject* obj) argument
128 ReadBoolean(const SerializeObject* obj) argument
134 WriteGURL(const GURL& url, SerializeObject* obj) argument
138 ReadGURL(const SerializeObject* obj) argument
147 WriteString(const WebString& str, SerializeObject* obj) argument
182 ReadString(const SerializeObject* obj) argument
207 WriteStringVector( const WebVector<WebString>& data, SerializeObject* obj) argument
209 WriteInteger(static_cast<int>(data.size()), obj); local
216 ReadStringVector(const SerializeObject* obj) argument
225 WriteFormData(const WebHTTPBody& http_body, SerializeObject* obj) argument
250 ReadFormData(const SerializeObject* obj) argument
296 WriteHistoryItem( const WebHistoryItem& item, SerializeObject* obj) argument
338 WriteInteger(static_cast<int>(children.size()), obj); local
345 ReadHistoryItem( const SerializeObject* obj, bool include_form_data, bool include_scroll_offset) argument
460 SerializeObject obj; local
473 SerializeObject obj; local
[all...]
/external/zlib/contrib/delphi/
H A Dzlibd32.mak21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflat
[all...]

Completed in 403 milliseconds

1234567891011>>