Home
last modified time | relevance | path

Searched refs:argument (Results 26 – 50 of 219) sorted by relevance

123456789

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DReflectionClassNewInstancePatch.php43 foreach ($node->getMethod('newInstance')->getArguments() as $argument) {
44 $argument->setDefault(null);
H A DDisableConstructorPatch.php51 foreach ($constructor->getArguments() as $argument) {
52 $argument->setDefault(null);
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DIn.php107 * @param mixed $argument Argument (because the behavior is very
111 public function readArray($argument = null); argument
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DCallbackToken.php51 public function scoreArgument($argument) argument
53 return call_user_func($this->callback, $argument) ? 7 : false;
H A DLogicalNotToken.php39 public function scoreArgument($argument) argument
41 return false === $this->token->scoreArgument($argument) ? 4 : false;
H A DApproximateValueToken.php33 public function scoreArgument($argument) argument
35 … return round($argument, $this->precision) === round($this->value, $this->precision) ? 10 : false;
H A DIdenticalValueToken.php46 public function scoreArgument($argument) argument
48 return $argument === $this->value ? 11 : false;
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DPropPatch.php312 $argument = [];
314 $argument[$propertyName] = $this->mutations[$propertyName];
317 $result = $callback($argument);
335 foreach ($argument as $propertyName => $propertyValue) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DPropPatch.php305 $argument = [];
307 $argument[$propertyName] = $this->mutations[$propertyName];
310 $result = $callback($argument);
328 foreach ($argument as $propertyName => $propertyValue) {
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/
H A Dmultiline_function_with_unknown_argument.test2 Exception for multiline function with unknown argument
9 Twig\Error\SyntaxError: Unknown argument "invalid" for function "include(template, variables, with_…
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/macros/
H A Dvarargs_argument.test2 macro with varargs argument
7 Twig\Error\SyntaxError: The argument "varargs" in macro "test" cannot be defined because the variab…
/plugin/latexport/implementation/
H A Ddecorator_persister.php61 * @param argument If specified, to be included in square brackets. Depending
65 function appendCommand($command, $scope = null, $argument = '') { argument
66 $this->appendInlineCommand($command, $scope, $argument);
75 * @param argument If specified, to be included in square brackets. Depending
79 function appendInlineCommand($command, $scope = null, $argument = '') { argument
80 if ($argument) {
87 $text = '\\'.$command.'{'.$scope.'}{'.$argument.'}';
91 $text = '\\'.$command.'{'.$scope.'}['.$argument.']';
98 $text = '\\'.$command.'['.$argument.']{'.$scope.'}';
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dsplit.rst15 You can also pass a ``limit`` argument:
31 chunks. Length is set by the ``limit`` argument (one character by default).
50 * ``limit``: The limit argument
H A Durl_encode.rst8 The ``raw`` argument was removed in Twig 1.16.0. Twig now always encodes
30 ``raw`` argument was removed.)
/plugin/jplayer/vendor/symfony/process/
H A DProcessBuilder.php59 * @param string $argument A command argument
63 public function add($argument) argument
65 $this->arguments[] = $argument;
H A DProcess.php1705 * @param string $argument The argument that will be escaped
1709 private function escapeArgument($argument) argument
1712 return "'".str_replace("'", "'\\''", $argument)."'";
1714 if ('' === $argument = (string) $argument) {
1717 if (false !== strpos($argument, "\0")) {
1718 $argument = str_replace("\0", '?', $argument);
1720 if (!preg_match('/[\/()%!^"<>&|\s]/', $argument)) {
1721 return $argument;
1723 $argument = preg_replace('/(\\\\+)$/', '$1$1', $argument);
1725 …'"'.str_replace(['"', '^', '%', '!', "\n"], ['""', '"^^"', '"^%"', '"^!"', '!LF!'], $argument).'"';
/plugin/latexport/_test/
H A Dcommand.php138 public $argument; variable in CommandAppendCommand
140 function __construct($command, $scope, $argument = '') { argument
144 $this->argument = $argument;
/plugin/mediasyntax/tools/
H A Ddokuwiki2mediawiki.php20 echo "The source file is given as an argument, the target file is the same plus the suffix \".mod\"\n";
25 for ($argument=1;$argument<$argc;$argument++) variable
27 $filename=$argv[$argument];
/plugin/structcondstyle/
H A Daction.php112 $argument = trim(preg_split("/\s*$operator\s*/",$condition)[1]);
117 "argument" => $argument,
163 $argument = NULL;
201 $cond_applies = $this->ops[$operator]->evaluate($row_val,$argument);
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DXML.php53 function XML($argument = "") { argument
58 if(is_string($argument)) {
60 if(strpos($argument, $this->tag->tagEndOpen) > 0 || strpos($argument, $this->tag->tagClose) > 0)
61 $this->parseFromString($argument);
63 elseif(strpos($argument, $this->pathSeparator) > 0) {
64 $tags = explode($this->pathSeparator, $argument);
66 $this->setTagContent("", $argument);
69 $this->tag->setTagName($argument);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DXML.php218 foreach ($arguments as $argument) {
219 if ($argument instanceof DOMElement) {
220 $constructorArgs[] = self::xmlToVariable($argument);
/plugin/combo/vendor/symfony/process/
H A DProcess.php98 128 => 'Invalid exit argument',
1613 * Escapes a string to be used as a shell argument.
1615 private function escapeArgument(?string $argument): string argument
1617 if ('' === $argument || null === $argument) {
1621 return "'".str_replace("'", "'\\''", $argument)."'";
1623 if (str_contains($argument, "\0")) {
1624 $argument = str_replace("\0", '?', $argument);
1626 if (!preg_match('/[\/()%!^"<>&|\s]/', $argument)) {
[all...]
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DMacroNode.php28 foreach ($arguments as $argumentName => $argument) {
30 …arbitrary arguments.', self::VARARGS_NAME, $name, self::VARARGS_NAME), $argument->getTemplateLine(…
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DTwigFormulaLoader.php77 foreach ($node->getNode('arguments') as $argument) {
78 $arguments[] = eval('return '.$this->twig->compile($argument).';');
/plugin/datedifference/
H A Dsyntax.php70 foreach ($arguments as $argument) {
71 list($key, $value) = explode('=', $argument);

123456789