Home
last modified time | relevance | path

Searched refs:method (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/template/twigstarter/vendor/twig/twig/src/Extension/
DAttributeExtension.php89 foreach ($reflectionClass->getMethods() as $method) {
90 foreach ($method->getAttributes(AsTwigFilter::class) as $reflectionAttribute) {
94 … $callable = new TwigFilter($attribute->name, [$reflectionClass->name, $method->getName()], [
96 … 'needs_environment' => $attribute->needsEnvironment ?? $this->needsEnvironment($method),
99 'is_variadic' => $method->isVariadic(),
107 … if ($callable->getMinimalNumberOfRequiredArguments() > $method->getNumberOfParameters()) {
108 …ined.', $reflectionClass->getName(), $method->getName(), $callable->getMinimalNumberOfRequiredArgu…
114 foreach ($method->getAttributes(AsTwigFunction::class) as $reflectionAttribute) {
118 … $callable = new TwigFunction($attribute->name, [$reflectionClass->name, $method->getName()], [
120 … 'needs_environment' => $attribute->needsEnvironment ?? $this->needsEnvironment($method),
[all …]
DCoreExtension.php656 public static function round($value, $precision = 0, $method = 'common') argument
660 if ('common' === $method) {
664 if ('ceil' !== $method && 'floor' !== $method) {
668 return $method($value * 10 ** $precision) / 10 ** $precision;
1358 …public static function callMacro(Template $template, string $method, array $args, int $lineno, arr… argument
1360 if (!method_exists($template, $method)) {
1363 if (method_exists($parent, $method)) {
1364 return $parent->$method(...$args);
1368 …imeError(\sprintf('Macro "%s" is not defined in template "%s".', substr($method, \strlen('macro_')…
1371 return $template->$method(...$args);
[all …]
/template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
H A DOverload.php29 $method = $prefix.substr(str_replace('\\', '', get_class($object)), 9); variable in PhpCss\\Ast\\Visitor\\Overload
30 if (method_exists($this, $method)) {
31 return [$this, $method];
43 if ($method = $this->getMethodByClass($astNode, 'visitEnter')) {
44 return $method($astNode);
55 if ($method = $this->getMethodByClass($astNode)) {
56 $method($astNode);
67 if ($method = $this->getMethodByClass($astNode, 'visitLeave')) {
68 $method($astNode);
/template/kajukkk/js/
Dsendsns.js12 method:'popup', property
19 method:'popup', property
26 method:'popup', property
57 method:'web2app', property
68 method:'web2app', property
82 switch(o.method)
/template/twigstarter/vendor/twig/twig/src/Sandbox/
DSecurityPolicy.php117 public function checkMethodAllowed($obj, $method): void argument
124 $method = strtolower($method);
126 if ($obj instanceof $class && \in_array($method, $methods, true)) {
134 …sprintf('Calling "%s" method on a "%s" object is not allowed.', $method, $class), $class, $method);
DSecurityPolicyInterface.php32 * @param string $method
36 public function checkMethodAllowed($obj, $method): void; argument
/template/strap/ComboStrap/
H A DHttpRequest.php23 private string $method = self::GET; variable in ComboStrap\\HttpRequest
74 $this->method = self::POST;
120 switch ($this->method) {
133 throw new ExceptionRuntime("The method ({$this->method}) is not implemented");
151 $this->method = self::GET;
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverDispatcher.php66 * @param mixed $method
70 public function dispatch($method, $arguments) argument
73 call_user_func_array([$listener, $method], $arguments);
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DCustomWebDriverCommand.php20 * @param string $method
23 public function __construct($session_id, $url, $method, array $parameters) argument
25 $this->setCustomRequestParameters($url, $method);
H A DRemoteTargetLocator.php145 $method = new RemoteExecuteMethod($this->driver);
147 …return new RemoteWebElement($method, JsonWireCompat::getElement($response), $this->isW3cCompliant);
/template/m1/
Dscript.js197 $.sidr = function( method ) { argument
199 if ( methods[method] ) {
200 return methods[method].apply( this, Array.prototype.slice.call( arguments, 1 ));
202 else if ( typeof method === 'function' || typeof method === 'string' || ! method ) {
206 $.error( 'Method ' + method + ' does not exist on jQuery.sidr' );
/template/strap/vendor/symfony/process/
H A DCHANGELOG.md28 * added `Process::getLastOutputTime()` method
36 * added the `Process::waitUntil()` method to wait for the process only for a
42 * added the `Process::isTtySupported()` method that allows to check for TTY support
52 * added a second `array $env = []` argument to the `start()` method of the
54 * the `ProcessUtils::escapeArgument()` method has been removed
74 * deprecated the `ProcessUtils::escapeArgument()` method
84 * added the convenience method "mustRun"
/template/strap/vendor/php-webdriver/webdriver/lib/Support/Events/
H A DEventFiringWebDriverNavigation.php123 * @param mixed $method
126 protected function dispatch($method, ...$arguments) argument
132 $this->dispatcher->dispatch($method, $arguments);
H A DEventFiringWebElement.php384 * @param mixed $method
387 protected function dispatch($method, ...$arguments) argument
393 $this->dispatcher->dispatch($method, $arguments);
/template/twigstarter/vendor/twig/twig/src/Node/
DCheckToStringNode.php39 $method = $this->getAttribute('spread') ? 'ensureSpreadAllowed' : 'ensureToStringAllowed';
41 ->raw('$this->sandbox->'.$method.'(')
/template/adoradark/
DCHANGELOG.md5 Go back to old method as users prefer to install via extension manager.
9 Move repo to update-proof install method.
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
DMethodCallExpression.php22 …public function __construct(AbstractExpression $node, string $method, ArrayExpression $arguments, … argument
26 …parent::__construct(['node' => $node, 'arguments' => $arguments], ['method' => $method, 'safe' => …
DBlockReferenceExpression.php70 private function compileTemplateCall(Compiler $compiler, string $method): Compiler argument
84 $compiler->raw(\sprintf('->unwrap()->%s', $method));
/template/bootstrap3/compat/inc/Menu/Item/
DAbstractItem.php36 protected $method = 'get'; variable in dokuwiki\\Menu\\Item\\AbstractItem
182 $this->method,
247 'method' => $this->method,
/template/gtopia/
DTwitterAPIExchange.php223 * @param string $method
228 private function buildBaseString($baseURI, $method, $params) argument
238 return $method . "&" . rawurlencode($baseURI) . '&' . rawurlencode(implode('&', $return));
/template/strap/resources/library/combo/dist/
H A Dcombo.min.js1method=a,n.arg=o;;){var i=n.delegate;if(i){var l=S(i,n);if(l){if(l===y)continue;return l}}if("next… property
/template/twigstarter/vendor/twig/twig/src/TokenParser/
DGuardTokenParser.php32 $method = 'get'.$typeToken->getValue();
43 $exists = null !== $this->parser->getEnvironment()->$method($name);
/template/strap/vendor/php-webdriver/webdriver/
H A DCHANGELOG.md13 - Docs: Extend `findElement()`/`findElements()` method documentation to better explain XPath behavi…
18 - `RemoteWebElement::getDomProperty()` method to read JavaScript properties of an element (like the…
41 - Deprecate `ChromeDriver::startSession`. However, the method was supposed to be used only internal…
77 - Reimplement element `equals()` method to be working in W3C mode.
87 - Accept array as possible input to `sendKeys()` method. (Unintentional BC break in 1.8.0.)
93 - `getStatus()` method of `RemoteWebDriver` to get information about remote-end readiness to create…
94 - `takeElementScreenshot()` method of `RemoteWebElement` to do the obvious - take screenshot of the…
142 - Add a `visibilityOfAnyElementsLocated()` method to `WebDriverExpectedCondition`.
150 …Cookie` value object instead of an array when passed to to `addCookie()` method of `WebDriverOptio…
153 - Deprecate `WebDriverCapabilities::isJavascriptEnabled()` method.
[all …]
/template/starterpjax/
Djquery.pjax.js126 type: form.method.toUpperCase(),
450 method = options.type ? options.type.toUpperCase() : 'GET'
453 method: method === 'GET' ? 'GET' : 'POST', property
458 if (method !== 'GET' && method !== 'POST') {
462 value: method.toLowerCase()
/template/templar/js/
Dbootstrap-collapse.js95 , transition: function (method, startEvent, completeEvent) { argument
109 this.$element[method]('in')

12345678910>>...13