Lines Matching refs:ZoneHashMap
14 ZoneHashMap* map = Chase()->exports_; in Lookup()
17 ZoneHashMap::Entry* p = map->Lookup(name.location(), name->Hash(), false, in Lookup()
58 ZoneHashMap** map = &Chase()->exports_; in DoAdd()
62 *map = new(zone->New(sizeof(ZoneHashMap))) in DoAdd()
63 ZoneHashMap(ZoneHashMap::PointersMatch, in DoAdd()
64 ZoneHashMap::kDefaultHashMapCapacity, allocator); in DoAdd()
67 ZoneHashMap::Entry* p = in DoAdd()
154 ZoneHashMap* map = that->exports_; in DoUnify()
156 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) { in DoUnify()
196 ZoneHashMap* map = Chase()->exports_; in Print()
204 for (ZoneHashMap::Entry* p = map->Start(); p != NULL; p = map->Next(p)) { in Print()