Home
last modified time | relevance | path

Searched refs:codePointToCharacter (Results 1 – 3 of 3) sorted by relevance

/webtrees/app/Encodings/
H A DAbstractUTF16Encoding.php52 $out .= $this->codePointToCharacter($code_point);
63 $out .= $this->codePointToCharacter($code_point << 6 + $byte2 & 0x3F);
73 … $out .= $this->codePointToCharacter($code_point << 12 + ($byte2 & 0x3F) << 6 + $byte3 & 0x3F);
150 abstract protected function codePointToCharacter(int $code_point): string; function in Fisharebest\\Webtrees\\Encodings\\AbstractUTF16Encoding
H A DUTF16BE.php55 protected function codePointToCharacter(int $code_point): string function in Fisharebest\\Webtrees\\Encodings\\UTF16BE
H A DUTF16LE.php55 protected function codePointToCharacter(int $code_point): string function in Fisharebest\\Webtrees\\Encodings\\UTF16LE