Lines Matching full:reach
60 * Path for the `reach` method.
82 * @param string $reach Path for the `reach` method.
85 public function __construct($name = null, $reach = null, array $children = []) argument
91 if (null !== $reach) {
92 $this->_reach = $reach;
182 * Resolve a path, i.e. iterate the nodes tree and reach the queue of
224 $this->_resolveChoice($this[$next]->reach(), $accumulator);
235 $this->_resolveChoice($tnext->reach(), $accumulator);
240 $this->_resolveChoice($this->reach($path), $accumulator);
246 * Resolve choices, i.e. a reach value has a “;”.
248 * @param string $reach Reach value.
252 protected function _resolveChoice($reach, array &$accumulator) argument
255 $accumulator = explode(RS, $reach);
260 if (false === strpos($reach, RS)) {
261 if (false !== $pos = strrpos($reach, "\r")) {
262 $reach = substr($reach, $pos + 1);
270 $entry .= $reach;
276 $choices = explode(RS, $reach);
307 public function reach($queue = null) function in Hoa\\Protocol\\Node\\Node
323 'The node %s has no ID support (tried to reach #%s).',
330 * Set a new reach value.
332 * @param string $reach Reach value.
335 public function setReach($reach) argument
338 $this->_reach = $reach;
354 * Get reach's root.