Lines Matching full:that
2 // Use of this source code is governed by a BSD-style license that can be
35 // Place {this} after {that} in control flow order.
36 void Chain(Diamond& that) { branch->ReplaceInput(1, that.merge); }
38 // Place {this} after {that} in control flow order.
39 void Chain(Node* that) { branch->ReplaceInput(1, that); }
41 // Nest {this} into either the if_true or if_false branch of {that}.
42 void Nest(Diamond& that, bool if_true) {
44 branch->ReplaceInput(1, that.if_true);
45 that.merge->ReplaceInput(0, merge);
47 branch->ReplaceInput(1, that.if_false);
48 that.merge->ReplaceInput(1, merge);