Lines Matching refs:toString

170 			cb(buffer.toString('base64'));
177 cb('data:application/pdf;base64,' + buffer.toString('base64'));
435 'size: 0x' + kMaxLength().toString(16) + ' bytes')
608 Buffer.prototype.toString = function toString () {
625 str = this.toString('hex', 0, max).match(/.{2}/g).join(' ')
1492 var bytes = utf8ToBytes(value.toString())
1542 arr.toString = BP.toString
1543 arr.toLocaleString = BP.toString
1613 if (n < 16) return '0' + n.toString(16)
1614 return n.toString(16)
1971 var str = Object.prototype.toString;
2193 this.toString = function(){
3056 var fnToString = Function.prototype.toString;
3072 var objToString = objectProto.toString;
13143 lodash.prototype.toString = wrapperToString;
13380 return char.charCodeAt(0).toString(16);
14247 var longestNo = (listItems.length).toString().replace(/./g, '9');
15179 return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';
17262 PDFDocument.prototype.toString = function() {
18817 return Object.prototype.toString.call(arr) == '[object Array]';
18930 return Object.prototype.toString.call(o);
19664 charStr = this.charBuffer.slice(0, this.charLength).toString(this.encoding);
19692 charStr += buffer.toString(this.encoding, 0, end);
19755 res += buf.slice(0, cr).toString(enc);
19762 return buffer.toString(this.encoding);
20187 string = swapBytes(new Buffer('\ufeff' + string, 'utf16le')).toString('binary');
20191 return '<' + object.toString('hex') + '>';
20193 return object.toString();
20207 } else if ({}.toString.call(object) === '[object Object]') {
20324 PDFReference.prototype.toString = function() {
26908 return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
26911 return ctx.stylize(Date.prototype.toString.call(value), 'date');
26934 base = ' ' + RegExp.prototype.toString.call(value);
26953 return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
26996 return '[' + Error.prototype.toString.call(value) + ']';
27181 return Object.prototype.toString.call(o);
27186 return n < 10 ? '0' + n.toString(10) : n.toString(10);
27375 return value.toString();
27378 return value.toString();
27505 return Object.prototype.toString.call(object) == '[object Arguments]';
27582 if (Object.prototype.toString.call(expected) == '[object RegExp]') {
29318 unicode = ('0000' + map[code].toString(16)).slice(-4);
29319 code = (+code).toString(16);
31892 _results.push(encoded.charCodeAt(i).toString(16));
31905 _results.push(encoded.charCodeAt(i).toString(16));
65301 } else if (data[0] === 0x89 && data.toString('ascii', 1, 4) === 'PNG') {