Home
last modified time | relevance | path

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

/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DOtl.php4640 $dos = Ucdn::BIDI_CLASS_R;
4713 $chardata[$i]['sor'] = max($left, $level) % 2 ? Ucdn::BIDI_CLASS_R : Ucdn::BIDI_CLASS_L;
4714 $chardata[$i]['eor'] = max($right, $level) % 2 ? Ucdn::BIDI_CLASS_R : Ucdn::BIDI_CLASS_L;
4744 } elseif (($chardata[$j]['type'] == Ucdn::BIDI_CLASS_L) || ($chardata[$j]['type'] == Ucdn::BIDI_CLASS_R)) {
4761 $chardata[$i]['type'] = Ucdn::BIDI_CLASS_R;
4822 } elseif ($chardata[$j]['type'] == Ucdn::BIDI_CLASS_R) {
4841 } elseif ($chardata[($i - 1)]['type'] == Ucdn::BIDI_CLASS_R || $chardata[($i - 1)]['type'] == Ucdn::BIDI_CLASS_EN || $chardata[($i - 1)]['type'] == Ucdn::BIDI_CLASS_AN) {
4842 $left = Ucdn::BIDI_CLASS_R;
4858 } elseif ($chardata[($j + 1)]['type'] == Ucdn::BIDI_CLASS_R || $chardata[($j + 1)]['type'] == Ucdn::BIDI_CLASS_EN || $chardata[($j + 1)]['type'] == Ucdn::BIDI_CLASS_AN) {
4859 $right = Ucdn::BIDI_CLASS_R;
[all...]
H A DUcdn.php684 const BIDI_CLASS_R = 3; define in Mpdf\\Ucdn