• Home
  • Raw
  • Download

Lines Matching refs:next_

1146     last_instruction_->next_ = instruction;  in AddInstruction()
1156 instruction->next_ = cursor; in InsertInstructionBefore()
1160 instruction->next_ = cursor; in InsertInstructionBefore()
1162 instruction->previous_->next_ = instruction; in InsertInstructionBefore()
1169 cursor->next_ = instruction; in InsertInstructionAfter()
1173 instruction->next_ = cursor->next_; in InsertInstructionAfter()
1175 cursor->next_ = instruction; in InsertInstructionAfter()
1176 instruction->next_->previous_ = instruction; in InsertInstructionAfter()
1182 instruction->previous_->next_ = instruction->next_; in RemoveInstruction()
1184 if (instruction->next_ != nullptr) { in RemoveInstruction()
1185 instruction->next_->previous_ = instruction->previous_; in RemoveInstruction()
1188 first_instruction_ = instruction->next_; in RemoveInstruction()
1720 next_->previous_ = previous_; in MoveBefore()
1722 previous_->next_ = next_; in MoveBefore()
1725 block_->instructions_.first_instruction_ = next_; in MoveBefore()
1731 previous_->next_ = this; in MoveBefore()
1733 next_ = cursor; in MoveBefore()
1808 cursor->previous_->next_ = nullptr; in SplitBefore()
1854 cursor->previous_->next_ = nullptr; in SplitBeforeForInlining()
1882 cursor->next_->previous_ = nullptr; in SplitAfterForInlining()
1883 cursor->next_ = nullptr; in SplitAfterForInlining()
2028 cursor->next_->previous_ = instruction_list.last_instruction_; in AddAfter()
2030 instruction_list.last_instruction_->next_ = cursor->next_; in AddAfter()
2031 cursor->next_ = instruction_list.first_instruction_; in AddAfter()
2042 cursor->previous_->next_ = instruction_list.first_instruction_; in AddBefore()
2044 instruction_list.last_instruction_->next_ = cursor; in AddBefore()