Lines Matching refs:result

79             ->when($result = $string->append(' t\'aime'))
81 ->object($result)
83 ->string((string) $result)
91 ->when($result = $string->append('حبك'))
93 ->object($result)
95 ->string((string) $result)
103 ->when($result = $string->prepend('je'))
105 ->object($result)
107 ->string((string) $result)
115 ->when($result = $string->prepend('أحب'))
117 ->object($result)
119 ->string((string) $result)
127 ->when($result = $string->pad(20, '�� �� �� ❤️ ', LUT::BEGINNING))
129 ->object($result)
131 ->string((string) $result)
139 ->when($result = $string->pad(20, '�� �� �� ❤️ ', LUT::BEGINNING))
141 ->object($result)
143 ->string((string) $result)
151 ->when($result = $string->pad(20, '�� �� �� ❤️ ', LUT::END))
153 ->object($result)
155 ->string((string) $result)
163 ->when($result = $string->pad(20, '�� �� �� ❤️ ', LUT::END))
165 ->object($result)
167 ->string((string) $result)
187 ->when($result = $string->compare('a'))
189 ->integer($result)
192 ->when($result = $string->compare('b'))
194 ->integer($result)
197 ->when($result = $string->compare('c'))
199 ->integer($result)
210 ->when($result = $collator->getLocale(\Locale::VALID_LOCALE))
212 ->string($result)
220 ->when($result = LUT::safePattern($pattern))
222 ->string($result)
230 ->when($result = LUT::safePattern($pattern))
232 ->string($result)
243 ->when($result = $string->match($pattern, $matches))
245 ->integer($result)
260 ->when($result = $string->match($pattern, $matches, 0, 0))
262 ->integer($result)
267 ->when($result = $string->match($pattern, $matches, 0, 4))
269 ->integer($result)
274 ->when($result = $string->match($pattern, $matches, 0, 5))
276 ->integer($result)
289 ->when($result = $string->match($pattern, $matches, $string::WITH_OFFSET))
291 ->integer($result)
309 ->when($result = $string->match($pattern, $matches, 0, 0, true))
311 ->integer($result)
329 ->when($result = $string->match($pattern, $matches, $string::WITH_OFFSET, 0, true))
331 ->integer($result)
355 ->when($result = $string->match($pattern, $matches, $string::GROUP_BY_PATTERN, 0, true))
357 ->integer($result)
379 ->when($result = $string->match($pattern, $matches, $string::GROUP_BY_TUPLE, 0, true))
381 ->integer($result)
400 ->when($result = $string->replace('/��/u', '��'))
402 ->object($result)
404 ->string((string) $result)
412 ->when($result = $string->replace('/��/u', '��', 1))
414 ->object($result)
416 ->string((string) $result)
424 ->when($result = $string->split('/��/'))
426 ->array($result)
438 ->when($result = $string->split('/��/', 1))
440 ->array($result)
450 ->when($result = $string->split('/��/', -1, $string::WITH_DELIMITERS))
452 ->array($result)
464 ->when($result = $string->split('/��/', -1, $string::WITH_OFFSET))
466 ->array($result)
487 ->when($result = iterator_to_array($string))
489 ->array($result)
507 ->when($result = iterator_to_array($string))
509 ->array($result)
522 ->when($result = $string->toLowerCase())
524 ->object($result)
526 ->string((string) $result)
530 ->when($result = $string->toLowerCase())
532 ->object($result)
534 ->string((string) $result)
542 ->when($result = $string->toUpperCase())
544 ->object($result)
546 ->string((string) $result)
550 ->when($result = $string->toUpperCase())
552 ->object($result)
554 ->string((string) $result)
562 ->when($result = $string->trim('��'))
564 ->object($result)
566 ->string((string) $result)
574 ->when($result = $string->trim('��', $string::BEGINNING))
576 ->object($result)
578 ->string((string) $result)
586 ->when($result = $string->trim('��', $string::END))
588 ->object($result)
590 ->string((string) $result)
598 ->when($result = $string[0])
600 ->string($result)
603 ->when($result = $string[-1])
605 ->string($result)
613 ->when($result = $string[0])
615 ->string($result)
618 ->when($result = $string[-1])
620 ->string($result)
650 ->when($result = $string->reduce(0, 1))
652 ->object($result)
654 ->string((string) $result)
662 ->when($result = count($string))
664 ->integer($result)
668 ->when($result = count($string))
670 ->integer($result)
674 ->when($result = count($string))
676 ->integer($result)
684 ->when($result = $string->getByteAt(0))
686 ->integer(ord($result))
689 ->when($result = $string->getByteAt(1))
691 ->integer(ord($result))
694 ->when($result = $string->getByteAt(2))
696 ->integer(ord($result))
699 ->when($result = $string->getByteAt(3))
701 ->integer(ord($result))
704 ->when($result = $string->getByteAt(-1))
706 ->integer(ord($result))
714 ->when($result = $string->getBytesLength())
716 ->integer($result)
724 ->when($result = $string->getWidth())
726 ->integer($result)
730 ->when($result = $string->getWidth())
732 ->integer($result)
739 ->when($result = LUT::getCharDirection('A'))
741 ->integer($result)
744 ->when($result = LUT::getCharDirection('ا'))
746 ->integer($result)
793 ->when($result = LUT::getCharWidth(LUT::fromCode($code)))
795 ->integer($result)
804 ->when($result = LUT::isCharPrintable(LUT::fromCode(0x7f)))
806 ->boolean($result)
809 ->when($result = LUT::isCharPrintable(LUT::fromCode(0xa0)))
811 ->boolean($result)
814 ->when($result = LUT::isCharPrintable(LUT::fromCode(0x1100)))
816 ->boolean($result)
824 ->when($result = LUT::fromCode(0x7e))
826 ->string($result)
830 ->when($result = LUT::fromCode(0xa7))
832 ->string($result)
836 ->when($result = LUT::fromCode(0x1207))
838 ->string($result)
842 ->when($result = LUT::fromCode(0x1f4a9))
844 ->string($result)
852 ->when($result = LUT::toCode('~'))
854 ->integer($result)
858 ->when($result = LUT::toCode('§'))
860 ->integer($result)
864 ->when($result = LUT::toCode('ሇ'))
866 ->integer($result)
870 ->when($result = LUT::toCode('��'))
872 ->integer($result)
880 ->when($result = LUT::toBinaryCode('~'))
882 ->string($result)
886 ->when($result = LUT::toBinaryCode('§'))
888 ->string($result)
892 ->when($result = LUT::toBinaryCode('ሇ'))
894 ->string($result)
898 ->when($result = LUT::toBinaryCode('��'))
900 ->string($result)
962 ->when($result = $string->toAscii(true))
964 ->object($result)
966 ->string((string) $result)
979 ->when($result = $string->toAscii())
981 ->object($result)
983 ->string((string) $result)
1030 ->when($result = $string->toAscii())
1032 ->object($result)
1034 ->string((string) $result)
1044 ->when($result = $string->copy())
1046 ->object($result)
1054 ->when($result = new LUT($datum))
1056 ->castToString($result)