Home
last modified time | relevance | path

Searched refs:name (Results 5976 – 6000 of 8094) sorted by last modified time

1...<<231232233234235236237238239240>>...324

/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/
H A DLICENSE18 * Neither the name of Sebastian Bergmann nor the names of his
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DGenerator.php616 $name = substr($method, $nameStart, $nameEnd - $nameStart);
618 if (empty($methods) || in_array($name, $methods)) {
635 'method_name' => $name,
1133 * @param string $name
1137 private function isMethodNameBlacklisted($name) argument
1139 if (PHP_MAJOR_VERSION < 7 && isset($this->legacyBlacklistedMethodNames[$name])) {
1143 if (PHP_MAJOR_VERSION >= 7 && isset($this->blacklistedMethodNames[$name])) {
1167 $name = '$' . $parameter->getName();
1172 if ($name === '$' || $name === '$...') {
1173 $name = '$arg' . $i;
[all …]
/plugin/findologicxmlexport/vendor/sebastian/code-unit-reverse-lookup/
H A DLICENSE18 * Neither the name of Sebastian Bergmann nor the names of his
/plugin/findologicxmlexport/vendor/sebastian/comparator/
H A DLICENSE18 * Neither the name of Sebastian Bergmann nor the names of his
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Dtemplate_from_string.test6 {% include template_from_string("Hello {{ name }}") %}
7 {% include template_from_string('{% extends "parent.twig" %}{% block content %}Hello {{ name }}{% e…
11 return ['name' => 'Fabien', 'template' => "Hello {{ name }}"]
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DMethod.php28 protected $name = 'method'; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Method
H A DParam.php28 protected $name = 'param'; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Param
H A DProperty.php28 protected $name = 'property'; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Property
H A DSince.php25 protected $name = 'since'; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Since
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/
H A DREADME.md5 but also how to statically resolve the partial name of a Class into a Fully Qualified Class Name (F…
88 name and element name) and receive a Value Object of type `\phpDocumentor\Reflection\Fqsen`.
118 Suppose that you would want to resolve (and expand) the type in the `@var` tag and the element name
120 a new class named `\phpDocumentor\Reflection\Types\Context` with the name of the namespace and the …
155 To obtain the resolved class name for the `@var` tag in the example above you can do:
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DCHANGES.md173 * Add support for old-style (method name === class name) constructors (thanks @l310 for report)
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DObjectStateToken.php25 private $name; variable in Prophecy\\Argument\\Token\\ObjectStateToken
44 $this->name = $methodName;
60 if (is_object($argument) && method_exists($argument, $this->name)) {
61 $actual = call_user_func(array($argument, $this->name));
75 if (is_object($argument) && property_exists($argument, $this->name)) {
76 return $argument->{$this->name} === $this->value ? 8 : false;
100 $this->name,
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/
H A DMethodNode.php24 private $name; variable in Prophecy\\Doubler\\Generator\\Node\\MethodNode
43 * @param string $name
46 public function __construct($name, $code = null, TypeHintReference $typeHintReference = null) argument
48 $this->name = $name;
96 return $this->name;
173 …ByReferenceException('Returning by reference not supported', get_class(\$this), '{$this->name}');";
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DCrap4j.php42 * @param string $name
46 public function process(CodeCoverage $coverage, $target = null, $name = null) argument
54 $project = $document->createElement('project', is_string($name) ? $name : '');
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DGlobalState.php109 foreach ($constants['user'] as $name => $value) {
112 $name,
113 $name,
H A DTest.php192 $name = $matches['name'][$i] . 's';
193 if (!isset($requires[$name])) {
194 $requires[$name] = [];
196 $requires[$name][] = $matches['value'][$i];
197 if (empty($matches['version'][$i]) || $name != 'extensions') {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DNamePrettifier.php34 * @param string $name
40 $title = $name;
62 * @param string $name
70 if (!is_string($name) || strlen($name) == 0) {
77 $name = $string;
83 $name = substr($name, 4);
86 if (strlen($name) == 0) {
90 $name[0] = strtoupper($name[0]);
96 $max = strlen($name);
101 ord($name[$i]) >= 65 &&
[all …]
H A DResultPrinter.php313 foreach ($this->tests as $name => $data) {
314 $this->onTest($name, $data['failure'] == 0);
330 * @param string $name
332 protected function startClass($name) argument
339 * @param string $name
342 protected function onTest($name, $success = true) argument
349 * @param string $name
351 protected function endClass($name) argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/ResultPrinter/
H A DHTML.php89 * @param string $name
91 protected function startClass($name) argument
96 $name,
105 * @param string $name
108 protected function onTest($name, $success = true) argument
115 $name
123 * @param string $name
125 protected function endClass($name) argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dlog-teamcity.phpt19 ##teamcity[testSuiteStarted name='BankAccountTest' locationHint='php_qn://%s/tests/_files/BankAccou…
21 ##teamcity[testStarted name='testBalanceIsInitiallyZero' locationHint='php_qn://%s/tests/_files/Ban…
23 ##teamcity[testFinished name='testBalanceIsInitiallyZero' duration='%s' flowId='%d']
25 ##teamcity[testStarted name='testBalanceCannotBecomeNegative' locationHint='php_qn://%s/tests/_file…
27 ##teamcity[testFinished name='testBalanceCannotBecomeNegative' duration='%s' flowId='%d']
29 ##teamcity[testStarted name='testBalanceCannotBecomeNegative2' locationHint='php_qn://%s/tests/_fil…
31 ##teamcity[testFinished name='testBalanceCannotBecomeNegative2' duration='%s' flowId='%d']
33 ##teamcity[testSuiteFinished name='BankAccountTest' flowId='%d']
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/
H A DMethodNameMatch.php22 …* @param PHPUnit_Framework_Constraint $name Constraint for matching method, if a string is passed …
26 public function method($name); argument
/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DRestorer.php80 foreach ($staticAttributes as $name => $value) {
81 $reflector = new ReflectionProperty($className, $name);
96 $name = $attribute->getName();
98 if ($snapshot->blacklist()->isStaticAttributeBlacklisted($className, $name)) {
102 if (!isset($defaults[$name])) {
107 $attribute->setValue($defaults[$name]);
/plugin/findologicxmlexport/vendor/sebastian/object-enumerator/
H A DLICENSE18 * Neither the name of Sebastian Bergmann nor the names of his
/plugin/findologicxmlexport/vendor/sebastian/version/
H A D.php_cs5 ->name('*.php');
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsSpecificationExamples.yml44 name: Mark McGwire
48 name: Sammy Sosa
53 ['name' => 'Mark McGwire', 'hr' => 65, 'avg' => 0.278],
54 ['name' => 'Sammy Sosa', 'hr' => 63, 'avg' => 0.288]
133 - [ name , hr , avg ]
138 [ 'name', 'hr', 'avg' ],
457 name: Mark McGwire
466 'name' => 'Mark McGwire',

1...<<231232233234235236237238239240>>...324