/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/ |
H A D | Base32.php | 199 $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/ |
H A D | File.php | 508 $method['coverage'] = ($method['executedLines'] / 511 $method['coverage'] = 100; 514 $method['crap'] = $this->crap( 515 $method['ccn'], 516 $method['coverage'] 542 $method['coverage'] = ($method['executedLines'] / 545 $method['coverage'] = 100; 548 $method['crap'] = $this->crap( 549 $method['ccn'], 550 $method['coverage'] [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/ |
H A D | ClassCodeGenerator.php | 57 foreach ($class->getMethods() as $method) { 58 $code .= $this->generateMethod($method)."\n"; 68 $method->getVisibility(), 69 $method->isStatic() ? 'static' : '', 70 $method->returnsReference() ? '&':'', 71 $method->getName(), 73 $this->getReturnType($method) 75 $php .= $method->getCode()."\n"; 86 if ($method->hasReturnType()) { 87 return $method->hasNullableReturnType() [all …]
|
H A D | ClassMirror.php | 99 if (false === $method->isProtected()) { 103 $this->reflectMethodToNode($method, $node); 107 if (0 === strpos($method->getName(), '_') 112 if (true === $method->isFinal()) { 117 $this->reflectMethodToNode($method, $node); 125 foreach ($interface->getMethods() as $method) { 126 $this->reflectMethodToNode($method, $node); 132 $node = new Node\MethodNode($method->getName()); 134 if (true === $method->isProtected()) { 138 if (true === $method->isStatic()) { [all …]
|
/plugin/jsonrpc/ |
H A D | IJR_Server.php | 14 var $method; variable in IJR_Server 80 private function callClassMethod($method, $args) argument 82 $method = substr($method, 5); 83 if (!method_exists($this, $method)) { 106 private function callFunction($method, $args) argument 108 if (!function_exists($method)) 112 return call_user_func_array($method,$args); 122 $method = $this->callbacks[$methodname]; 127 if (substr($method, 0, 5) == 'this:') 131 elseif (substr($method, 0, 7) == 'plugin:') [all …]
|
/plugin/authgoogle/google/service/ |
H A D | Google_ServiceResource.php | 73 $method = $this->methods[$name]; 104 if (!isset($method['parameters'])) { 105 $method['parameters'] = array(); 108 $method['parameters'] = array_merge($method['parameters'], $this->stackParameters); 114 if (isset($method['parameters'])) { 131 if (! isset($method['id'])) { 132 $method['id'] = $method['rpcMethod']; 136 if (! isset($method['path'])) { 137 $method['path'] = $method['restPath']; 144 if (isset($method['mediaUpload'])) { [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/ |
H A D | Dashboard.php | 77 $method['coverage'], 78 $method['ccn'], 146 if ($method['coverage'] == 0) { 148 } elseif ($method['coverage'] == 100) { 151 $key = floor($method['coverage'] / 10) * 10; 219 list($class, $method) = explode('::', $methodName); 225 $method, 250 $method['ccn'] > 1) { 257 $methodRisks[$key] = $method['crap']; 280 list($class, $method) = explode('::', $methodName); [all …]
|
/plugin/jplayer/vendor/symfony/process/Tests/ |
H A D | ProcessFailedExceptionTest.php | 29 ->method('isSuccessful') 53 ->method('isSuccessful') 57 ->method('getOutput') 61 ->method('getErrorOutput') 65 ->method('getExitCode') 69 ->method('getExitCodeText') 73 ->method('isOutputDisabled') 101 ->method('isSuccessful') 105 ->method('getOutput'); 108 ->method('getErrorOutput'); [all …]
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
H A D | Request.php | 18 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/phpunit/phpunit-mock-objects/src/Framework/MockObject/ |
H A D | Generator.php | 220 $method 386 if ($method->isAbstract() && !in_array($method->getName(), $methods)) { 622 $method, 730 $methodReflections[$method] = $typeClass->getMethod($method); 861 $method = ''; 988 if ($method->isPrivate()) { 996 if ($method->isStatic()) { 1021 $method->getName(), 1029 $method->isStatic(), 1119 $method->isFinal() || [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prediction/ |
H A D | CallPrediction.php | 46 * @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);
|
H A D | CallTimesPrediction.php | 50 * @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/ |
H A D | Overload.php | 21 * Map the class name of the PhpCss\Ast\Node instance to a method name, validate if it exists and return 29 $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( [all...] |
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/ |
H A D | StreamClient.php | 20 * @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,
|
H A D | CurlClient.php | 57 * @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/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Client/ |
H A D | StreamClient.php | 20 * @param string $method 31 $method = 'POST' argument 33 // Normalize method name 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' [all...] |
H A D | CurlClient.php | 57 * @param string $method 68 $method = 'POST' argument 70 // Normalize method name 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 [all...] |
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ |
H A D | ClassNode.php | 103 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/findologicxmlexport/vendor/jms/metadata/tests/ |
H A D | MetadataFactoryTest.php | 21 ->method('loadMetadataForClass') 29 ->method('loadMetadataForClass') 49 ->method('loadMetadataForClass') 57 ->method('loadMetadataForClass') 127 ->method('load') 133 ->method('put') 193 ->method('getAllClassNames') 220 ->method('load') 228 ->method('put') 261 ->method('load') [all …]
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/ |
H A D | Flickr.php | 78 public function request($path, $method = 'GET', $body = null, array $extraHeaders = array()) argument 81 $uri->addToQuery('method', $path); 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, 120 requestJson($path, $method = 'GET', $body = null, array $extraHeaders = array()) global() argument 127 requestPhp($path, $method = 'GET', $body = null, array $extraHeaders = array()) global() argument [all...] |
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/ |
H A D | MockObjectTest.php | 19 ->method('doSomething'); 28 ->method('doSomething') 550 ->method('foo') 568 ->method('foo') 701 ->method('right') 745 ->method('right') 768 ->method('right') 821 ->method('bar') 842 ->method('bar') 871 ->method('bar') [all …]
|
/plugin/webdav/vendor/sabre/http/lib/ |
H A D | Request.php | 25 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/ |
H A D | Request.php | 25 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/findologicxmlexport/vendor/twig/twig/lib/Twig/Function/ |
H A D | Method.php | 29 protected $method; variable in Twig_Function_Method 31 public function __construct(ExtensionInterface $extension, $method, array $options = []) argument 33 $options['callable'] = [$extension, $method]; 38 $this->method = $method; 43 …eturn sprintf('$this->env->getExtension(\'%s\')->%s', \get_class($this->extension), $this->method);
|
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/Filter/ |
H A D | Method.php | 28 protected $method; variable in Twig_Filter_Method 30 public function __construct(ExtensionInterface $extension, $method, array $options = []) argument 32 $options['callable'] = [$extension, $method]; 37 $this->method = $method; 42 …eturn sprintf('$this->env->getExtension(\'%s\')->%s', \get_class($this->extension), $this->method);
|