Home
last modified time | relevance | path

Searched refs:maxArrayLength (Results 1 – 11 of 11) sorted by relevance

/third_party/node/test/parallel/
Dtest-util-inspect.js219 assert.strictEqual(util.inspect(ab, { showHidden: true, maxArrayLength: 2 }), property
222 assert.strictEqual(util.inspect(ab, { showHidden: true, maxArrayLength: 1 }), property
572 util.inspect(a, { maxArrayLength: 4 }), property
577 maxArrayLength: 2 property
1279 assert.strictEqual(util.inspect(map.entries(), { maxArrayLength: 1 }), property
1287 util.inspect(keys, { maxArrayLength: 0 }), property
1310 util.inspect(keys, { maxArrayLength: 1 }), property
1483 assert(!util.inspect(x, { maxArrayLength: 101 }).endsWith('1 more item\n]')); property
1485 util.inspect(x, { maxArrayLength: -1 }), property
1488 assert.strictEqual(util.inspect(x, { maxArrayLength: 0 }), property
[all …]
Dtest-assert-deep.js25 maxArrayLength: Infinity, property
/third_party/node/lib/internal/util/
Dinspect.js186 maxArrayLength: 100, property
262 maxArrayLength: ctx.maxArrayLength, property
322 maxArrayLength: inspectDefaultOptions.maxArrayLength, property
362 if (ctx.maxArrayLength === null) ctx.maxArrayLength = Infinity;
1440 if (ctx.maxArrayLength < output.length) {
1537 if (ctx.maxArrayLength < output.length) {
1730 hexSlice(buffer, 0, MathMin(ctx.maxArrayLength, buffer.length)),
1733 const remaining = buffer.length - ctx.maxArrayLength;
1741 const len = MathMin(MathMax(0, ctx.maxArrayLength), valLen);
1759 const maxLength = MathMin(MathMax(0, ctx.maxArrayLength), length);
[all …]
/third_party/node/deps/v8/src/builtins/
Dtyped-array.tq29 const maxArrayLength = kArrayBufferMaxByteLength >>> this.sizeLog2;
30 if (length > maxArrayLength) goto IfInvalid;
/third_party/node/lib/internal/assert/
Dassertion_error.js68 maxArrayLength: Infinity, property
/third_party/node/deps/npm/lib/commands/
Dview.js282 maxArrayLength: null, property
/third_party/node/lib/internal/console/
Dconstructor.js519 maxArrayLength: 3, property
/third_party/node/doc/api/
Dutil.md563 description: The `maxArrayLength` option is supported now; in particular,
588 * `maxArrayLength` {integer} Specifies the maximum number of `Array`,
721 inspected. If there are more entries than `maxArrayLength`, there is no
1003 util.inspect.defaultOptions.maxArrayLength = null;
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md5385 …thub.com/nodejs/node/commit/c3243de47a)] - **util**: special handle `maxArrayLength` while groupin…
5488 …s/node/commit/6129376cd9)] - **test**: add coverage for sparse array maxArrayLength (went.out) [#2…
DCHANGELOG_V8.md3183 …s/node/commit/de10c0f515)] - **util**: fix inspect array w. negative maxArrayLength (Ruben Bridgew…
DCHANGELOG_V6.md4777 …* Added a `maxArrayLength` option to truncate the formatting of Arrays. (James M Snell) [#6334](ht…