Home
last modified time | relevance | path

Searched refs:args (Results 376 – 400 of 559) sorted by last modified time

1...<<11121314151617181920>>...23

/plugin/bureaucracy-au/helper/
H A Dfieldusers.php15 * @param array $args The tokenized definition, only split at spaces
17 public function initialize($args) { argument
18 parent::initialize($args);
H A Dfieldselect.php18 * @param array $args The tokenized definition, only split at spaces
20 public function initialize($args) { argument
21 $this->init($args);
22 $this->opt['args'] = array_map('trim', explode('|',array_shift($args)));
23 $this->standardArgs($args);
H A Dfieldtextbox.php16 * @param array $args The tokenized definition, only split at spaces
18 function initialize($args) { argument
19 parent::initialize($args);
H A Dfieldtime.php14 * @param array $args The tokenized definition, only split at spaces
16 public function initialize($args) { argument
17 parent::initialize($args);
H A Dfield.php52 public function initialize($args) { argument
53 $this->init($args);
54 $this->standardArgs($args);
69 * @param array $args array with the definition
71 protected function init(&$args) { argument
72 if(count($args) < $this->mandatory_args){
74 hsc($args[1])), -1);
81 if (count($args) === 0) break;
82 $this->opt[$key] = array_shift($args);
92 protected function standardArgs($args) { argument
[all …]
H A Dfieldradio.php18 * @param array $args The tokenized definition, only split at spaces
20 public function initialize($args) { argument
21 $this->init($args);
22 $this->opt['args'] = array_filter(array_map('trim', explode('|',array_shift($args))));
23 $this->standardArgs($args);
H A Dfieldtextarea.php15 public function initialize($args) { argument
16 parent::initialize($args);
H A Dfieldusemailtemplate.php14 * @param array $args The tokenized definition, only split at spaces
16 function initialize($args) { argument
17 if(count($args) < 2){
18 msg(sprintf($this->getLang('e_missingargs'), hsc($args[0]),
19 hsc($args[1])), -1);
24 $this->opt = array_combine(array('cmd', 'template'), $args);
H A Dfielduser.php15 * @param array $args The tokenized definition, only split at spaces
17 public function initialize($args) { argument
18 parent::initialize($args);
H A Dfieldwiki.php16 * @param array $args The tokenized definition, only split at spaces
18 public function initialize($args) { argument
19 parent::initialize($args);
/plugin/emoji/script/
H A Djquery.textcomplete.js36 var args = Array.prototype.slice.call(arguments);
49 args.shift();
50 completer[strategies].apply(completer, args);
111 queuedArgsToReplay = args;
116 args.unshift(function replayOrFree() {
131 func.apply(this, args);
275 this.$el.trigger(eventName, args);
948 var timeout, args, context, timestamp, result;
955 result = func.apply(context, args);
956 context = args = null;
[all …]
/plugin/emoji/emojione/
H A DEmojione.php27 public static function __callStatic($method, $args) argument
39 return call_user_func_array(array($client, $method), $args);
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/_fixture/
H A DFunctionCallback.php4 $args = func_get_args();
6 if ($args == ['foo', 'bar']) {
H A DMethodCallback.php6 $args = func_get_args();
8 if ($args == ['foo', 'bar']) {
15 $args = func_get_args();
17 if ($args == ['foo', 'bar']) {
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DFormErrorHandlerTest.php276 protected function invokeMethod($object, $method, array $args = []) argument
281 return $reflectionMethod->invokeArgs($object, $args);
/plugin/findologicxmlexport/vendor/twig/twig/ext/twig/
H A Dtwig.c196 zval ***args = NULL; in TWIG_CALL_USER_FUNC_ARRAY() local
230 fci.params = args; in TWIG_CALL_USER_FUNC_ARRAY()
238 if (args) { in TWIG_CALL_USER_FUNC_ARRAY()
388 zval **args[1]; in TWIG_CALL_S() local
410 fci.params = args; in TWIG_CALL_S()
441 zval **args[2]; in TWIG_CALL_ZZ() local
446 args[0] = &arg1; in TWIG_CALL_ZZ()
447 args[1] = &arg2; in TWIG_CALL_ZZ()
462 fci.params = args; in TWIG_CALL_ZZ()
544 va_list args; in TWIG_RUNTIME_ERROR() local
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/
H A DEscaperNodeVisitor.php155 …$args = new Node([new ConstantExpression((string) $type, $line), new ConstantExpression(null, $lin…
157 return new FilterExpression($node, $name, $args, $line);
H A DSafeAnalysisNodeVisitor.php100 $args = $node->getNode('arguments');
102 $safe = $filter->getSafe($args);
113 $args = $node->getNode('arguments');
116 $this->setSafe($node, $function->getSafe($args));
H A DSandboxNodeVisitor.php125 $args = $node->getNode($name);
126 foreach ($args as $name => $_) {
127 $this->wrapNode($args, $name);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DIntegrationTest.php282 public function __call($name, $args) argument
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DREADME.md196 $user->setName('everzet')->will(function ($args, $user) {
201 $user->setName('everzet')->will(function ($args) use ($user) {
260 $user->setName(Argument::type('string'))->will(function ($args) {
261 $this->getName()->willReturn($args[0]);
265 $user->setName(Argument::type('string'))->will(function ($args, $user) {
266 $user->getName()->willReturn($args[0]);
271 $user->getName()->willReturn($args[0]);
287 $user->setName(Argument::type('string'))->will(function ($args) {
288 $this->getName()->willReturn($args[0]);
293 $user->getName()->willReturn($args[0]);
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/
H A DEventDispatcherTest.php225 public function __call($method, array $args = []) argument
228 $this->expected[] = [$method, $args];
233 $this->actual[] = [$method, $args];
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DIndexedReader.php111 * @param array $args
115 public function __call($method, $args) argument
117 return call_user_func_array(array($this->delegate, $method), $args);
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DExpressionParser.php371 $args = $this->parseArguments();
372 if (\count($args) < 1) {
376 …return new BlockReferenceExpression($args->getNode(0), \count($args) > 1 ? $args->getNode(1) : nul…
379 if (\count($args) < 2) {
383 …return new GetAttrExpression($args->getNode(0), $args->getNode(1), \count($args) > 2 ? $args->getN…
531 $args = [];
536 if (!empty($args)) {
570 $args[$name] = $value;
573 $args[] = $value;
575 $args[$name] = $value;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Util/
H A DGetoptTest.php15 $args = [
20 $actual = PHPUnit_Util_Getopt::getopt($args, '', ['colors==']);
39 $args = [
44 $actual = PHPUnit_Util_Getopt::getopt($args, 'v');

1...<<11121314151617181920>>...23