Lines Matching refs:calls

83      * the {@link Doku_Handler::$calls call stack of the handler}
118 * Check the calls property
123 $rp = new \ReflectionProperty($callWriterClass, "calls");
125 LogUtility::msg("$headErrorMessage. The call writer ($callWriterClass) provided cannot manipulate the callstack (ie the calls of the call writer are private).", LogUtility::LVL_MSG_ERROR);
133 * The calls
139 $writerCalls = &$callWriter->calls;
148 * Check the calls property of the handler
152 $rp = new \ReflectionProperty($handlerClass, "calls");
154 LogUtility::msg("$headErrorMessage. The handler ($handlerClass) provided cannot manipulate the callstack (ie the calls of the handler are private).", LogUtility::LVL_MSG_ERROR);
158 LogUtility::msg("$headErrorMessage. The handler ($handlerClass) provided cannot manipulate the callstack (ie the handler does not have any calls property).", LogUtility::LVL_MSG_ERROR);
165 $this->callStack = &$handler->calls;
187 public $calls = [];
192 public $calls = array();
236 * @param $calls
241 static function deleteCalls(&$calls, $start, $end)
244 unset($calls[$i]);
249 * @param array $calls
254 static function insertCallStackUpWards(&$calls, $position, $callStackToInsert)
257 array_splice($calls, $position, 0, $callStackToInsert);
922 * Delete all calls after the passed call
927 * * and use it to generate more calls.
942 LogUtility::msg("The call ($call) could not be found in the callStack. We couldn't therefore delete the calls after");
948 * @param Call[] $calls
950 public function appendInstructionsFromCallObjects($calls)
952 foreach ($calls as $call) {
1135 public function appendCallsAtTheEnd(array $calls)
1137 foreach($calls as $call){