/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/ |
H A D | Test.php | 71 $methodName 107 $methodName 641 $methodName 672 $methodName, 689 $methodName 767 $methodName 795 $methodName 818 $methodName, 888 $methodName 928 if (isset($methodName[0]) && $methodName[0] == '<') { [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ |
H A D | ObjectProphecy.php | 149 $methodName = $methodProphecy->getMethodName(); 151 if (!isset($this->methodProphecies[$methodName])) { 152 $this->methodProphecies[$methodName] = array(); 161 * @param null|string $methodName 165 public function getMethodProphecies($methodName = null) argument 167 if (null === $methodName) { 175 return $this->methodProphecies[$methodName]; 181 * @param string $methodName 197 * @param string $methodName 235 * @param string $methodName [all …]
|
H A D | MethodProphecy.php | 30 private $methodName; variable in Prophecy\\Prophecy\\MethodProphecy 42 * @param string $methodName 47 public function __construct(ObjectProphecy $objectProphecy, $methodName, $arguments = null) argument 50 if (!method_exists($double, $methodName)) { 52 'Method `%s::%s()` is not defined.', get_class($double), $methodName 53 ), get_class($double), $methodName, $arguments); 57 $this->methodName = $methodName; 59 $reflectedMethod = new \ReflectionMethod($double, $methodName); 65 $methodName 175 … "The method \"$this->methodName\" has a void return type, and so cannot return anything", [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/ |
H A D | Dashboard.php | 73 $methodName = $className . '::' . $methodName; 82 $methodName 192 $key = $className . '::' . $methodName; 194 $key = $methodName; 219 list($class, $method) = explode('::', $methodName); 224 $methodName, 252 $key = $className . '::' . $methodName; 254 $key = $methodName; 279 foreach ($methodRisks as $methodName => $crap) { 280 list($class, $method) = explode('::', $methodName); [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Call/ |
H A D | CallCenter.php | 49 * @param string $methodName 56 public function makeCall(ObjectProphecy $prophecy, $methodName, array $arguments) argument 77 if ('__destruct' === $methodName || 0 == count($prophecy->getMethodProphecies())) { 85 foreach ($prophecy->getMethodProphecies($methodName) as $methodProphecy) { 120 $methodName, $arguments, $returnValue, $exception, $file, $line 134 * @param string $methodName 139 public function findCalls($methodName, ArgumentsWildcard $wildcard) argument 143 return $methodName === $call->getMethodName() 150 private function createUnexpectedCallException(ObjectProphecy $prophecy, $methodName, argument 190 $classname, $methodName, $argstring, implode("\n", $expected) [all …]
|
H A D | Call.php | 24 private $methodName; variable in Prophecy\\Call\\Call 35 * @param string $methodName 42 public function __construct($methodName, array $arguments, $returnValue, argument 45 $this->methodName = $methodName; 64 return $this->methodName;
|
/plugin/sequencediagram/bower_components/lodash/test/ |
H A D | test-fp.js | 342 var key = _.get(mapping.remap, methodName, methodName), 706 var func = fp[methodName], 721 var func = fp[methodName]; 735 var func = fp[methodName]; 749 var func = fp[methodName]; 765 var func = fp[methodName]; 836 var func = fp[methodName]; 850 var func = fp[methodName]; 929 var func = fp[methodName], 987 var func = fp[methodName]; [all …]
|
H A D | test.js | 1355 var func = _[methodName]; 1470 var func = _[methodName]; 2220 func = _[methodName]; 4134 var func = _[methodName], 5883 })[methodName]; 5940 })[methodName]; 6025 })[methodName]; 21313 })[methodName]; 21359 isAddSub = methodName == 'add' || methodName == 'subtract'; 26840 else if (methodName == 'pull' || methodName == 'pullAll') { [all …]
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ |
H A D | MethodNotExtendableException.php | 7 private $methodName; variable in Prophecy\\Exception\\Doubler\\MethodNotExtendableException 14 * @param string $methodName 16 public function __construct($message, $className, $methodName) argument 20 $this->methodName = $methodName; 30 return $this->methodName;
|
H A D | ReturnByReferenceException.php | 17 private $methodName; variable in Prophecy\\Exception\\Doubler\\ReturnByReferenceException 22 * @param string $methodName 24 public function __construct($message, $classname, $methodName) argument 29 $this->methodName = $methodName; 39 return $this->methodName;
|
H A D | MethodNotFoundException.php | 24 private $methodName; variable in Prophecy\\Exception\\Doubler\\MethodNotFoundException 34 * @param string $methodName 37 public function __construct($message, $classname, $methodName, $arguments = null) argument 42 $this->methodName = $methodName; 53 return $this->methodName;
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/NamingConventions/ |
H A D | CamelCapsFunctionNameSniff.php | 119 $methodName = $phpcsFile->getDeclarationName($stackPtr); 120 if ($methodName === null) { 126 $errorData = array($className.'::'.$methodName); 129 if (preg_match('|^__[^_]|', $methodName) !== 0) { 130 $magicPart = strtolower(substr($methodName, 2)); 142 if ($methodName === $className) { 147 if ($methodName === '_'.$className) { 152 $methodName = ltrim($methodName, '_'); 155 if (PHP_CodeSniffer::isCamelCaps($methodName, false, true, $this->strict) === false) {
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/NamingConventions/ |
H A D | ValidFunctionNameSniff.php | 91 $methodName = $phpcsFile->getDeclarationName($stackPtr); 92 if ($methodName === null) { 98 $errorData = array($className.'::'.$methodName); 101 if (preg_match('|^__[^_]|', $methodName) !== 0) { 102 $magicPart = strtolower(substr($methodName, 2)); 112 if ($methodName === $className) { 117 if ($methodName === '_'.$className) { 133 if ($methodName{0} !== '_') { 159 $testMethodName = $methodName; 160 if ($scopeSpecified === false && $methodName{0} === '_') { [all …]
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Methods/ |
H A D | CamelCapsMethodNameSniff.php | 48 $methodName = $phpcsFile->getDeclarationName($stackPtr); 49 if ($methodName === null) { 55 if (preg_match('|^__[^_]|', $methodName) !== 0) { 56 $magicPart = strtolower(substr($methodName, 2)); 64 $testName = ltrim($methodName, '_'); 68 $errorData = array($className.'::'.$methodName);
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/ |
H A D | SecurityNotAllowedMethodError.php | 22 private $methodName; variable in Twig\\Sandbox\\SecurityNotAllowedMethodError 24 …public function __construct($message, $className, $methodName, $lineno = -1, $filename = null, \Ex… argument 28 $this->methodName = $methodName; 38 return $this->methodName;
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Call/ |
H A D | UnexpectedCallException.php | 19 private $methodName; variable in Prophecy\\Exception\\Call\\UnexpectedCallException 23 $methodName, array $arguments) argument 27 $this->methodName = $methodName; 33 return $this->methodName;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/ |
H A D | OrderLineItemShippingDetailsMethod.php | 33 public $methodName; variable in Google\\Service\\ShoppingContent\\OrderLineItemShippingDetailsMethod 70 public function setMethodName($methodName) argument 72 $this->methodName = $methodName; 79 return $this->methodName;
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/ |
H A D | Method.php | 31 private $methodName = ''; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Method 43 $methodName, argument 49 Assert::stringNotEmpty($methodName); 56 $this->methodName = $methodName; 125 list(, $static, $returnType, $methodName, $arguments, $description) = $matches; 158 return new static($methodName, $arguments, $returnType, $static, $description); 168 return $this->methodName; 206 . $this->methodName
|
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/ |
H A D | VirtualPropertyMetadata.php | 9 public function __construct(string $class, string $methodName) argument 11 if (0 === strpos($methodName, 'get')) { 12 $fieldName = lcfirst(substr($methodName, 3)); 14 $fieldName = $methodName; 19 $this->getter = $methodName;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SecurityCommandCenter/ |
H A D | Access.php | 31 public $methodName; variable in Google\\Service\\SecurityCommandCenter\\Access 76 public function setMethodName($methodName) argument 78 $this->methodName = $methodName; 85 return $this->methodName;
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/Channels/ |
H A D | UnusedSystemSniff.php | 56 $methodName = strtolower($tokens[($stackPtr + 1)]['content']); 57 if ($methodName === 'includesystem' 58 || $methodName === 'includeasset' 59 || $methodName === 'includewidget' 73 if ($methodName === 'includeasset') { 75 } else if ($methodName === 'includewidget') {
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/ |
H A D | Static.php | 53 public $methodName; variable in PHPUnit_Framework_MockObject_Invocation_Static 72 * @param string $methodName 77 …public function __construct($className, $methodName, array $parameters, $returnType, $cloneObjects… argument 80 $this->methodName = $methodName; 111 $this->methodName,
|
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/ |
H A D | File.php | 601 foreach ($class['methods'] as $methodName => $method) { 602 …$this->classes[$className]['methods'][$methodName] = $this->newMethod($methodName, $method, $link); 604 … $this->startLines[$method['startLine']] = &$this->classes[$className]['methods'][$methodName]; 605 … $this->endLines[$method['endLine']] = &$this->classes[$className]['methods'][$methodName]; 637 foreach ($trait['methods'] as $methodName => $method) { 638 … $this->traits[$traitName]['methods'][$methodName] = $this->newMethod($methodName, $method, $link); 640 … $this->startLines[$method['startLine']] = &$this->traits[$traitName]['methods'][$methodName]; 641 … $this->endLines[$method['endLine']] = &$this->traits[$traitName]['methods'][$methodName]; 700 * @param string $methodName 706 private function newMethod($methodName, array $method, $link) argument [all …]
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/ |
H A D | testdox-xml.phpt | 19 …<test className="StatusTest" methodName="testSuccess" prettifiedClassName="Status" prettifiedMetho… 20 …<test className="StatusTest" methodName="testFailure" prettifiedClassName="Status" prettifiedMetho… 21 …<test className="StatusTest" methodName="testError" prettifiedClassName="Status" prettifiedMethodN… 22 …<test className="StatusTest" methodName="testIncomplete" prettifiedClassName="Status" prettifiedMe… 23 …<test className="StatusTest" methodName="testSkipped" prettifiedClassName="Status" prettifiedMetho… 24 …<test className="StatusTest" methodName="testRisky" prettifiedClassName="Status" prettifiedMethodN… 25 …<test className="StatusTest" methodName="testWarning" prettifiedClassName="Status" prettifiedMetho…
|
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/ |
H A D | MethodDeclarationSniff.php | 59 $methodName = $phpcsFile->getDeclarationName($stackPtr); 60 if ($methodName === null) { 65 if ($methodName[0] === '_' && isset($methodName[1]) === true && $methodName[1] !== '_') { 67 $data = array($methodName);
|