Lines Matching refs:this
43 $this->lhs = $lhs;
44 $this->rhs = $rhs;
45 $this->flags = $flags;
52 return $this->lhs;
59 return $this->rhs;
66 $this->flags = $flags;
73 return $this->flags;
80 $this->lhs->rewind();
81 $this->rhs->rewind();
88 return $this->lhs->valid() && $this->rhs->valid();
95 switch($this->flags & 0x0F)
99 return array($this->lhs->current(), $this->rhs->current());
101 return $this->lhs->current();
103 return $this->rhs->current();
113 switch($this->flags & 0xF0)
117 return $this->lhs->key();
119 return $this->rhs->key();
129 $this->lhs->next();
130 $this->rhs->next();
138 return $this->valid()
139 ? $this->lhs->current() === $this->rhs->current()
140 && $this->lhs->key() === $this->rhs->key()
141 : $this->lhs->valid() == $this->rhs->valid();
149 return $this->valid()
150 ? $this->lhs->current() == $this->rhs->current()
151 && $this->lhs->key() == $this->rhs->key()
152 : $this->lhs->valid() == $this->rhs->valid();