Searched refs:_extend (Results 1 – 16 of 16) sorted by relevance
/third_party/node/test/parallel/ |
D | test-util.js | 106 assert.deepStrictEqual(util._extend({ a: 1 }), { a: 1 }); 107 assert.deepStrictEqual(util._extend({ a: 1 }, []), { a: 1 }); 108 assert.deepStrictEqual(util._extend({ a: 1 }, null), { a: 1 }); 109 assert.deepStrictEqual(util._extend({ a: 1 }, true), { a: 1 }); 110 assert.deepStrictEqual(util._extend({ a: 1 }, false), { a: 1 }); 111 assert.deepStrictEqual(util._extend({ a: 1 }, { b: 2 }), { a: 1, b: 2 }); 112 assert.deepStrictEqual(util._extend({ a: 1, b: 2 }, { b: 3 }), { a: 1, b: 3 });
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
D | validity.py | 84 def _extend(self, lines): member in ValidityCollection 117 self._extend(other.lines) 120 self._extend(other)
|
/third_party/node/lib/ |
D | util.js | 271 function _extend(target, source) { function 354 _extend, property
|
/third_party/node/benchmark/misc/ |
D | util-extend-vs-object-assign.js | 14 fn = util._extend;
|
/third_party/node/benchmark/es/ |
D | spread-assign.js | 24 obj = util._extend({}, src);
|
/third_party/node/test/fixtures/ |
D | tls-connect.js | 60 const optClient = util._extend({
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
D | find-python.js | 6 const extend = require('util')._extend // eslint-disable-line
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | containers.py | 757 def _extend(self, other): member in UnknownFieldSet
|
D | python_message.py | 1357 self._unknown_field_set._extend(msg._unknown_field_set)
|
/third_party/python/Tools/c-analyzer/c_parser/ |
D | info.py | 1446 self._extend(decls) 1582 def _extend(self, decls): member in Declarations
|
/third_party/node/doc/api/ |
D | deprecations.md | 1278 ### DEP0060: `util._extend()` 1292 The [`util._extend()`][] API is deprecated. 3443 [`util._extend()`]: util.md#util_extendtarget-source
|
D | util.md | 2841 ### `util._extend(target, source)` 2853 The `util._extend()` method was never intended to be used outside of internal
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V6.md | 3814 …node/commit/d67ece2f68)] - **util**: improve function signature of `util._extend` (Sakthipriyan Va… 4232 …ttps://github.com/nodejs/node/commit/35c70b5668)] - **benchmark**: `util._extend` vs `object.assig… 4977 * The `util._extend()` method has been deprecated 5021 …d8290286b3)] - **(SEMVER-MAJOR)** **doc**: document deprecation of util.\_extend (Benjamin Gruenba…
|
D | CHANGELOG_V7.md | 720 …node/commit/61e1af2155)] - **lib**: remove unnecessary assignments with \_extend (Sakthipriyan Vai…
|
D | CHANGELOG_IOJS.md | 2376 …/commit/3e67d7e46b80c90faa360d1d0e44dacc444e8e4f)] - http: replace util.\_extend() with \[].slice(…
|
D | CHANGELOG_V8.md | 2496 …ttps://github.com/nodejs/node/commit/6ff397db89)] - **url**: using util.\_extend for improving pro…
|