• Home
  • Raw
  • Download

Lines Matching refs:that

58       AbstractChecks* that = new (zone) AbstractChecks(*this);  in NON_EXPORTED_BASE()  local
59 that->nodes_[that->next_index_] = node; in NON_EXPORTED_BASE()
60 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_); in NON_EXPORTED_BASE()
61 return that; in NON_EXPORTED_BASE()
64 bool Equals(AbstractChecks const* that) const; in NON_EXPORTED_BASE()
65 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const; in NON_EXPORTED_BASE()
94 AbstractElements* that = new (zone) AbstractElements(*this); in NON_EXPORTED_BASE() local
95 that->elements_[that->next_index_] = in NON_EXPORTED_BASE()
97 that->next_index_ = (that->next_index_ + 1) % arraysize(elements_); in NON_EXPORTED_BASE()
98 return that; in NON_EXPORTED_BASE()
103 bool Equals(AbstractElements const* that) const; in NON_EXPORTED_BASE()
104 AbstractElements const* Merge(AbstractElements const* that, in NON_EXPORTED_BASE()
146 AbstractField* that = new (zone) AbstractField(zone); in NON_EXPORTED_BASE() local
147 that->info_for_node_ = this->info_for_node_; in NON_EXPORTED_BASE()
148 that->info_for_node_.insert(std::make_pair(object, Field(value, name))); in NON_EXPORTED_BASE()
149 return that; in NON_EXPORTED_BASE()
154 bool Equals(AbstractField const* that) const { in NON_EXPORTED_BASE()
155 return this == that || this->info_for_node_ == that->info_for_node_; in NON_EXPORTED_BASE()
157 AbstractField const* Merge(AbstractField const* that, Zone* zone) const { in NON_EXPORTED_BASE()
158 if (this->Equals(that)) return this; in NON_EXPORTED_BASE()
164 auto that_it = that->info_for_node_.find(this_object); in NON_EXPORTED_BASE()
165 if (that_it != that->info_for_node_.end() && in NON_EXPORTED_BASE()
205 bool Equals(AbstractMaps const* that) const { in NON_EXPORTED_BASE()
206 return this == that || this->info_for_node_ == that->info_for_node_; in NON_EXPORTED_BASE()
208 AbstractMaps const* Merge(AbstractMaps const* that, Zone* zone) const; in NON_EXPORTED_BASE()
224 bool Equals(AbstractState const* that) const; in NON_EXPORTED_BASE()
225 void Merge(AbstractState const* that, Zone* zone); in NON_EXPORTED_BASE()