Searched refs:callIndex (Results 1 – 4 of 4) sorted by relevance
| /plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/ |
| D | ConsecutiveParameters.php | 67 $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,
|
| /plugin/columns/ |
| D | action.php | 115 private function handleColumns($callIndex, $state, $sectionEdit) { argument 119 $this->currentBlock->addColumn($callIndex, $this->currentSectionLevel); 125 $this->currentBlock->addColumn($callIndex, $this->currentSectionLevel); 131 $this->currentBlock->close($callIndex); 161 public function addColumn($callIndex, $sectionLevel) { argument 162 $this->call[] = $callIndex; 175 public function closeSection($callIndex) { argument 180 $this->call[] = $callIndex; 199 public function close($callIndex) { argument 200 $this->call[] = $callIndex; [all …]
|
| /plugin/refnotes/ |
| D | namespace.php | 376 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;
|
| D | core.php | 420 public function markScopeStart($namespaceName, $callIndex) { argument 421 $this->getNamespace($namespaceName)->markScopeStart($callIndex); 427 public function markScopeEnd($namespaceName, $callIndex) { argument 428 $this->getNamespace($namespaceName)->markScopeEnd($callIndex);
|