Searched refs:ZoneHashMap (Results 1 - 6 of 6) sorted by relevance

/external/v8/src/
H A Dinterface.cc46 ZoneHashMap* map = Chase()->exports_;
48 ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false);
87 ZoneHashMap** map = &Chase()->exports_;
88 if (*map == NULL) *map = new ZoneHashMap(Match, 8);
90 ZoneHashMap::Entry* p = (*map)->Lookup(name, hash, !IsFrozen());
166 ZoneHashMap* map = that->exports_;
168 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
206 ZoneHashMap* map = Chase()->exports_;
214 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) {
H A Dinterface.h131 ZoneHashMap* exports_; // Module exports and their types (allocated lazily)
H A Dzone.h243 typedef TemplateHashMapImpl<ZoneListAllocationPolicy> ZoneHashMap; typedef in namespace:v8::internal
H A Dscopes.h41 class VariableMap: public ZoneHashMap {
H A Dscopes.cc60 VariableMap::VariableMap() : ZoneHashMap(Match, 8) {}
72 Entry* p = ZoneHashMap::Lookup(name.location(), name->Hash(), true);
89 Entry* p = ZoneHashMap::Lookup(name.location(), name->Hash(), false);
H A Dast.cc246 ZoneHashMap table(Literal::Match);

Completed in 434 milliseconds