Lines Matching refs:decode

2522           var decoded = colCache.decode(range);
2653 this.decode(arguments);
2684 value: function decode(argv) {
2721 this.decode(value);
4915 var decoded = colCache.decode(range);
5405 return textDecoder.decode(chunk);
5856 decode: function decode(value) {
6210 var offset = colCache.decode(fromCell);
6211 var to = colCache.decode(toCell);
11803 var range = typeof model.range === 'string' ? colCache.decode(model.range) : model.range;
16916 var dimensions = colCache.decode(merge);
27964 Entity.prototype.decode = function decode(data, enc, options) {
27965 return this._getDecoder(enc).decode(data, options);
28345 Node.prototype._decode = function decode(input, options) {
28848 var decodedTag = derDecodeTag(buffer, 'Failed to decode tag of "' + tag + '"');
38633 var unpacked = parseKeys.signature.decode(sig, 'der');
50773 exports.decode = function (input) {
54460 data = base64.decode(data);
70125 ndata = asn1.certificate.decode(data, 'der').tbsCertificate.subjectPublicKeyInfo;
70130 ndata = asn1.PublicKey.decode(data, 'der');
70137 return asn1.RSAPublicKey.decode(ndata.subjectPublicKey.data, 'der');
70147 ndata.algorithm.params.pub_key = asn1.DSAparam.decode(ndata.subjectPublicKey.data, 'der');
70160 data = asn1.EncryptedPrivateKey.decode(data, 'der');
70165 ndata = asn1.PrivateKey.decode(data, 'der');
70170 return asn1.RSAPrivateKey.decode(ndata.subjectPrivateKey, 'der');
70175 privateKey: asn1.ECPrivateKey.decode(ndata.subjectPrivateKey, 'der').privateKey
70179 ndata.algorithm.params.priv_key = asn1.DSAparam.decode(ndata.subjectPrivateKey, 'der');
70192 return asn1.RSAPublicKey.decode(data, 'der');
70195 return asn1.RSAPrivateKey.decode(data, 'der');
70200 params: asn1.DSAPrivateKey.decode(data, 'der')
70204 data = asn1.ECPrivateKey.decode(data, 'der');