Home
last modified time | relevance | path

Searched refs:descs (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/
Dkeys.cc251 Handle<DescriptorArray> descs = in GetFastEnumPropertyKeys() local
267 if (descs->HasEnumCache()) { in GetFastEnumPropertyKeys()
268 Handle<FixedArray> keys(descs->GetEnumCache(), isolate); in GetFastEnumPropertyKeys()
280 if (descs->IsEmpty()) { in GetFastEnumPropertyKeys()
297 PropertyDetails details = descs->GetDetails(i); in GetFastEnumPropertyKeys()
299 Object* key = descs->GetKey(i); in GetFastEnumPropertyKeys()
315 DescriptorArray::SetEnumCache(descs, isolate, storage, indices); in GetFastEnumPropertyKeys()
495 Handle<DescriptorArray> descs, in CollectOwnPropertyNamesInternal() argument
499 PropertyDetails details = descs->GetDetails(i); in CollectOwnPropertyNamesInternal()
503 Object* accessors = descs->GetValue(i); in CollectOwnPropertyNamesInternal()
[all …]
Dproperty-descriptor.cc58 Handle<DescriptorArray> descs = in ToPropertyDescriptorFastPath() local
61 PropertyDetails details = descs->GetDetails(i); in ToPropertyDescriptorFastPath()
62 Name* key = descs->GetKey(i); in ToPropertyDescriptorFastPath()
71 value = handle(descs->GetConstant(i), isolate); in ToPropertyDescriptorFastPath()
Dstring-stream.cc348 DescriptorArray* descs = map->instance_descriptors(); in PrintUsingMap() local
350 PropertyDetails details = descs->GetDetails(i); in PrintUsingMap()
352 Object* key = descs->GetKey(i); in PrintUsingMap()
Dobjects-printer.cc285 DescriptorArray* descs = map()->instance_descriptors(); in PrintProperties() local
288 descs->GetKey(i)->NamePrint(os); in PrintProperties()
290 switch (descs->GetType(i)) { in PrintProperties()
307 os << Brief(descs->GetConstant(i)) << " (data constant)"; in PrintProperties()
310 os << Brief(descs->GetCallbacksObject(i)) << " (accessor constant)"; in PrintProperties()
Dbootstrapper.cc3652 Handle<DescriptorArray> descs = in TransferNamedProperties() local
3655 PropertyDetails details = descs->GetDetails(i); in TransferNamedProperties()
3659 Handle<Name> key = Handle<Name>(descs->GetKey(i)); in TransferNamedProperties()
3661 DCHECK(!descs->GetDetails(i).representation().IsDouble()); in TransferNamedProperties()
3669 Handle<Name> key = Handle<Name>(descs->GetKey(i)); in TransferNamedProperties()
3670 Handle<Object> constant(descs->GetConstant(i), isolate()); in TransferNamedProperties()
3677 Handle<Name> key(descs->GetKey(i)); in TransferNamedProperties()
3685 Handle<Object> callbacks(descs->GetCallbacksObject(i), isolate()); in TransferNamedProperties()
Dfactory.cc1564 Handle<DescriptorArray> descs(map->instance_descriptors()); in NewJSGlobalObject() local
1566 PropertyDetails details = descs->GetDetails(i); in NewJSGlobalObject()
1571 Handle<Name> name(descs->GetKey(i)); in NewJSGlobalObject()
1573 cell->set_value(descs->GetCallbacksObject(i)); in NewJSGlobalObject()
Dobjects.cc3225 Handle<DescriptorArray> descs(map->instance_descriptors()); in MigrateFastToSlow() local
3227 PropertyDetails details = descs->GetDetails(i); in MigrateFastToSlow()
3228 Handle<Name> key(descs->GetKey(i)); in MigrateFastToSlow()
3231 Handle<Object> value(descs->GetConstant(i), isolate); in MigrateFastToSlow()
3265 Handle<Object> value(descs->GetCallbacksObject(i), isolate); in MigrateFastToSlow()
8239 DescriptorArray* descs = instance_descriptors(); in NumberOfDescribedProperties() local
8241 ? descs->number_of_descriptors() in NumberOfDescribedProperties()
8244 if ((descs->GetDetails(i).attributes() & filter) == 0 && in NumberOfDescribedProperties()
8245 !descs->GetKey(i)->FilterKey(filter)) { in NumberOfDescribedProperties()
8256 DescriptorArray* descs = instance_descriptors(); in NextFreePropertyIndex() local
[all …]
Dobjects.h3049 inline explicit Entry(DescriptorArray* descs, int index) : in Entry() argument
3050 descs_(descs), index_(index) { } in Entry()
/external/v8/test/mjsunit/es6/
Dproxies.js707 var descs = [
714 for (var i = 0; i < descs.length; ++i) {
715 assertEquals(p, Object.defineProperty(p, i, descs[i]))
717 for (prop in descs[i]) {
720 if (prop != "mine") assertEquals(descs[i][prop], desc[prop])
/external/deqp/modules/internal/
DditFrameworkTests.cpp62 static const char* descs[] = in getMatchCaseExpectedDesc() local
68 return de::getSizedArrayElement<MatchCase::EXPECTED_LAST>(descs, expected); in getMatchCaseExpectedDesc()
/external/llvm/cmake/modules/
DLLVM-Config.cmake166 # Link all the descs from all the targets
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1555 DescriptorArray* descs = js_obj->map()->instance_descriptors(); in ExtractPropertyReferences() local
1558 PropertyDetails details = descs->GetDetails(i); in ExtractPropertyReferences()
1564 Name* k = descs->GetKey(i); in ExtractPropertyReferences()
1576 descs->GetKey(i), in ExtractPropertyReferences()
1577 descs->GetValue(i)); in ExtractPropertyReferences()