Searched refs:object (Results 1 - 25 of 1811) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/
H A Darray-push6.js12 var object = { x : 8, length: 3 };
13 object[18] = 5;
14 object.__proto__ = Array.prototype;
15 push_wrapper(object, 1);
16 push_wrapper(object, 1);
17 assertEquals(5, object.length);
19 push_wrapper(object, 1);
20 push_wrapper(object, 1);
21 assertEquals(8, object.x);
22 assertEquals(7, object
[all...]
H A Dproperty-object-key.js29 var object = { baz: 42 };
31 assertEquals(42, object[key]);
32 object[key] = 87;
33 assertEquals(87, object[key]);
34 object[key]++;
35 assertEquals(88, object[key]);
/external/flac/libFLAC/include/private/
H A Dmetadata.h42 void FLAC__metadata_object_delete_data(FLAC__StreamMetadata *object);
44 void FLAC__metadata_object_cuesheet_track_delete_data(FLAC__StreamMetadata_CueSheet_Track *object);
/external/harfbuzz_ng/src/
H A Dhb-shaper-impl-private.hh39 #define HB_SHAPER_DATA_GET(object) HB_SHAPER_DATA (HB_SHAPER, object)
H A Dhb-shaper-private.hh68 #define HB_SHAPER_DATA_TYPE(shaper, object) struct hb_##shaper##_shaper_##object##_data_t
69 #define HB_SHAPER_DATA_INSTANCE(shaper, object, instance) (* (HB_SHAPER_DATA_TYPE(shaper, object) **) &(instance)->shaper_data.shaper)
70 #define HB_SHAPER_DATA(shaper, object) HB_SHAPER_DATA_INSTANCE (shaper, object, object)
71 #define HB_SHAPER_DATA_CREATE_FUNC(shaper, object) _hb_##shaper##_shaper_##object##_data_create
72 #define HB_SHAPER_DATA_DESTROY_FUNC(shaper, object) _hb
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-105.js38 var object = {};
39 object.valueOf = custom_valueOf;
40 object.toString = custom_toString;
42 assertEquals(2, Number(object));
43 assertEquals('I', String(object)[0]);
H A Dregress-334.js39 var object = {__proto__:{}};
40 %AddNamedProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE);
41 %AddNamedProperty(object, "bar", func1, DONT_ENUM | READ_ONLY);
42 %AddNamedProperty(object, "baz", func1, DONT_DELETE | READ_ONLY);
43 %AddNamedProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE);
44 object.bif = func2;
56 assertArrayEquals(["baz", "bif"], enumerable(object), "enum0");
57 assertFalse(delete object.foo, "delete foo");
58 assertFalse(delete object.baz, "delete baz");
59 assertEquals(func1, object
[all...]
H A Dregress-1207.js30 var object = { };
32 var f0 = (object instanceof encodeURI)('#2: var x = 1; x <= 1 === true'), f1 = 1;
H A Dregress-2398.js32 var object = { get toString() { observed = true; } };
33 Object.defineProperty(object, "ro", { value: 1 });
36 object.ro = 2; // TypeError caused by trying to write to read-only.
38 e.message; // Forces formatting of the message object.
H A Dregress-78270.js30 var object = { };
32 var f0 = (object instanceof encodeURI)('foo');
/external/v8/test/mjsunit/compiler/
H A Dproperty-calls.js33 var object = { };
34 object.g = g;
35 for (var i = 0; i < 5; i++) f(object);
37 f(object);
38 assertEquals(42, f(object));
40 object = { g: function() { return 87; } };
41 assertEquals(87, f(object));
H A Dinline-closures.js40 var object = {};
41 object.f = mkClosure('g');
42 object.g = mkClosure('h');
43 object.h = mkClosure('x');
45 assertSame(1, object.f({value:1}));
46 assertSame(2, object.f({value:2}));
47 %OptimizeFunctionOnNextCall(object.f);
48 assertSame(3, object.f({value:3}));
49 assertSame(undefined, object.f({}));
H A Ddeopt-args.js38 var object = { };
39 object.f = f;
41 assertEquals(42, g(object));
44 g(object);
46 object.f = function(a,b,c) { return 87; };
47 assertEquals(87, g(object));
/external/mesa3d/src/glsl/glcpp/tests/
H A D101-macros-used-twice.c1 #define object 1 macro
4 #if object
7 #if object
/external/v8/test/webkit/
H A Dfor-in-var-scope.js35 var object = new Object;
36 object.propName = "propValue";
37 for (var i in object) { j = i; }
/external/chromium-trace/trace-viewer/tracing/tracing/ui/tracks/
H A Dobject_instance_track.css6 .object-instance-track {
/external/nanopb-c/generator/google/protobuf/internal/
H A Dmessage_listener.py40 class MessageListener(object):
73 class NullMessageListener(object):
/external/protobuf/python/google/protobuf/internal/
H A Dmessage_listener.py40 class MessageListener(object):
73 class NullMessageListener(object):
/external/elfutils/src/libebl/
H A Deblobjecttypename.c1 /* Return object file type name.
39 ebl_object_type_name (ebl, object, buf, len)
41 int object;
47 res = ebl != NULL ? ebl->object_type_name (object, buf, len) : NULL;
51 if (object >= ET_LOOS && object <= ET_HIOS)
52 snprintf (buf, len, "LOOS+%x", object - ET_LOOS);
54 else if (object >= ET_LOPROC && object <= ET_HIPROC)
55 snprintf (buf, len, "LOPROC+%x", object
[all...]
/external/mockito/src/org/mockito/internal/debugging/
H A DLocalized.java12 private final T object; field in class:Localized
15 public Localized(T object) { argument
16 this.object = object;
21 return object;
/external/v8/test/mjsunit/es6/
H A Dunscopables.js13 function restore(object, oldProto) {
14 delete object[Symbol.unscopables];
15 delete object.x;
16 delete object.x_;
17 delete object.y;
18 delete object.z;
19 Object.setPrototypeOf(object, oldProto);
61 var object = getObject(i);
62 var oldObjectProto = Object.getPrototypeOf(object);
63 f(object);
[all...]
/external/v8/test/mjsunit/harmony/
H A Dobject-literals-method.js5 // Flags: --harmony-object-literals --allow-natives-syntax
9 var object = {
14 assertEquals(42, object.method());
19 var object = {
21 assertEquals(object, this);
24 object.method();
29 var object = {
35 var desc = Object.getOwnPropertyDescriptor(object, 'method');
46 var object = {
50 assertEquals(Function.prototype, Object.getPrototypeOf(object
[all...]
/external/google-breakpad/src/tools/solaris/dump_syms/testdata/
H A Ddump_syms_regtest.cc57 google_breakpad::C object; local
58 object.set_member(google_breakpad::i());
59 object.f();
60 int value = object.g();
61 char *nothing = object.h(object);
/external/google-breakpad/src/tools/windows/dump_syms/testdata/
H A Ddump_syms_regtest.cc58 google_breakpad::C object; local
59 object.set_member(google_breakpad::i());
60 object.f();
61 int value = object.g();
62 char *nothing = object.h(object);
/external/hamcrest/src/org/hamcrest/core/
H A DIsSame.java12 * Is the value the same object as another value?
15 private final T object; field in class:IsSame
17 public IsSame(T object) { argument
18 this.object = object;
22 return arg == object;
26 description.appendText("same(") .appendValue(object) .appendText(")");
32 * @param object The predicate evaluates to true only when the argument is
33 * this object.
36 public static <T> Matcher<T> sameInstance(T object) { argument
[all...]

Completed in 2369 milliseconds

1234567891011>>