Home
last modified time | relevance | path

Searched refs:chunkOTLdata (Results 1 – 2 of 2) sorted by relevance

/plugin/dw2pdf/vendor/mpdf/mpdf/src/
DOtl.php4585 public function bidiSort($ta, $str, $dir, &$chunkOTLdata, $useGPOS) argument
4590 $numchars = count($chunkOTLdata['char_data']);
4612 if ($chunkOTLdata['char_data'][$i]['uni'] == 8235) { // RLE
4622 } elseif ($chunkOTLdata['char_data'][$i]['uni'] == 8234) { // LRE
4632 } elseif ($chunkOTLdata['char_data'][$i]['uni'] == 8238) { // RLO
4642 } elseif ($chunkOTLdata['char_data'][$i]['uni'] == 8237) { // LRO
4652 } elseif ($chunkOTLdata['char_data'][$i]['uni'] == 8236) { // PDF
4663 } elseif ($chunkOTLdata['char_data'][$i]['uni'] == 10) { // NEW LINE
4675 $chardir = $chunkOTLdata['char_data'][$i]['bidi_class'];
4678 if (isset($chunkOTLdata['GPOSinfo'][$i])) {
[all …]
DMpdf.php25428 function magic_reverse_dir(&$chunk, $dir, &$chunkOTLdata) argument
25456 if (empty($chunkOTLdata)) {
25457 $this->getBasicOTLdata($chunkOTLdata, $unicode, $isStrong);
25463 …list($chunk, $rtl_content) = $this->otl->bidiSort($unicode, $chunk, $dir, $chunkOTLdata, $useGPOS);
25474 function getBasicOTLdata(&$chunkOTLdata, $unicode, &$is_strong) argument
25480 $chunkOTLdata['group'] = '';
25481 $chunkOTLdata['GPOSinfo'] = [];
25482 $chunkOTLdata['char_data'] = [];
25487 $chunkOTLdata['char_data'][] = ['bidi_class' => $ucd_record[2], 'uni' => $char];
25494 $chunkOTLdata['group'] .= 'M';
[all …]