Home
last modified time | relevance | path

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

/external/v8/src/
Dlookup.cc521 Handle<GlobalDictionary> property_dictionary = in WriteDataValue()
668 GlobalDictionary* dict = JSObject::cast(holder)->global_dictionary(); in LookupInHolder()
670 if (number == GlobalDictionary::kNotFound) return NOT_FOUND; in LookupInHolder()
Dobjects-debug.cc605 if (GlobalDictionary::cast(properties())->NumberOfElements() == 0 && in JSGlobalObjectVerify()
1062 GlobalDictionary* dict = global_dictionary(); in IncrementSpillStatistics()
Dglobals.h428 class GlobalDictionary; variable
Dfactory.cc1548 Handle<GlobalDictionary> dictionary = in NewJSGlobalObject()
1549 GlobalDictionary::New(isolate(), at_least_space_for); in NewJSGlobalObject()
1564 USE(GlobalDictionary::Add(dictionary, name, cell, d)); in NewJSGlobalObject()
Dobjects.cc1405 Handle<GlobalDictionary> property_dictionary(object->global_dictionary()); in SetNormalizedProperty()
1408 if (entry == GlobalDictionary::kNotFound) { in SetNormalizedProperty()
1416 GlobalDictionary::Add(property_dictionary, name, value, details); in SetNormalizedProperty()
2658 Handle<GlobalDictionary> dict(object->global_dictionary()); in AddSlowProperty()
2662 if (entry != GlobalDictionary::kNotFound) { in AddSlowProperty()
2680 Handle<GlobalDictionary> result = in AddSlowProperty()
2681 GlobalDictionary::Add(dict, name, value, details); in AddSlowProperty()
6203 Handle<GlobalDictionary> dictionary( in DeleteNormalizedProperty()
6205 DCHECK_NE(GlobalDictionary::kNotFound, entry); in DeleteNormalizedProperty()
8542 Handle<GlobalDictionary> dictionary(object->global_dictionary()); in GetEnumPropertyKeys()
[all …]
Dobjects.h1996 inline GlobalDictionary* global_dictionary();
3567 class GlobalDictionary
3568 : public NameDictionaryBase<GlobalDictionary, GlobalDictionaryShape> {
3570 DECLARE_CAST(GlobalDictionary)
9485 static void UpdateCell(Handle<GlobalDictionary> dictionary, int entry,
9489 Handle<GlobalDictionary> dictionary, int entry);
Dbootstrapper.cc3262 Handle<GlobalDictionary> properties = in TransferNamedProperties()
3263 Handle<GlobalDictionary>(from->global_dictionary()); in TransferNamedProperties()
Dobjects-inl.h3209 CAST_ACCESSOR(GlobalDictionary)
6755 GlobalDictionary* JSObject::global_dictionary() { in global_dictionary()
6758 return GlobalDictionary::cast(properties()); in global_dictionary()
/external/v8/src/runtime/
Druntime-object.cc62 GlobalDictionary* dictionary = receiver->global_dictionary(); in KeyedGetObjectProperty()
64 if (entry != GlobalDictionary::kNotFound) { in KeyedGetObjectProperty()
/external/v8/test/cctest/
Dtest-object-observe.cc782 if (i::GlobalDictionary::cast(g->properties())->NumberOfElements() != 0) { in GetGlobalObjectsCount()
Dtest-api.cc13467 if (i::GlobalDictionary::cast(g->properties())->NumberOfElements() != 0) { in GetGlobalObjectsCount()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1626 GlobalDictionary* dictionary = js_obj->global_dictionary(); in ExtractPropertyReferences()