Lines Matching refs:output

44  * array. Unicode output is available in the same formats.
47 * ACE input and output is always expected to be ASCII.
112 * 'ucs4_string' and 'ucs4_array' respectively for UCS4); The output is always UTF-8]
161 * [@param string Desired output encoding, see {@link set_parameter}]
242 // The output is UTF-8 by default, other output formats need conversion here
255 $this->_error('Unsupported output format');
284 // No input, no output, what else did you expect?
290 $output = '';
316 $output .= $encoded;
318 $output .= $this->_ucs4_to_utf8(array_slice($decoded, $last_begin, (($k)-$last_begin)));
320 $output .= chr($decoded[$k]);
331 $output .= $encoded;
333 $output .= $this->_ucs4_to_utf8(array_slice($decoded, $last_begin, (($inp_len)-$last_begin)));
335 return $output;
338 if ($output = $this->_encode($decoded)) {
339 return $output;
453 // Copy all basic code points to output
465 // Start with the prefix; copy it to output
468 // If we have basic code points in output, add an hyphen to the end
563 $output = array();
568 // the input chars and putting the result into the output array
589 $output[] = (int) $out;
594 $output[] = (int) $out;
597 $output[] = (int) $v;
601 $output = $this->_hangul_compose($output);
607 $out_len = count($output);
609 $class = $this->_get_combining_class($output[$i]);
613 $out = $this->_combine(array_slice($output, $last_starter, $seq_len));
617 $output[$last_starter] = $out;
620 $output[$j-1] = $output[$j];
622 unset($output[$out_len]);
627 $last_class = ($i == $last_starter) ? 0 : $this->_get_combining_class($output[$i-1]);
635 return $output;
671 $result[] = $last; // copy first char from input to output
790 $output = array();
799 $output[$out_len] = $v;
831 $output[$out_len] = (int) $v;
846 $output[($out_len - 1)] += $v;
857 return $output;
867 $output = '';
873 $output .= chr($v);
875 $output .= chr(192 + ($v >> 6)) . chr(128 + ($v & 63));
877 $output .= chr(224 + ($v >> 12)) . chr(128 + (($v >> 6) & 63)) . chr(128 + ($v & 63));
879 $output .= chr(240 + ($v >> 18)) . chr(128 + (($v >> 12) & 63))
882 $output .= chr(248 + ($v >> 24)) . chr(128 + (($v >> 18) & 63))
886 $output .= chr(252 + ($v >> 30)) . chr(128 + (($v >> 24) & 63))
894 return $output;
904 $output = '';
905 // Take array values and split output to 4 bytes per value
908 $output .= chr(($v >> 24) & 255).chr(($v >> 16) & 255).chr(($v >> 8) & 255).chr($v & 255);
910 return $output;
920 $output = array();
927 // Empty input - return empty output
928 if (!$inp_len) return $output;
930 // Increment output position every 4 input bytes
933 $output[$out_len] = 0;
935 $output[$out_len] += ord($input[$i]) << (8 * (3 - ($i % 4) ) );
937 return $output;
950 * 'ucs4_string' and 'ucs4_array' respectively for UCS4); The output is always UTF-8]