Home
last modified time | relevance | path

Searched refs:append3bytes (Results 1 – 2 of 2) sorted by last modified time

/plugin/diagramsnet/lib/js/diagramly/
H A DEditorUi.js7631 r += append3bytes(data.charCodeAt(i), data.charCodeAt(i + 1), 0);
7635 r += append3bytes(data.charCodeAt(i), 0, 0);
7639 r += append3bytes(data.charCodeAt(i), data.charCodeAt(i + 1),
7647 function append3bytes(b1, b2, b3) function
/plugin/plantumlparser/syntax/
H A DPlantUmlDiagram.php70 private function append3bytes($b1, $b2, $b3) {
88 $str .= $this->append3bytes(ord(substr($c, $i, 1)), ord(substr($c, $i+1, 1)), 0);
90 $str .= $this->append3bytes(ord(substr($c, $i, 1)), 0, 0);
92 $str .= $this->append3bytes(ord(substr($c, $i, 1)), ord(substr($c, $i+1, 1)),
67 private function append3bytes($b1, $b2, $b3) { global() function in PlantUmlDiagram