Lines Matching refs:inspect

29787   BN.prototype.inspect = function inspect() {
33402 BN.prototype[Symbol.for('nodejs.util.inspect.custom')] = inspect;
33404 BN.prototype.inspect = inspect;
33407 BN.prototype.inspect = inspect;
33410 function inspect() {
39351 Buffer.prototype.inspect = function inspect() {
46132 Point.prototype.inspect = function inspect() {
46458 Point.prototype.inspect = function inspect() {
46919 Point.prototype.inspect = function inspect() {
47395 JPoint.prototype.inspect = function inspect() {
47875 KeyPair.prototype.inspect = function inspect() {
47876 … ' + (this.priv && this.priv.toString(16, 2)) + ' pub: ' + (this.pub && this.pub.inspect()) + ' >';
73958 inspect = _require2.inspect;
73960 var custom = inspect && inspect.custom || 'inspect';
74137 return inspect(this, _objectSpread({}, options, {
81191 if (util && util.inspect && util.inspect.custom) {
81192 module.exports.prototype[util.inspect.custom] = function () {
81193 var obj = util.inspect({
81877 objects.push(inspect(arguments[i]));
81913 str += ' ' + inspect(x);
81989 function inspect(obj, opts) {
82016 exports.inspect = inspect; // http://en.wikipedia.org/wiki/ANSI_escape_code#graphics
82018 inspect.colors = {
82034 inspect.styles = {
82047 var style = inspect.styles[styleType];
82050 … return "\x1B[" + inspect.colors[style][0] + 'm' + str + "\x1B[" + inspect.colors[style][1] + 'm';
82071 …if (ctx.customInspect && value && isFunction(value.inspect) && // Filter out the util module, it's…
82072 …value.inspect !== exports.inspect && // Also filter out any prototype objects using the circular c…
82074 var ret = value.inspect(recurseTimes, ctx);