Home
last modified time | relevance | path

Searched refs:hexString (Results 1 – 6 of 6) sorted by path

/plugin/dokucrypt/
H A Dscript.js772 function hexToByteArray(hexString) { argument
774 if (hexString.length % 2) { return; } // must have even length
775 if (hexString.indexOf("0x") === 0 || hexString.indexOf("0X") === 0) {
776 hexString = hexString.substring(2);
778 for (var i = 0; i<hexString.length; i += 2) {
779 byteArray[Math.floor(i/2)] = parseInt(hexString.slice(i, i+2), 16);
/plugin/dokucrypt2/
H A Dscript.js844 function hexToByteArray(hexString) { argument
846 if (hexString.length % 2) { return; } // must have even length
847 if (hexString.indexOf("0x") === 0 || hexString.indexOf("0X") === 0) {
848 hexString = hexString.substring(2);
850 for (var i = 0; i<hexString.length; i += 2) {
851 byteArray[Math.floor(i/2)] = parseInt(hexString.slice(i, i+2), 16);
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfHexString.php74 * @param mixed $hexString
78 public static function ensure($hexString) argument
80 return PdfType::ensureType(self::class, $hexString, 'Hex string value expected.');
/plugin/jdraw/lib/
H A Djgraphx.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DEditorActions.java1674 graph.setCellStyles(key, mxUtils.hexString(newColor)); in actionPerformed()
H A DEditorActions.java.bak1674 graph.setCellStyles(key, mxUtils.hexString(newColor));