| /plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/ |
| D | Test.php | 61 * @param string $methodName 67 public static function getLinesToBeCovered($className, $methodName) argument 71 $methodName 78 return self::getLinesToBeCoveredOrUsed($className, $methodName, 'covers'); 85 * @param string $methodName 89 public static function getLinesToBeUsed($className, $methodName) argument 91 return self::getLinesToBeCoveredOrUsed($className, $methodName, 'uses'); 96 * @param string $methodName 103 private static function getLinesToBeCoveredOrUsed($className, $methodName, $mode) argument 107 $methodName [all …]
|
| /plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ |
| D | ObjectProphecy.php | 149 $methodName = $methodProphecy->getMethodName(); 151 if (!isset($this->methodProphecies[$methodName])) { 152 $this->methodProphecies[$methodName] = array(); 155 $this->methodProphecies[$methodName][] = $methodProphecy; 161 * @param null|string $methodName 165 public function getMethodProphecies($methodName = null) argument 167 if (null === $methodName) { 171 if (!isset($this->methodProphecies[$methodName])) { 175 return $this->methodProphecies[$methodName]; 181 * @param string $methodName [all …]
|
| 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/ |
| D | Dashboard.php | 71 foreach ($class['methods'] as $methodName => $method) { 73 $methodName = $className . '::' . $methodName; 82 $methodName 145 foreach ($class['methods'] as $methodName => $method) { 189 foreach ($class['methods'] as $methodName => $method) { 192 $key = $className . '::' . $methodName; 194 $key = $methodName; 218 foreach ($leastTestedMethods as $methodName => $coverage) { 219 list($class, $method) = explode('::', $methodName); 224 $methodName, [all …]
|
| /plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Call/ |
| 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())) { 78 $this->recordedCalls[] = new Call($methodName, $arguments, null, null, $file, $line); 85 foreach ($prophecy->getMethodProphecies($methodName) as $methodProphecy) { 93 throw $this->createUnexpectedCallException($prophecy, $methodName, $arguments); 114 … "The method \"$methodName\" has a void return type, but the promise returned a value", 120 $methodName, $arguments, $returnValue, $exception, $file, $line 134 * @param string $methodName 139 public function findCalls($methodName, ArgumentsWildcard $wildcard) argument [all …]
|
| 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/ |
| D | test-fp.js | 290 _.each(['fp.convert', 'method.convert'], function(methodName) { argument 291 var isFp = methodName == 'fp.convert', 294 QUnit.test('`' + methodName + '` should work with an object', function(assert) { 307 QUnit.test('`' + methodName + '` should extend existing configs', function(assert) { 328 var methodNames = _.filter(_.functions(fp), function(methodName) { argument 329 return fp[methodName].length > 1; 341 var methodNames = _.filter(mapping.aryMethod[aryCap], function(methodName) { argument 342 var key = _.get(mapping.remap, methodName, methodName), 385 var actual = _.map(mapping.aryMethod[1], function(methodName) { argument 386 var arg = _.includes(funcMethods, methodName) ? _.noop : 1, [all …]
|
| D | test.js | 1354 lodashStable.each(['assign', 'assignIn'], function(methodName) { argument 1355 var func = _[methodName]; 1357 …QUnit.test('`_.' + methodName + '` should assign source properties to `object`', function(assert) { 1363 QUnit.test('`_.' + methodName + '` should accept multiple sources', function(assert) { 1371 QUnit.test('`_.' + methodName + '` should overwrite destination properties', function(assert) { 1378 …QUnit.test('`_.' + methodName + '` should assign source properties with nullish values', function(… 1385 …QUnit.test('`_.' + methodName + '` should skip assignments if values are the same', function(asser… 1428 … QUnit.test('`_.' + methodName + '` should treat sparse array sources as dense', function(assert) { 1437 … QUnit.test('`_.' + methodName + '` should assign values of prototype objects', function(assert) { 1446 QUnit.test('`_.' + methodName + '` should coerce string sources to objects', function(assert) { [all …]
|
| /plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/ |
| 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;
|
| 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;
|
| 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/ |
| 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/ |
| 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} !== '_') { 144 if ($isPublic === true && $scopeSpecified === true && $methodName{0} === '_') { 159 $testMethodName = $methodName; [all …]
|
| /plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR1/Sniffs/Methods/ |
| 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/ |
| 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/ |
| 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/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/ |
| 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/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/ |
| 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/jms/serializer/src/Metadata/ |
| 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/ |
| 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/ |
| 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/php-code-coverage/src/Node/ |
| 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-mock-objects/src/Framework/MockObject/Invocation/ |
| 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/phpunit/tests/TextUI/ |
| 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/ |
| 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);
|