Home
last modified time | relevance | path

Searched refs:exports_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dinterface.cc14 ZoneHashMap* map = Chase()->exports_; in Lookup()
58 ZoneHashMap** map = &Chase()->exports_; in DoAdd()
121 if (this->exports_ != NULL && (that->exports_ == NULL || in Unify()
122 this->exports_->occupancy() >= that->exports_->occupancy())) { in Unify()
154 ZoneHashMap* map = that->exports_; in DoUnify()
164 int this_size = this->exports_ == NULL ? 0 : this->exports_->occupancy(); in DoUnify()
196 ZoneHashMap* map = Chase()->exports_; in Print()
Dinterface.h128 ZoneHashMap* exports = Chase()->exports_; in Length()
159 void Advance() { entry_ = exports_->Next(entry_); } in Advance()
164 : exports_(exports), entry_(exports ? exports->Start() : NULL) {} in Iterator()
166 const ZoneHashMap* exports_; variable
170 Iterator iterator() const { return Iterator(this->exports_); } in iterator()
191 ZoneHashMap* exports_; // Module exports and their types (allocated lazily) variable
197 exports_(NULL), in Interface()