Home
last modified time | relevance | path

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

12345678910>>...12

/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.php88 public function checkMethodAllowed($obj, $method) argument
95 $method = strtr($method, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz');
98 $allowed = \in_array($method, $methods);
106 …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); 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/twigstarter/vendor/twig/twig/src/Extension/
DCoreExtension.php578 * @param string $method The method to use for rounding
582 function twig_round($value, $precision = 0, $method = 'common') argument
586 if ('common' === $method) {
590 if ('ceil' !== $method && 'floor' !== $method) {
594 return $method($value * 10 ** $precision) / 10 ** $precision;
1156 function twig_call_macro(Template $template, string $method, array $args, int $lineno, array $conte… argument
1158 if (!method_exists($template, $method)) {
1161 if (method_exists($parent, $method)) {
1162 return $parent->$method(...$args);
1166 …timeError(sprintf('Macro "%s" is not defined in template "%s".', substr($method, \strlen('macro_')…
[all …]
DSandboxExtension.php80 public function checkMethodAllowed($obj, $method, int $lineno = -1, Source $source = null) argument
84 $this->policy->checkMethodAllowed($obj, $method);
/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);
H A DEventFiringWebDriver.php387 * @param mixed $method
390 protected function dispatch($method, ...$arguments) argument
396 $this->dispatcher->dispatch($method, $arguments);
/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/bootstrap3/compat/inc/Menu/Item/
DAbstractItem.php36 protected $method = 'get'; variable in dokuwiki\\Menu\\Item\\AbstractItem
182 $this->method,
247 'method' => $this->method,
/template/twigstarter/vendor/twig/twig/src/Node/Expression/
DMethodCallExpression.php18 …public function __construct(AbstractExpression $node, string $method, ArrayExpression $arguments, … argument
20 …parent::__construct(['node' => $node, 'arguments' => $arguments], ['method' => $method, 'safe' => …
DBlockReferenceExpression.php52 private function compileTemplateCall(Compiler $compiler, string $method): Compiler argument
68 $compiler->raw(sprintf('->%s', $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/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')
/template/mikio/inc/stemmechanics/lesserphp/
H A DREADME.md20 The `compile` method compiles a string of LESS code to CSS.
30 The `compileFile` method reads and compiles a file. It will either return the
38 The `checkedCompile` method is like `compileFile`, but it only compiles if the output

12345678910>>...12