/plugin/dw2pdf/vendor/mpdf/mpdf/src/Conversion/ |
H A D | DecToRoman.php | 67 $digit = $remainder / (10 ** $i); 70 $romanNumber = $this->formatDigit($digit, $i) . $romanNumber; 84 private function formatDigit($digit, $orderOfMagnitude) argument 86 if ($digit === 0) { 90 if ($digit === 4 || $digit === 9) { 91 return $this->formatFourOrNine($digit, $orderOfMagnitude); 96 if ($digit >= 5) { 97 $digit -= 5; 101 $romanNumber .= $this->formatOneToThree($orderOfMagnitude, $digit); 106 formatFourOrNine($digit, $orderOfMagnitude) global() argument 116 formatOneToThree($orderOfMagnitude, $digit) global() argument [all...] |
/plugin/combo/ComboStrap/ |
H A D | Unit.php | 30 $digit = (double)$m[1]; 46 $digit = $digit * (float)$conversions[$unit]; 49 return $digit;
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/ |
H A D | Code11.php | 53 // calculate check digit C 59 $digit = $code[$i]; 60 if ($digit == '-') { 63 $dval = (int) $digit; 82 // calculate check digit K 86 $digit = $code[$i]; 87 if ($digit == '-') { 90 $dval = (int) $digit;
|
H A D | Msi.php | 76 $digit = $code[$i]; 77 if (!isset($chr[$digit])) { 79 throw new \Mpdf\Barcode\BarcodeException(sprintf('Invalid character "%s" in MSI barcode value "%s"', $digit, $code)); 81 $seq .= $chr[$digit];
|
H A D | S25.php | 63 $digit = $code[$i]; 64 if (!isset($chr[$digit])) { 66 throw new \Mpdf\Barcode\BarcodeException(sprintf('Invalid character "%s" in S25 barcode value "%s"', $digit, $code)); 68 $seq .= $chr[$digit];
|
/plugin/codemirror/dist/modes/ |
H A D | cobol.min.js | 1 …digit:/\d/,digit_or_colon:/[\d:]/,hex:/[0-9a-f]/i,sign:/[+-]/,exponent:/e/i,keyword_char:/[^\s\(\[… property in AnonymousFunction62d85bf80200.n
|
H A D | cobol.min.js.map | 1 …digit","digit_or_colon","hex","sign","exponent","keyword_char","symbol","isNumber","ch","stream","…
|
H A D | mathematica.min.js.map | 1 …the V10 named slots #name). I have never seen someone using more than one digit after #, so we mat…
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
H A D | PHP64.php | 81 list(, $digit) = unpack('N', substr($val, $i, 4)); 84 $digit &= static::MAX_DIGIT; 88 $digit >>= $shift; 90 $digit &= (1 << $shift) - 1; 92 $digit |= ($temp << $shift) & 0x7F000000; 94 $vals[] = $digit;
|
H A D | PHP.php | 1187 $digit = (int) floor($x / static::BASE); 1190 if (!isset($this->value[$digit])) { 1239 return array_map(function ($digit) { 1241 $temp->value = $digit != 0 ? [$digit] : []; 1252 $digit = []; 1260 $digit[] = $temp & $mask; 1276 $temp = $digit[$j] & $mask; 1277 $digit[$j] = ($digit[$j] >> $overflow) | ($newbits << $remaining); 1284 $temp->value = static::trim($digit); 1309 $digit = $val[$i] & $mask; [all …]
|
H A D | PHP32.php | 81 list(, $digit) = unpack('N', substr($val, $i, 4)); 84 $digit >>= 2 * $step; 87 $digit &= static::MAX_DIGIT; 90 $vals[] = $digit;
|
/plugin/svgpureinsert/ |
H A D | helper.php | 75 $digit = (double) $m[1]; 91 $digit = $digit * (float) $conversions[$unit]; 94 return ceil($digit);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/ |
H A D | Strings.php | 330 foreach ($digits as $digit) { 331 $bits .= sprintf('%032b', $digit); 335 foreach ($digits as $digit) { 336 $bits .= sprintf('%064b', $digit);
|
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | Barcode1D.php | 546 // calculate check digit C 560 // calculate check digit K 649 $digit = $code[$i]; 650 if (!isset($chr[$digit])) { 654 $seq .= $chr[$digit]; 692 $digit = $code[$i]; 693 if (!isset($chr[$digit])) { 697 $seq .= $chr[$digit]; 1185 // calculate check digit 1205 // add check digit [all...] |
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/ |
H A D | Core.ColorKeywords.txt |
|
H A D | HTML.Attr.Name.UseCDATA.txt |
|
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/ |
H A D | Idn.php | 605 $digit = self::$basicToDigit[$bytes[$in++] & 0xFF]; 607 if ($digit < 0) { 611 if ($digit > intdiv(self::MAX_INT - $i, $w)) { 615 $i += $digit * $w; 625 if ($digit < $t) {
|
/plugin/dirtylittlehelper/mermaid/editor/docs/ |
H A D | 42.42.js.map | 1 …digit: /[0-9]/,\n digitseq0: /@digit*/,\n xdigit: /[0-9A-Za-z]/,\n xdigitseq0: /@xdigit*/…
|
/plugin/pgn4web/pgn4web/ |
H A D | pgn-standard.txt | 339 following the integer digit sequence. 360 dollar sign character ("$") immediately followed by one or more digit 361 characters. It is terminated just prior to the first non-digit character 362 following the digit sequence. 364 A symbol token starts with a letter or digit character and is immediately 1453 treated as zero digit characters for ordering comparison. 2069 immediately followed by a rank digit. Obviously, the rank digit will be "3" 2209 immediately followed by a rank digit. Obviously, the rank digit will be "3" 2233 letter or a digit or the underscore character. 2277 digit sequence (with at least one digit), a radix point (always "."), and a [all …]
|
/plugin/refnotes/ |
H A D | rendering.php | 886 $digit = $number % 26; 887 $result = $alpha[$digit] . $result;
|
/plugin/codemirror/dist/keymaps/ |
H A D | emacs.min.js.map | 1 …digit","on","maybeClearPrefix","maybeDuplicateInput","prefixPreservingKeys","Alt-G","Ctrl-X","Ctrl…
|
/plugin/davcal/datetimepicker-2.4.5/ |
H A D | jquery.datetimepicker.js | 1074 digit; 1078 …digit = (key !== BACKSPACE && key !== DEL) ? String.fromCharCode((_KEY0 <= key && key <= _KEY9) ? … 1082 digit = '_'; 1089 val = val.substr(0, pos) + digit + val.substr(pos + 1);
|
/plugin/jcapture/lib/ |
H A D | commons-codec-1.3.jar | ... commons.codec.DecoderException
char ch
int index
int digit
public static char[] encodeHex (byte[] ... |
/plugin/jdraw/lib/ |
H A D | commons-codec-1.3.jar | ... commons.codec.DecoderException
char ch
int index
int digit
public static char[] encodeHex (byte[] ... |
/plugin/diagramsnet/lib/math/jax/input/TeX/ |
H A D | jax.js | 19 …digit:/[0-9.]/,number:/^(?:[0-9]+(?:\{,\}[0-9]{3})*(?:\.[0-9]*)*|\.[0-9]+)/,special:{"\\":"Control…
|