Lines Matching refs:next_

1165     last_instruction_->next_ = instruction;  in AddInstruction()
1175 instruction->next_ = cursor; in InsertInstructionBefore()
1179 instruction->next_ = cursor; in InsertInstructionBefore()
1181 instruction->previous_->next_ = instruction; in InsertInstructionBefore()
1188 cursor->next_ = instruction; in InsertInstructionAfter()
1192 instruction->next_ = cursor->next_; in InsertInstructionAfter()
1194 cursor->next_ = instruction; in InsertInstructionAfter()
1195 instruction->next_->previous_ = instruction; in InsertInstructionAfter()
1201 instruction->previous_->next_ = instruction->next_; in RemoveInstruction()
1203 if (instruction->next_ != nullptr) { in RemoveInstruction()
1204 instruction->next_->previous_ = instruction->previous_; in RemoveInstruction()
1207 first_instruction_ = instruction->next_; in RemoveInstruction()
1761 next_->previous_ = previous_; in MoveBefore()
1763 previous_->next_ = next_; in MoveBefore()
1766 block_->instructions_.first_instruction_ = next_; in MoveBefore()
1772 previous_->next_ = this; in MoveBefore()
1774 next_ = cursor; in MoveBefore()
1849 cursor->previous_->next_ = nullptr; in SplitBefore()
1895 cursor->previous_->next_ = nullptr; in SplitBeforeForInlining()
1923 cursor->next_->previous_ = nullptr; in SplitAfterForInlining()
1924 cursor->next_ = nullptr; in SplitAfterForInlining()
2074 cursor->next_->previous_ = instruction_list.last_instruction_; in AddAfter()
2076 instruction_list.last_instruction_->next_ = cursor->next_; in AddAfter()
2077 cursor->next_ = instruction_list.first_instruction_; in AddAfter()
2088 cursor->previous_->next_ = instruction_list.first_instruction_; in AddBefore()
2090 instruction_list.last_instruction_->next_ = cursor; in AddBefore()