Lines Matching refs:self

395         $elmArgs = self::_extractAlternateChain($args, $firstTokPosition + 1, $chainLength);
408 $elmArgs = self::_extractAlternateChain($args, $firstTokPosition - 1, $chainLength);
423 $elmArgs = self::_extractAlternateChain($args, $firstTokPosition - 1, $chainLength + 1);
465 $position = self::_spliceNone($args, $position, $this);
471 … $chainLength = self::_getLongestAlternateChain($args, $position, $this->tokenDefs()[0]);
473 $position = self::_splicePrefix($args, $position, $chainLength, $this);
477 …$chainLength = self::_getLongestAlternateChain($args, $position, $this->tokenDefs()[0], $this->ari…
479 $position = self::_splicePrefix($args, $position, $chainLength, $this);
482 } else if (self::_isMatchingAlternateChain($args, $position, $this->tokenDefs())) {
483 $position = self::_splicePrefix($args, $position, $this->arity(), $this);
489 … $chainLength = self::_getLongestAlternateChain($args, $position + 1, $this->tokenDefs()[0]);
491 $position = self::_splicePostfix($args, $position + 1, $chainLength, $this);
495 …$chainLength = self::_getLongestAlternateChain($args, $position + 1, $this->tokenDefs()[0], $this-…
497 $position = self::_splicePostfix($args, $position + 1, $chainLength, $this);
500 … } else if (self::_isMatchingAlternateChain($args, $position + 1, $this->tokenDefs())) {
501 $position = self::_splicePostfix($args, $position + 1, $this->arity(), $this);
507 … $chainLength = self::_getLongestAlternateChain($args, $position + 1, $this->tokenDefs()[0]);
509 $position = self::_spliceInfix($args, $position + 1, $chainLength, $this);
513 …$chainLength = self::_getLongestAlternateChain($args, $position + 1, $this->tokenDefs()[0], $this-…
515 $position = self::_spliceInfix($args, $position + 1, $chainLength, $this);
518 … } else if (self::_isMatchingAlternateChain($args, $position + 1, $this->tokenDefs())) {
519 $position = self::_spliceInfix($args, $position + 1, $this->arity() - 1, $this);
524 …$sequenceLength = self::_getWrappedSequence($args, $position, $this->tokenDefs(), $this->nested());
526 $position = self::_spliceWrap($args, $position, $sequenceLength, $this);