Lines Matching +full:- +full:i
21 foreach ($this->calls as $call) {
26 $this->quoteCalls[] = ['quote_open', [], $call[2]];
29 $quoteLength = $this->getDepth($call[1][0]);
32 $quoteDiff = $quoteLength - $quoteDepth;
33 for ($i = 1; $i <= $quoteDiff; $i++) {
34 $this->quoteCalls[] = ['quote_open', [], $call[2]];
37 $quoteDiff = $quoteDepth - $quoteLength;
38 for ($i = 1; $i <= $quoteDiff; $i++) {
39 $this->quoteCalls[] = ['quote_close', [], $call[2]];
42 $this->quoteCalls[] = ['linebreak', [], $call[2]];
51 $quoteDiff = $quoteDepth - 1;
52 for ($i = 1; $i <= $quoteDiff; $i++) {
53 $this->quoteCalls[] = ['quote_close', [], $call[2]];
57 $this->quoteCalls[] = ['quote_close', [], $call[2]];
59 $this->callWriter->writeCalls($this->quoteCalls);
63 $this->quoteCalls[] = $call;
68 return $this->callWriter;