HomeSort by relevance Sort by last modified time
    Searched refs:ZoneHashMap (Results 1 - 6 of 6) sorted by null

  /external/v8/src/
interface.cc 46 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)) {
interface.h 131 ZoneHashMap* exports_; // Module exports and their types (allocated lazily)
zone.h 243 typedef TemplateHashMapImpl<ZoneListAllocationPolicy> ZoneHashMap;
scopes.h 41 class VariableMap: public ZoneHashMap {
scopes.cc 60 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);
    [all...]
ast.cc 246 ZoneHashMap table(Literal::Match);
    [all...]

Completed in 142 milliseconds