Lines Matching refs:actualKey
647 $actualKey = key($this->callStack);
648 if ($actualKey != $targetKey) {
649 …LogUtility::msg("The target key ($targetKey) is not equal to the actual key ($actualKey). The move…
663 $actualKey = key($this->callStack);
664 if ($actualKey !== null) {
665 $offset = array_search($actualKey, array_keys($this->callStack), true);
669 $this->moveToKey($actualKey);
739 $actualKey = key($this->callStack);
740 return array_search($actualKey, array_keys($this->callStack), true);
851 $actualKey = $this->getActualKey();
852 if ($actualKey !== null) {
853 $offset = $actualKey + 1;
856 if ($actualKey !== null) {
857 $this->moveToKey($actualKey);
1060 $actualKey = $this->getActualKey();
1061 if ($actualKey === null) {
1063 $actualKey = sizeof($this->callStack);
1066 $actualKey = -1;
1069 $diff = $targetKey - $actualKey;