Home
last modified time | relevance | path

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

12345678910>>...47

/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
DBase32.php199 $method = $upper
235 $c0 = static::$method($chunk[1]);
237 $c1 = static::$method($chunk[2]);
239 $c2 = static::$method($chunk[3]);
241 $c3 = static::$method($chunk[4]);
243 $c4 = static::$method($chunk[5]);
245 $c5 = static::$method($chunk[6]);
247 $c6 = static::$method($chunk[7]);
249 $c7 = static::$method($chunk[8]);
266 $c0 = static::$method($chunk[1]);
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
DFile.php240 foreach ($class['methods'] as $method) {
241 if ($method['executableLines'] > 0) {
274 foreach ($trait['methods'] as $method) {
275 if ($method['executableLines'] > 0) {
308 foreach ($class['methods'] as $method) {
309 if ($method['executableLines'] > 0) {
316 foreach ($trait['methods'] as $method) {
317 if ($method['executableLines'] > 0) {
338 foreach ($class['methods'] as $method) {
339 if ($method['executableLines'] > 0 &&
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
DClassCodeGenerator.php57 foreach ($class->getMethods() as $method) {
58 $code .= $this->generateMethod($method)."\n";
65 private function generateMethod(Node\MethodNode $method) argument
68 $method->getVisibility(),
69 $method->isStatic() ? 'static' : '',
70 $method->returnsReference() ? '&':'',
71 $method->getName(),
72 implode(', ', $this->generateArguments($method->getArguments())),
73 $this->getReturnType($method)
75 $php .= $method->getCode()."\n";
[all …]
DClassMirror.php98 foreach ($class->getMethods(ReflectionMethod::IS_ABSTRACT) as $method) {
99 if (false === $method->isProtected()) {
103 $this->reflectMethodToNode($method, $node);
106 foreach ($class->getMethods(ReflectionMethod::IS_PUBLIC) as $method) {
107 if (0 === strpos($method->getName(), '_')
108 && !in_array($method->getName(), self::$reflectableMethods)) {
112 if (true === $method->isFinal()) {
113 $node->addUnextendableMethod($method->getName());
117 $this->reflectMethodToNode($method, $node);
125 foreach ($interface->getMethods() as $method) {
[all …]
/plugin/jsonrpc/
DIJR_Server.php14 var $method; variable in IJR_Server
80 private function callClassMethod($method, $args) argument
82 $method = substr($method, 5);
83 if (!method_exists($this, $method)) {
84 …return new IJR_Error(-32601, 'server error. requested class method "'.$method.'" does not exist.');
86 return call_user_func_array(array(&$this,$method),$args);
90 private function callPlugin($pluginname, $callback, $method, $args) argument
93 list($pluginname, $callback) = explode(':', substr($method, 7), 2);
106 private function callFunction($method, $args) argument
108 if (!function_exists($method))
[all …]
/plugin/authgoogle/google/service/
DGoogle_ServiceResource.php73 $method = $this->methods[$name];
104 if (!isset($method['parameters'])) {
105 $method['parameters'] = array();
108 $method['parameters'] = array_merge($method['parameters'], $this->stackParameters);
110 if ($key != 'postBody' && ! isset($method['parameters'][$key])) {
114 if (isset($method['parameters'])) {
115 foreach ($method['parameters'] as $paramName => $paramSpec) {
131 if (! isset($method['id'])) {
132 $method['id'] = $method['rpcMethod'];
136 if (! isset($method['path'])) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/
DDashboard.php71 foreach ($class['methods'] as $methodName => $method) {
77 $method['coverage'],
78 $method['ccn'],
81 str_replace($baseLink, '', $method['link']),
145 foreach ($class['methods'] as $methodName => $method) {
146 if ($method['coverage'] == 0) {
148 } elseif ($method['coverage'] == 100) {
151 $key = floor($method['coverage'] / 10) * 10;
189 foreach ($class['methods'] as $methodName => $method) {
190 if ($method['coverage'] < $this->highLowerBound) {
[all …]
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DRequest.php20 private $method; variable in GuzzleHttp\\Psr7\\Request
29 * @param string $method HTTP method
36 string $method, argument
42 $this->assertMethod($method);
47 $this->method = strtoupper($method);
94 return $this->method;
97 public function withMethod($method): RequestInterface argument
99 $this->assertMethod($method);
101 $new->method = strtoupper($method);
151 * @param mixed $method
[all …]
/plugin/jplayer/vendor/symfony/process/Tests/
DProcessFailedExceptionTest.php29 ->method('isSuccessful')
53 ->method('isSuccessful')
57 ->method('getOutput')
61 ->method('getErrorOutput')
65 ->method('getExitCode')
69 ->method('getExitCodeText')
73 ->method('isOutputDisabled')
77 ->method('getWorkingDirectory')
101 ->method('isSuccessful')
105 ->method('getOutput');
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
DGenerator.php215 foreach ($methods as $method) {
216 if (!preg_match('~[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*~', $method)) {
220 $method
385 foreach ($reflector->getMethods() as $method) {
386 if ($method->isAbstract() && !in_array($method->getName(), $methods)) {
387 $methods[] = $method->getName();
613 foreach ($_methods as $method) {
614 $nameStart = strpos($method, ' ') + 1;
615 $nameEnd = strpos($method, '(');
616 $name = substr($method, $nameStart, $nameEnd - $nameStart);
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DRequest.php18 private $method; variable in GuzzleHttp\\Psr7\\Request
27 * @param string $method HTTP method
34 $method, argument
40 $this->assertMethod($method);
45 $this->method = strtoupper($method);
91 return $this->method;
94 public function withMethod($method) argument
96 $this->assertMethod($method);
98 $new->method = strtoupper($method);
146 private function assertMethod($method) argument
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prediction/
DCallPrediction.php46 * @param MethodProphecy $method
50 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) argument
57 $method->getMethodName(),
69 $method->getMethodName(),
70 $method->getArgumentsWildcard(),
71 $method->getMethodName(),
73 ), $method);
82 $method->getMethodName(),
83 $method->getArgumentsWildcard()
84 ), $method);
DCallTimesPrediction.php50 * @param MethodProphecy $method
54 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) argument
61 $method->getMethodName(),
73 $method->getMethodName(),
74 $method->getArgumentsWildcard(),
87 $method->getMethodName(),
88 $method->getArgumentsWildcard(),
89 $method->getMethodName(),
100 $method->getMethodName(),
101 $method->getArgumentsWildcard()
[all …]
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
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);
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DDefinitionCacheFactory.php66 $method = $config->get('Cache.DefinitionImpl');
67 if ($method === null) {
70 if (!empty($this->caches[$method][$type])) {
71 return $this->caches[$method][$type];
73 if (isset($this->implementations[$method]) &&
74 class_exists($class = $this->implementations[$method], false)) {
77 if ($method != 'Serializer') {
78 … trigger_error("Unrecognized DefinitionCache $method, using Serializer instead", E_USER_WARNING);
88 $this->caches[$method][$type] = $cache;
89 return $this->caches[$method][$type];
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/
DStreamClient.php20 * @param string $method
31 $method = 'POST' argument
34 $method = strtoupper($method);
38 if ($method === 'GET' && !empty($requestBody)) {
42 if (!isset($extraHeaders['Content-Type']) && $method === 'POST' && is_array($requestBody)) {
60 $context = $this->generateStreamContext($requestBody, $extraHeaders, $method);
76 private function generateStreamContext($body, $headers, $method) argument
81 'method' => $method,
DCurlClient.php57 * @param string $method
68 $method = 'POST' argument
71 $method = strtoupper($method);
75 if ($method === 'GET' && !empty($requestBody)) {
79 if (!isset($extraHeaders['Content-Type']) && $method === 'POST' && is_array($requestBody)) {
90 if ($method === 'POST' || $method === 'PUT') {
95 if ($method === 'PUT') {
103 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
/plugin/asciidocjs/node_modules/regenerator-runtime/
Druntime.js112 ["next", "throw", "return"].forEach(function(method) { argument
113 prototype[method] = function(arg) {
114 return this._invoke(method, arg);
151 function invoke(method, arg, resolve, reject) { argument
152 var record = tryCatch(generator[method], generator, arg);
192 function enqueue(method, arg) { argument
195 invoke(method, arg, resolve, reject);
249 return function invoke(method, arg) { argument
255 if (method === "throw") {
264 context.method = method;
[all …]
/plugin/findologicxmlexport/vendor/jms/metadata/tests/
DMetadataFactoryTest.php21 ->method('loadMetadataForClass')
29 ->method('loadMetadataForClass')
49 ->method('loadMetadataForClass')
57 ->method('loadMetadataForClass')
77 ->method('loadMetadataForClass')
118 ->method('loadMetadataForClass')
127 ->method('load')
133 ->method('put')
148 ->method('loadMetadataForClass')
163 ->method('loadMetadataForClass')
[all …]
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Client/
DStreamClient.php20 * @param string $method
31 $method = 'POST' argument
34 $method = strtoupper($method);
38 if ($method === 'GET' && !empty($requestBody)) {
42 if (!isset($extraHeaders['Content-Type']) && $method === 'POST' && is_array($requestBody)) {
60 $context = $this->generateStreamContext($requestBody, $extraHeaders, $method);
79 private function generateStreamContext($body, $headers, $method) argument
84 'method' => $method,
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
DClassNode.php103 public function addMethod(MethodNode $method, $force = false) argument
105 if (!$this->isExtendable($method->getName())){
107 'Method `%s` is not extendable, so can not be added.', $method->getName()
109 … throw new MethodNotExtendableException($message, $this->getParentClass(), $method->getName());
112 if ($force || !isset($this->methods[$method->getName()])) {
113 $this->methods[$method->getName()] = $method;
162 * @param string $method
165 public function isExtendable($method) argument
167 return !in_array($method, $this->unextendableMethods);
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
DFlickr.php78 public function request($path, $method = 'GET', $body = null, array $extraHeaders = array()) argument
94 … 'Authorization' => $this->buildAuthorizationHeaderForAPIRequest($method, $uri, $token, $body)
98 return $this->httpClient->retrieveResponse($uri, $body, $headers, $method);
101 public function requestRest($path, $method = 'GET', $body = null, array $extraHeaders = array()) argument
103 return $this->request($path, $method, $body, $extraHeaders);
106 … public function requestXmlrpc($path, $method = 'GET', $body = null, array $extraHeaders = array()) argument
110 return $this->request($path, $method, $body, $extraHeaders);
113 public function requestSoap($path, $method = 'GET', $body = null, array $extraHeaders = array()) argument
117 return $this->request($path, $method, $body, $extraHeaders);
120 public function requestJson($path, $method = 'GET', $body = null, array $extraHeaders = array()) argument
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/
DMockObjectTest.php19 ->method('doSomething');
28 ->method('doSomething')
41 ->method('doSomethingElse')
53 $mock->method('doSomethingElse')
63 ->method('doSomething');
74 ->method('doSomething');
86 ->method('doSomething');
98 ->method('doSomething');
111 ->method('doSomething');
123 ->method('doSomething');
[all …]
/plugin/webdav/vendor/sabre/http/lib/
DRequest.php25 protected $method; variable in Sabre\\HTTP\\Request
37 * @param string $method
42 function __construct($method = null, $url = null, array $headers = null, $body = null) { argument
44 if (is_array($method)) {
47 if (!is_null($method)) $this->setMethod($method);
61 return $this->method;
68 * @param string $method
71 function setMethod($method) { argument
73 $this->method = $method;
/plugin/davcal/vendor/sabre/http/lib/
DRequest.php25 protected $method; variable in Sabre\\HTTP\\Request
37 * @param string $method
42 function __construct($method = null, $url = null, array $headers = null, $body = null) { argument
44 if (is_array($method)) {
47 if (!is_null($method)) $this->setMethod($method);
61 return $this->method;
68 * @param string $method
71 function setMethod($method) { argument
73 $this->method = $method;

12345678910>>...47