Home
last modified time | relevance | path

Searched refs:Call (Results 1 – 25 of 135) sorted by relevance

123456

/plugin/combo/ComboStrap/
H A DCallStack.php98 * A temporary Call stack is created in the writer
301 * @return Call the deleted call
304 function deleteActualCallAndPrevious(): ?Call
335 * @return Call|null - get a reference to the actual call
336 * This function returns a {@link Call call} object
341 function getActualCall(): ?Call
353 return new Call($actualCallArray, $actualCallKey);
360 * @return false|Call
404 * @return bool|Call
454 * @return Call|fals
[all...]
H A DCall.php20 * Class Call
30 class Call class
158 * Call constructor.
177 * @return Call - a call
179 public static function createComboCall($tagName, $state, array $attribute = array(), string $rawContext = null, string $content = null, string $payload = null, int $position = null, string $syntaxComponentName = null): Call
213 return new Call($call);
221 * @return Call
223 public static function createNativeCall($callName, $array = [], $positionInText = null): Call
230 return new Call($call);
233 public static function createFromInstruction($instruction): Call
[all...]
H A DOutlineSection.php16 * @var Call[] $headingCalls
21 * @var Call[] $contentCalls
31 private ?Call $headingEnterCall;
44 * @param Call|null $headingEnterCall - null if the section is the root
46 private function __construct(Call $headingEnterCall = null)
83 public static function createFromEnterHeadingCall(Call $enterHeadingCall): OutlineSection
97 public function addContentCall(Call $actualCall): OutlineSection
106 public function addHeaderCall(Call $actualCall): OutlineSection
143 * @return Call[]
159 function getEnterHeadingCall(): ?Call
[all...]
H A DCardTag.php89 if (in_array($tagName, Call::IMAGE_TAGS)) {
103 $actualCall->setDisplay(Call::BlOCK_DISPLAY);
132 $insertBodyAfterThisCalls = PluginUtility::mergeAttributes(Call::IMAGE_TAGS, [syntax_plugin_combo_header::TAG]);
159 Call::createComboCall(
231 public static function createCardBodyExitCall(): Call
233 return Call::createComboCall(
245 public static function createCardBodyEnterCall($context = null): Call
247 return Call::createComboCall(
H A DOutlineVisitor.php82 return array_map(function (Call $element) {
98 $totalComboCalls[] = Call::createComboCall(
205 $totalComboCalls[] = Call::createComboCall(
280 private function getOpenHeaderCall(): Call
283 return Call::createComboCall(
293 private function getCloseHeaderCall(): Call
295 return Call::createComboCall(
303 private function getAdCall(OutlineSection $outlineSection): ?Call
323 return Call::createComboCall(
H A DOutline.php87 private Call $actualHeadingCall; // the heading that is parsed
191 $originalInstructionCall = Call::createComboCall(
341 if ($display === Call::BlOCK_DISPLAY) {
404 $endAtxCall = Call::createComboCall(
426 $pluginAnalyticsCall = Call::createComboCall(
631 $instructionCalls = array_map(function (Call $element) {
646 $wikiSectionOpen = Call::createNativeCall(
651 $wikiSectionClose = Call::createNativeCall(
697 $instructionCalls = array_map(function (Call $element) {
706 private function addCallToSection(Call
[all...]
H A DBlockquoteTag.php100 $callStack->insertBefore(Call::createComboCall(
116 $callStack->insertAfter(Call::createComboCall(
187 $callEnterTypeCall = Call::createComboCall(
227 Call::createComboCall(
H A DEditButton.php384 public function toComboCallComboFormat(): Call
389 public function toComboCall($format): Call
391 return Call::createComboCall(
424 public function toComboCallDokuWikiForm(): Call
H A DFetcherPageBundler.php213 $enterHeading = Call::createComboCall(
224 $unmatchedHeading = Call::createComboCall(
234 $exitHeading = Call::createComboCall(
H A DHrTag.php26 return Call::BlOCK_DISPLAY;
/plugin/combo/syntax/
H A Dpara.php7 use ComboStrap\Call; alias
281 if ($actualCall->getDisplay() == Call::BlOCK_DISPLAY) {
284 Call::createComboCall(
296 * Next Call that is not the empty string
333 case Call::BlOCK_DISPLAY:
337 case Call::INLINE_DISPLAY:
384 case Call::INLINE_DISPLAY:
388 case Call::BlOCK_DISPLAY:
408 Call::createComboCall(
H A Dcell.php13 use ComboStrap\Call; alias
192 Call::createComboCall(
204 Call::createComboCall(
H A Diterator.php12 use ComboStrap\Call; alias
282 $templateCall = Call::createFromInstruction($templateInstructions);
283 if (in_array($templateCall->getComponentName(), Call::BLOCK_MARKUP_DOKUWIKI_COMPONENTS)) {
491 * @var Call $actualCall
536 $firstTemplateCall = Call::createFromInstruction($templateHeader[0]);
539 $lastIterationHeaderInstruction = Call::createFromInstruction($iteratorHeaderInstructions[$lastIterationHeaderElement]);
H A Dcontentlist.php4 use ComboStrap\Call; alias
69 $callStack->insertBefore(Call::createComboCall(
96 $callStack->insertBefore(Call::createComboCall(
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Call/
H A DCallCenter.php12 namespace Prophecy\Call;
19 use Prophecy\Exception\Call\UnexpectedCallException;
31 * @var Call[]
78 $this->recordedCalls[] = new Call($methodName, $arguments, null, null, $file, $line);
119 $this->recordedCalls[] = $call = new Call(
137 * @return Call[]
142 array_filter($this->recordedCalls, function (Call $call) use ($methodName, $wildcard) {
H A DCall.php12 namespace Prophecy\Call;
22 class Call class
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prediction/
H A DPredictionInterface.php14 use Prophecy\Call\Call; alias
29 * @param Call[] $calls
H A DCallbackPrediction.php14 use Prophecy\Call\Call; alias
51 * @param Call[] $calls
H A DNoCallsPrediction.php14 use Prophecy\Call\Call; alias
42 * @param Call[] $calls
H A DCallPrediction.php14 use Prophecy\Call\Call; alias
44 * @param Call[] $calls
H A DCallTimesPrediction.php14 use Prophecy\Call\Call; alias
48 * @param Call[] $calls
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Util/
H A DStringUtil.php14 use Prophecy\Call\Call; alias
83 * @param Call[] $calls Array of Call instances
91 return implode(PHP_EOL, array_map(function (Call $call) use ($self) {
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
H A Dphpstan.neon6 - '#Call to static method performRequest\(\) on trait#'
9 - '#Call to method getCode\(\) on an unknown class JsonException#'
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/
H A DObjectProphecy.php16 use Prophecy\Call\Call; alias
19 use Prophecy\Call\CallCenter;
200 * @return Call[]
/plugin/combo/ComboStrap/Tag/
H A DBoxTag.php6 use ComboStrap\Call; alias
19 * via the {@link Call::createComboCall()}
83 if ($actual->getDisplay() == Call::INLINE_DISPLAY) {

123456