Lines Matching refs:result

150             ->when($result = $node->setId('bar'))
152 ->string($result)
163 ->when($result = $node->getId())
165 ->string($result)
173 ->when($result = $node->setValue(['baz']))
175 ->array($result)
186 ->when($result = $node->getValue())
188 ->array($result)
196 ->when($result = $node->getValueToken())
198 ->string($result)
206 ->when($result = $node->getValueToken())
208 ->variable($result)
216 ->when($result = $node->getValueValue())
218 ->string($result)
226 ->when($result = $node->getValueValue())
228 ->variable($result)
236 ->when($result = $node->isToken())
238 ->boolean($result)
246 ->when($result = $node->isToken())
248 ->boolean($result)
260 ->when($result = $node->prependChild($childB))
262 ->object($result)
264 ->integer($result->getChildrenNumber())
266 ->array($result->getChildren())
278 ->when($result = $node->appendChild($childB))
280 ->object($result)
282 ->integer($result->getChildrenNumber())
284 ->array($result->getChildren())
297 ->when($result = $node->setChildren([$childB, $childC]))
299 ->array($result)
315 ->when($result = $node->getChild(0))
317 ->object($result)
320 ->when($result = $node->getChild(1))
322 ->object($result)
332 ->when($result = $node->getChild(0))
334 ->variable($result)
346 ->when($result = $node->getChildren())
348 ->array($result)
360 ->when($result = $node->getChildrenNumber())
362 ->integer($result)
367 $result = $node->getChildrenNumber()
370 ->integer($result)
378 ->when($result = $node->childExists(0))
380 ->boolean($result)
388 ->when($result = $node->childExists(0))
390 ->boolean($result)
401 ->when($result = $node->setParent(new SUT('qux')))
403 ->object($result)
415 ->when($result = $node->getParent())
417 ->object($result)
425 ->when($result = $node->getData())
427 ->array($result)
431 $result[] = 'bar',
432 $result[] = 'baz',
433 $result = $node->getData()
436 ->array($result)
444 ->when($result = &$node->getData())
446 ->array($result)
450 $result[] = 'bar',
451 $result[] = 'baz',
452 $result = $node->getData()
455 ->array($result)