Lines Matching +full:- +full:i
12 $last_call = end($this->calls);
13 $this->writeCall(['quote_end', [], $last_call[2]]);
15 $this->process();
16 $this->callWriter->finalise();
17 unset($this->callWriter);
26 foreach ($this->calls as $call) {
31 $this->quoteCalls[] = ['quote_open', [], $call[2]];
34 $quoteLength = $this->getDepth($call[1][0]);
37 $quoteDiff = $quoteLength - $quoteDepth;
38 for ($i = 1; $i <= $quoteDiff; $i++) {
39 $this->quoteCalls[] = ['quote_open', [], $call[2]];
42 $quoteDiff = $quoteDepth - $quoteLength;
43 for ($i = 1; $i <= $quoteDiff; $i++) {
44 $this->quoteCalls[] = ['quote_close', [], $call[2]];
47 $this->quoteCalls[] = ['linebreak', [], $call[2]];
56 $quoteDiff = $quoteDepth - 1;
57 for ($i = 1; $i <= $quoteDiff; $i++) {
58 $this->quoteCalls[] = ['quote_close', [], $call[2]];
62 $this->quoteCalls[] = ['quote_close', [], $call[2]];
64 $this->callWriter->writeCalls($this->quoteCalls);
68 $this->quoteCalls[] = $call;
73 return $this->callWriter;