Home
last modified time | relevance | path

Searched refs:callIndex (Results 1 – 4 of 4) sorted by last modified time

/plugin/columns/
H A Daction.php162 $this->call[] = $callIndex;
175 public function closeSection($callIndex) { argument
180 $this->call[] = $callIndex;
199 public function close($callIndex) { argument
200 $this->call[] = $callIndex;
268 public function closeSection($callIndex) { argument
289 public function close($callIndex) { argument
576 public function closeSection($callIndex) { argument
578 $this->sectionClose = $callIndex;
599 public function close($callIndex) { argument
[all …]
/plugin/refnotes/
H A Dcore.php420 public function markScopeStart($namespaceName, $callIndex) {
421 $this->getNamespace($namespaceName)->markScopeStart($callIndex);
427 public function markScopeEnd($namespaceName, $callIndex) {
428 $this->getNamespace($namespaceName)->markScopeEnd($callIndex);
400 markScopeStart($namespaceName, $callIndex) global() argument
407 markScopeEnd($namespaceName, $callIndex) global() argument
H A Dnamespace.php376 public function markScopeStart($callIndex) { argument
378 $this->scope[] = new refnotes_scope(NULL, 0, $callIndex);
385 public function markScopeEnd($callIndex) { argument
387 $this->markScopeStart($callIndex - 1);
388 $this->getCurrentScope()->getLimits()->end = $callIndex;
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/
H A DConsecutiveParameters.php67 $callIndex = count($this->invocations) - 1;
69 $this->verifyInvocation($invocation, $callIndex);
76 foreach ($this->invocations as $callIndex => $invocation) {
77 $this->verifyInvocation($invocation, $callIndex);
85 * @param int $callIndex
89 … private function verifyInvocation(PHPUnit_Framework_MockObject_Invocation $invocation, $callIndex) argument
91 if (isset($this->parameterGroups[$callIndex])) {
92 $parameters = $this->parameterGroups[$callIndex];
120 $callIndex,