Home
last modified time | relevance | path

Searched refs:history (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php54 private $history; variable in phpseclib3\\File\\ANSI
174 $this->history = $this->history_attrs = [];
184 * @param int $history
186 public function setHistory($history) argument
188 $this->max_history = $history;
236 …$this->history = array_merge($this->history, array_slice(array_splice($this->screen, $this->y + 1)…
242 if (count($this->history) == $this->max_history) {
243 array_shift($this->history);
419 $this->history = array_merge($this->history, [array_shift($this->screen)]);
425 if (count($this->history) >= $this->max_history) {
[all …]