Lines Matching refs:call

24         foreach ($this->calls as $call) {
25 match ($call[0]) {
26 'list_item' => $this->listOpen($call),
27 'list_open' => $this->listStart($call),
28 'list_close' => $this->listEnd($call),
29 default => $this->listContent($call),
37 protected function listStart($call) argument
39 $depth = $this->interpretSyntax($call[1][0], $listType);
45 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
46 $this->listCalls[] = ['listitem_open', [1], $call[2]];
47 $this->listCalls[] = ['listcontent_open', [], $call[2]];
51 protected function listEnd($call) argument
57 $this->listCalls[] = ['listcontent_close', [], $call[2]];
60 $this->listCalls[] = ['listitem_close', [], $call[2]];
61 $this->listCalls[] = ['list' . $list[0] . '_close', [], $call[2]];
65 protected function listOpen($call) argument
67 $depth = $this->interpretSyntax($call[1][0], $listType);
79 $this->listCalls[] = ['listcontent_close', [], $call[2]];
80 $this->listCalls[] = ['listitem_close', [], $call[2]];
81 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
82 $this->listCalls[] = ['listcontent_open', [], $call[2]];
89 $this->listCalls[] = ['listcontent_close', [], $call[2]];
90 $this->listCalls[] = ['listitem_close', [], $call[2]];
91 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
92 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
93 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
94 $this->listCalls[] = ['listcontent_open', [], $call[2]];
100 $this->listCalls[] = ['listcontent_close', [], $call[2]];
101 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
102 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
103 $this->listCalls[] = ['listcontent_open', [], $call[2]];
110 $this->listCalls[] = ['listcontent_close', [], $call[2]];
111 $this->listCalls[] = ['listitem_close', [], $call[2]];
112 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
125 $this->listCalls[] = ['listitem_close', [], $call[2]];
128 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
129 $this->listCalls[] = ['listcontent_open', [], $call[2]];
135 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
136 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
137 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
138 $this->listCalls[] = ['listcontent_open', [], $call[2]];
148 $this->listCalls[] = ['listitem_close', [], $call[2]];
149 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
157 protected function listContent($call) argument
159 $this->listCalls[] = $call;