Home
last modified time | relevance | path

Searched refs:depth (Results 176 – 200 of 271) sorted by last modified time

1234567891011

/plugin/sequencediagram/bower_components/lodash/doc/
H A DREADME.md957 <h3 id="_flattendeptharray-depth1"><code>_.flattenDepth(array, [depth=1])</code></h3>
960 Recursively flatten `array` up to `depth` times.
967 2. `[depth=1]` *(number)*: The maximum recursion depth.
2768 …tee_identity-depth1"><code>_.flatMapDepth(collection, [iteratee=_.identity], [depth=1])</code></h3>
2772 mapped results up to `depth` times.
2780 3. `[depth=1]` *(number)*: The maximum recursion depth.
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest.js6419 lodashStable.each([-1, 0], function(depth) { argument
6420 assert.deepEqual(_.flatMapDepth(array, identity, depth), [1, [2, [3, [4]], 5]]);
6532 lodashStable.each([-1, 0], function(depth) { argument
6533 assert.deepEqual(_.flattenDepth(array, depth), [1, [2, [3, [4]], 5]]);
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.js2933 function baseFlatten(array, depth, predicate, isStrict, result) { argument
2942 if (depth > 0 && predicate(value)) {
2943 if (depth > 1) {
2945 baseFlatten(value, depth - 1, predicate, isStrict, result);
7369 function flattenDepth(array, depth) {
7374 depth = depth === undefined ? 1 : toInteger(depth);
7375 return baseFlatten(array, depth);
9305 function flatMapDepth(collection, iteratee, depth) {
9306 depth = depth === undefined ? 1 : toInteger(depth);
9307 return baseFlatten(map(collection, iteratee), depth);
H A Dlodash.core.js536 function baseFlatten(array, depth, predicate, isStrict, result) { argument
545 if (depth > 0 && predicate(value)) {
546 if (depth > 1) {
548 baseFlatten(value, depth - 1, predicate, isStrict, result);
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js2933 function baseFlatten(array, depth, predicate, isStrict, result) { argument
2942 if (depth > 0 && predicate(value)) {
2943 if (depth > 1) {
2945 baseFlatten(value, depth - 1, predicate, isStrict, result);
7369 function flattenDepth(array, depth) {
7374 depth = depth === undefined ? 1 : toInteger(depth);
7375 return baseFlatten(array, depth);
9305 function flatMapDepth(collection, iteratee, depth) {
9306 depth = depth === undefined ? 1 : toInteger(depth);
9307 return baseFlatten(map(collection, iteratee), depth);
H A D.travis.yml33 depth: 10
91 …- git clone --depth=10 --branch=master git://github.com/lodash/lodash-cli ./node_modules/lodash-cli
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js22009 onFunctionCall: function(context, frame, depth, calling) argument
22012 Firebug.Console.openGroup([frame, "depth:"+depth], context);
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst86 This annotation can be defined on a property to limit the depth to which the
H A Dxml_reference.rst37 max-depth="2"
72 max-depth="2"
91 max-depth="2"
/plugin/findologicxmlexport/vendor/doctrine/instantiator/docs/en/
H A Dsidebar.rst2 :depth: 3
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Dd3.min.js4depth=0;null!=(u=o.pop());)if(a.push(u),(c=e.call(n,u,u.depth))&&(l=c.length)){for(var l,c,f;--l>=…
5 ….length?(c=n,u):c},u.padding=function(n){function t(t){var e=n.call(u,t,t.depth);return null==e?Oi…
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dsidebar.rst2 :depth: 3
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/
H A DRenderer.php233 $depth = substr_count($id, '/');
237 $depth++;
240 return str_repeat('../', $depth);
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsBasicTests.yml70 depth.
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DJsonDeserializationVisitor.php24 private $depth = 512; variable in JMS\\Serializer\\JsonDeserializationVisitor
38 int $depth = 512 argument
42 $this->depth = $depth;
227 $decoded = json_decode($str, true, $this->depth, $this->options);
H A DDeserializationContext.php14 private $depth = 0; variable in JMS\\Serializer\\DeserializationContext
28 return $this->depth;
33 $this->depth += 1;
38 if ($this->depth <= 0) {
42 $this->depth -= 1;
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/
H A DInvocation.php93 * @param int $depth Depth.
99 $depth = -1 argument
104 $this->_depth = $depth;
143 * @param int $depth Depth.
146 public function setDepth($depth) argument
149 $this->_depth = $depth;
/plugin/findologicxmlexport/vendor/hoa/file/
H A DFinder.php158 * @param int $depth Depth.
161 public function maxDepth($depth) argument
163 $this->_maxDepth = $depth;
/plugin/findologicxmlexport/vendor/jms/serializer/src/Visitor/Factory/
H A DJsonDeserializationVisitorFactory.php23 private $depth = 512; variable in JMS\\Serializer\\Visitor\\Factory\\JsonDeserializationVisitorFactory
27 return new JsonDeserializationVisitor($this->options, $this->depth);
36 public function setDepth(int $depth): self argument
38 $this->depth = $depth;
/plugin/findologicxmlexport/vendor/jms/metadata/
H A D.travis.yml6 depth: 1
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst226 Limiting serialization depth of some properties
228 You can limit the depth of what will be serialized in a property with the
256 In this example, serializing a user, because the max depth of the ``$friends``
258 and because the the max depth of the ``$posts`` property is 2, the posts would
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/Rule/
H A DInvocation.php102 $depth = 42
104 ->when($result = new SUT($rule, $data, $todo, $depth))
113 ->isEqualTo($depth)
125 $depth = 42,
128 ->when($result = $invocation->setDepth($depth))
141 $depth = 42,
143 $invocation->setDepth($depth)
148 ->isEqualTo($depth);
/plugin/findologicxmlexport/vendor/jms/serializer/
H A D.travis.yml6 depth: 1
H A DCHANGELOG.md39 - Exclude field for depth [\#1022](https://github.com/schmittjoh/serializer/issues/1022)
129 - Serialize doctrine entities load linked entities even if the max depth should stop this behavior …
666 - Max depth produces array of nulls [\#671](https://github.com/schmittjoh/serializer/issues/671)
990 - Max depth strategy [\#4](https://github.com/schmittjoh/serializer/pull/4) ([adrienbrault](https:/…
/plugin/findologicxmlexport/vendor/jms/serializer/src/Annotation/
H A DMaxDepth.php17 public $depth; variable in JMS\\Serializer\\Annotation\\MaxDepth

1234567891011