Home | History | Annotate | Download | only in src

Lines Matching refs:next_

24   HFieldApproximation* next_;
31 copy->next_ = this->next_ == NULL ? NULL : this->next_->Copy(zone);
176 prev->next_ = approx->next_;
178 fields_[i] = approx->next_;
180 approx = approx->next_;
184 approx = approx->next_;
312 approx = approx->next_;
327 approx = approx->next_;
341 approx->next_ = fields_[field];
359 prev->next_ = approx->next_;
361 fields_[field] = approx->next_;
363 approx = approx->next_;
368 approx = approx->next_;
388 while (approx->next_ != NULL) {
390 approx = approx->next_;
392 if (prev != NULL) prev->next_ = NULL;
420 for (HFieldApproximation* a = fields_[i]; a != NULL; a = a->next_) {