Searched refs:final1 (Results 1 – 4 of 4) sorted by relevance
/web-bugs/src/Horde/Text/Diff/ThreeWay/Op/ |
H A D | Base.php | 13 public function __construct($orig = false, $final1 = false, $final2 = false) argument 16 $this->final1 = $final1 ? $final1 : array(); 23 if ($this->final1 === $this->final2) { 24 $this->_merged = &$this->final1; 25 } elseif ($this->final1 === $this->orig) { 28 $this->_merged = &$this->final1;
|
H A D | Copy.php | 16 $this->final1 = &$this->orig;
|
/web-bugs/src/Horde/Text/Diff/ThreeWay/ |
H A D | BlockBuilder.php | 28 $this->_append($this->final1, $lines); 41 return !$this->orig && !$this->final1 && !$this->final2; 49 $edit = new Horde_Text_Diff_ThreeWay_Op_Base($this->orig, $this->final1, $this->final2); 57 $this->orig = $this->final1 = $this->final2 = array();
|
/web-bugs/src/Horde/Text/Diff/ |
H A D | ThreeWay.php | 33 * @param array $final1 The first version to compare to. 36 public function __construct($orig, $final1, $final2) argument 44 $this->_edits = $this->_diff3($engine->diff($orig, $final1), 58 $edit->final1,
|
Completed in 7 milliseconds