Searched refs:object (Results 26 - 50 of 3537) sorted by relevance

1234567891011>>

/external/v8/src/heap/
H A Dscavenger-inl.h13 void Scavenger::ScavengeObject(HeapObject** p, HeapObject* object) { argument
14 DCHECK(object->GetIsolate()->heap()->InFromSpace(object));
17 // object to record the forwarding pointer. A forwarding pointer can
20 MapWord first_word = object->map_word();
22 // If the first word is a forwarding address, the object has already been
26 DCHECK(object->GetIsolate()->heap()->InFromSpace(*p));
31 object->GetHeap()->UpdateAllocationSite(
32 object, object
44 Object* object = *p; local
[all...]
/external/v8/test/mjsunit/es6/
H A Dcomputed-property-names.js13 var object = {
19 assertEquals('A', object.a);
20 assertEquals('B', object.b);
21 assertEquals('C', object.c);
22 assertEquals('D', object.d);
23 assertArrayEquals(['a', 'b', 'c', 'd'], Object.keys(object));
28 var object = {
34 assertEquals('A', object.a);
35 assertEquals('B', object[1]);
36 assertEquals('C', object
[all...]
H A Dcomputed-property-names-super.js19 var object = {
27 assertSame(object, object.a[%HomeObjectSymbol()]);
29 assertEquals('a proto m', object.a());
30 assertEquals('b proto m', object.b());
31 assertEquals('0 proto m', object[0]());
32 assertEquals('1 proto m', object[1]());
42 var object = {
49 assertEquals('a proto m', object.a);
50 assertEquals('b proto m', object
[all...]
H A Dobject-literals-property-shorthand.js8 var object = {x};
9 assertEquals(1, object.x);
15 var object = {get, set};
16 assertEquals(1, object.get);
17 assertEquals(2, object.set);
23 var object = {x};
24 var descr = Object.getOwnPropertyDescriptor(object, 'x');
42 var object = {let};
43 assertEquals(1, object.let);
49 var object
[all...]
/external/elfutils/libebl/
H A Deblobjecttypename.c1 /* Return object file type name.
39 ebl_object_type_name (Ebl *ebl, int object, char *buf, size_t len) argument
43 res = ebl != NULL ? ebl->object_type_name (object, buf, len) : NULL;
47 if (object >= ET_LOOS && object <= ET_HIOS)
48 snprintf (buf, len, "LOOS+%x", object - ET_LOOS);
50 else if (object >= ET_LOPROC && object <= ET_HIPROC)
51 snprintf (buf, len, "LOPROC+%x", object - ET_LOPROC);
53 snprintf (buf, len, "%s: %d", gettext ("<unknown>"), 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/harfbuzz_ng/src/
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/harmony/
H A Dproxies-get-prototype-of.js44 var object = {};
47 object.__proto__ = proto;
49 assertTrue(proto.isPrototypeOf(object));
50 assertTrue(Object.prototype.isPrototypeOf.call(proto, object));
53 assertTrue(proto.isPrototypeOf(object));
54 assertTrue(Object.prototype.isPrototypeOf.call(proto, object));
55 assertTrue(Object.prototype.isPrototypeOf(object));
56 assertFalse(Object.prototype.isPrototypeOf.call(Array.prototype, object));
57 assertFalse(Array.prototype.isPrototypeOf(object));
59 handler.getPrototypeOf = function () { return object };
[all...]
/external/v8/src/
H A Dcontext-measure.cc28 bool ContextMeasure::IsShared(HeapObject* object) { argument
29 if (object->IsScript()) return true;
30 if (object->IsSharedFunctionInfo()) return true;
31 if (object->IsScopeInfo()) return true;
32 if (object->IsCode() && !Code::cast(object)->is_optimized_code()) return true;
33 if (object->IsExecutableAccessorInfo()) return true;
34 if (object->IsWeakCell()) return true;
39 void ContextMeasure::MeasureObject(HeapObject* object) { argument
40 if (back_reference_map_.Lookup(object)
61 MeasureAndRecurse(HeapObject* object) argument
[all...]
/external/v8/test/mjsunit/regress/
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-583260.js9 function __f_5(object) {
10 with (object) { return delete __v_3; }
H A Dregress-78270.js30 var object = { };
32 var f0 = (object instanceof encodeURI)('foo');
H A Dregress-crbug-554831.js9 function f(object) { return object[key]; };
/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/dhcpcd-6.8.2/dbus/test/
H A Dintrospection7 object = dbus.Interface(bus.get_object("org.chromium.dhcpcd", '/'), variable
9 print object.Introspect()
/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...]
/external/testng/src/main/java/org/testng/mustache/
H A DValue.java6 public Value(Object object) { argument
7 m_object = object;
/external/autotest/client/cros/cellular/mbim_compliance/
H A Dentity.py5 class Entity(object):
17 @param device_context: An object that wraps information about the device
/external/autotest/client/cros/faft/
H A Dconfig.py6 class Config(object):
/external/autotest/server/cros/faft/config/
H A Dalex.py8 class Values(object):
H A Djecht.py8 class Values(object):
H A Dmonroe.py8 class Values(object):
H A Dpanther.py8 class Values(object):
H A Dpi.py8 class Values(object):

Completed in 610 milliseconds

1234567891011>>