Home
last modified time | relevance | path

Searched refs:argument (Results 1 – 25 of 329) sorted by relevance

12345678910>>...14

/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
DMethod.php138 foreach ($arguments as &$argument) {
139 $argument = explode(' ', self::stripRestArg(trim($argument)), 2);
140 if ($argument[0][0] === '$') {
141 $argumentName = substr($argument[0], 1);
144 $argumentType = $typeResolver->resolve($argument[0], $context);
146 if (isset($argument[1])) {
147 $argument[1] = self::stripRestArg($argument[1]);
148 $argumentName = substr($argument[1], 1);
152 $argument = [ 'name' => $argumentName, 'type' => $argumentType];
200 foreach ($this->arguments as $argument) {
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
DArrayEntryToken.php47 public function scoreArgument($argument) argument
49 if ($argument instanceof \Traversable) {
50 $argument = iterator_to_array($argument);
53 if ($argument instanceof \ArrayAccess) {
54 $argument = $this->convertArrayAccessToEntry($argument);
57 if (!is_array($argument) || empty($argument)) {
61 $keyScores = array_map(array($this->key,'scoreArgument'), array_keys($argument));
62 $valueScores = array_map(array($this->value,'scoreArgument'), $argument);
DArrayCountToken.php39 public function scoreArgument($argument) argument
41 return $this->isCountable($argument) && $this->hasProperCount($argument) ? 6 : false;
70 private function isCountable($argument) argument
72 return (is_array($argument) || $argument instanceof \Countable);
82 private function hasProperCount($argument) argument
84 return $this->count === count($argument);
DExactValueToken.php52 public function scoreArgument($argument) argument
54 if (is_object($argument) && is_object($this->value)) {
56 $argument, $this->value
60 $comparator->assertEquals($argument, $this->value);
66 if (is_object($argument) xor is_object($this->value)) {
67 if (is_object($argument) && !method_exists($argument, '__toString')) {
74 } elseif (is_numeric($argument) && is_numeric($this->value)) {
76 } elseif (gettype($argument) !== gettype($this->value)) {
80 return $argument == $this->value ? 10 : false;
DLogicalAndToken.php28 foreach ($arguments as $argument) {
29 if (!$argument instanceof TokenInterface) {
30 $argument = new ExactValueToken($argument);
32 $this->tokens[] = $argument;
43 public function scoreArgument($argument) argument
51 $score = $token->scoreArgument($argument);
DObjectStateToken.php54 * @param mixed $argument
58 public function scoreArgument($argument) argument
60 if (is_object($argument) && method_exists($argument, $this->name)) {
61 $actual = call_user_func(array($argument, $this->name));
75 if (is_object($argument) && property_exists($argument, $this->name)) {
76 return $argument->{$this->name} === $this->value ? 8 : false;
DArrayEveryEntryToken.php41 public function scoreArgument($argument) argument
43 if (!$argument instanceof \Traversable && !is_array($argument)) {
48 foreach ($argument as $key => $argumentEntry) {
DStringContainsToken.php33 public function scoreArgument($argument) argument
35 return is_string($argument) && strpos($argument, $this->value) !== false ? 6 : false;
DTypeToken.php47 public function scoreArgument($argument) argument
51 return call_user_func($checker, $argument) ? 5 : false;
54 return $argument instanceof $this->type ? 5 : false;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/
DArgumentsWildcard.php34 foreach ($arguments as $argument) {
35 if (!$argument instanceof Token\TokenInterface) {
36 $argument = new Token\ExactValueToken($argument);
39 $this->tokens[] = $argument;
59 $argument = isset($arguments[$i]) ? $arguments[$i] : null;
60 if (1 >= $score = $token->scoreArgument($argument)) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
DClassCodeGenerator.php105 return array_map(function (Node\ArgumentNode $argument) use ($typeHintReference) {
109 $php .= $argument->isNullable() ? '?' : '';
112 if ($hint = $argument->getTypeHint()) {
116 $php .= ' '.($argument->isPassedByReference() ? '&' : '');
118 $php .= $argument->isVariadic() ? '...' : '';
120 $php .= '$'.$argument->getName();
122 if ($argument->isOptional() && !$argument->isVariadic()) {
123 $php .= ' = '.var_export($argument->getDefault(), true);
/plugin/authssocas/vendor/apereo/phpcas/source/CAS/
DTypeMismatchException.php46 * @param mixed $argument Argument
55 $argument, $argumentName, $type, $message = '', $code = 0 argument
57 if (is_object($argument)) {
58 $foundType = get_class($argument).' object';
60 $foundType = gettype($argument);
/plugin/jplayer/vendor/symfony/process/
DProcessUtils.php35 * @param string $argument The argument that will be escaped
41 public static function escapeArgument($argument) argument
50 if ('' === $argument) {
51 return escapeshellarg($argument);
56 …foreach (preg_split('/(")/', $argument, -1, \PREG_SPLIT_NO_EMPTY | \PREG_SPLIT_DELIM_CAPTURE) as $…
78 return "'".str_replace("'", "'\\''", $argument)."'";
/plugin/directorylist/
Dreadme.md26 ### Path argument
28 The path argument specifies the path which the directorylist plugin will list.
39 ### Ingore argument
41 You can ignore directories or files with the ignore argument.
43 The ignore argument has to be a comma separated [shell pattern](http://www.php.net/manual/en/functi…
45 This argument is optional, the value is empty.
53 ### Recursive argument
57 This argument is optional, the default value is: ``true``.
71 ### Fileorder argument
75 This argument is optional, the default value is: ``asc``.
[all …]
/plugin/asciidocjs/node_modules/constantinople/src/
Dindex.ts26 const spread = toConstant(element.argument);
51 const spread = toConstant(arg.argument);
161 const argument = toConstant(property.argument); constant
162 if (!argument) constant = false;
164 Object.assign(result, argument);
199 const argument = toConstant(expression.argument); constant
205 return -argument;
207 return +argument;
209 return !argument;
211 return ~argument;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/YouTubeAnalytics/
DErrorProto.php26 public $argument; variable in Google\\Service\\YouTubeAnalytics\\ErrorProto
55 public function setArgument($argument) argument
57 $this->argument = $argument;
64 return $this->argument;
/plugin/asciidocjs/node_modules/constantinople/lib/
Dindex.js17 var spread = toConstant(element.argument);
44 var spread = toConstant(arg.argument);
163 var argument = toConstant(property.argument);
164 if (!argument)
168 Object.assign(result_2, argument);
201 var argument = toConstant(expression.argument);
207 return -argument;
209 return +argument;
211 return !argument;
213 return ~argument;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/WorkflowExecutions/
DExecution.php25 public $argument; variable in Google\\Service\\WorkflowExecutions\\Execution
60 public function setArgument($argument) argument
62 $this->argument = $argument;
69 return $this->argument;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
DMethodNode.php99 public function addArgument(ArgumentNode $argument) argument
101 $this->arguments[] = $argument;
190 $argument = '$'.$arg->getName();
193 $argument = '...'.$argument;
196 return $argument;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
DInvalidArgumentHelper.php18 * @param int $argument
24 public static function factory($argument, $type, $value = null) argument
31 $argument,
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Exception/
DInvalidArgumentException.php16 * @param int $argument
22 public static function create($argument, $type, $value = null) argument
29 $argument,
/plugin/asciidocjs/node_modules/acorn/src/
Dlval.js74 let arg = last.argument
81 if (isBinding && last && last.type === "RestElement" && last.argument.type !== "Identifier")
82 this.unexpected(last.argument.start)
96 node.argument = this.parseMaybeAssign(false, refDestructuringErrors)
105 if (allowNonIdent) node.argument = this.type === tt.name ? this.parseIdent() : this.unexpected()
106 …else node.argument = this.type === tt.name || this.type === tt.bracketL ? this.parseBindingAtom() …
209 this.checkLVal(expr.argument, isBinding, checkClashes)
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dlval.js71 let arg = last.argument
78 if (isBinding && last && last.type === "RestElement" && last.argument.type !== "Identifier")
79 this.unexpected(last.argument.start)
93 node.argument = this.parseMaybeAssign(false, refDestructuringErrors)
102 if (allowNonIdent) node.argument = this.type === tt.name ? this.parseIdent() : this.unexpected()
103 …else node.argument = this.type === tt.name || this.type === tt.bracketL ? this.parseBindingAtom() …
206 this.checkLVal(expr.argument, isBinding, checkClashes)
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/doc/
DDocHTML.php79 function getClassDoc($argument) { argument
80 if(is_object($argument) && get_class($argument) == "phpclass")
81 return $this->getClassDocFromClass($argument);
82 elseif(is_string($argument))
83 return $this->getClassDocFromFile($argument);
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
Ddate.rst10 Converts an argument to a date to allow date comparison:
18 The argument must be in one of PHP’s supported `date and time formats`_.
20 You can pass a timezone as the second argument:
28 If no argument is passed, the function returns the current date:

12345678910>>...14