Home
last modified time | relevance | path

Searched refs:wrapped (Results 1 – 25 of 141) sorted by relevance

123456

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
DNoSeekStreamTest.php21 $wrapped = new NoSeekStream($s);
22 $this->assertFalse($wrapped->isSeekable());
23 $this->assertFalse($wrapped->seek(2));
29 $wrapped = new NoSeekStream($s);
30 $wrapped->close();
31 $this->assertFalse($wrapped->write('foo'));
38 $wrapped = new NoSeekStream($s1);
39 $wrapped->attach($s2->detach());
40 $this->assertEquals('bar', (string) $wrapped);
/plugin/asciidocjs/node_modules/lodash/
DwrapperReverse.js29 var wrapped = value;
31 wrapped = new LazyWrapper(this);
33 wrapped = wrapped.reverse();
34 wrapped.__actions__.push({
39 return new LodashWrapper(wrapped, this.__chain__);
/plugin/asciidocjs/node_modules/cliui/build/lib/
Dstring-utils.js16 let wrapped = '';
19 wrapped += '\n';
21 wrapped += str.charAt(i);
24 wrapped = `${start}${wrapped}${end}`;
26 return wrapped;
Dindex.js161 let wrapped;
168 wrapped = mixin.wrap(col.text, this.negatePadding(col), { hard: true }).split('\n');
171 wrapped = col.text.split('\n');
174 wrapped.unshift('.' + '-'.repeat(this.negatePadding(col) + 2) + '.');
175 wrapped.push("'" + '-'.repeat(this.negatePadding(col) + 2) + "'");
179 wrapped.unshift(...new Array(col.padding[top] || 0).fill(''));
180 wrapped.push(...new Array(col.padding[bottom] || 0).fill(''));
182 wrapped.forEach((str, r) => {
/plugin/html2pdf/html2pdf/html2ps/
Dbox.text.php16 var $wrapped; variable in TextBox
26 $this->wrapped = null;
290 $this->wrapped = array($wrappable,
317 if (!is_null($this->wrapped)) {
318 $parent->_current_x += $this->get_full_width() - $this->wrapped[0][2];
334 return $this->wrapped[0][3];
338 return $this->wrapped[0][2];
463 if (!is_null($this->wrapped)) {
492 $left = $this->wrapped[1];
499 for ($i=0; $i<$this->wrapped[0][0]; $i++) {
[all …]
Dbox.utils.text-align.inc.php17 if (isset($first_box->wrapped) && !is_null($first_box->wrapped)) {
31 if (isset($first_box->wrapped) && !is_null($first_box->wrapped)) {
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
Dchaining.js91 var wrapped = _(512);
92 assert.strictEqual(wrapped.toJSON(), 512);
93 assert.strictEqual(wrapped.valueOf(), 512);
94 assert.strictEqual(+wrapped, 512);
95 assert.strictEqual(wrapped.toString(), '512');
96 assert.strictEqual('' + wrapped, '512');
/plugin/upgrade/myvendor/splitbrain/php-cli/src/
DTableFormatter.php193 $wrapped = array();
197 $wrapped[$col] = explode("\n", $this->wordwrap($texts[$col], $width, "\n", true));
198 $len = count($wrapped[$col]);
209 if (isset($wrapped[$col][$i])) {
210 $val = $wrapped[$col][$i];
/plugin/authsmartcard/auth/
Dindex.php31 $wrapped = wordwrap($cert, 64, "\n", true); variable
32 …$_SESSION['SSL_CLIENT_CERT'] = "-----BEGIN CERTIFICATE-----".PHP_EOL.$wrapped.PHP_EOL."-----END CE…
/plugin/asciidocjs/node_modules/lodash/fp/
D_baseConvert.js471 wrapped = func,
475 wrapped = wrapper(func);
479 wrapped = wrapImmutable(func, cloneArray);
482 wrapped = wrapImmutable(func, createCloner(func));
485 wrapped = wrapImmutable(func, cloneByPath);
495 ? castFixed(realName, castRearg(realName, wrapped, aryKey), aryKey)
496 : castRearg(realName, castFixed(realName, wrapped, aryKey), aryKey);
506 result || (result = wrapped);
/plugin/sequencediagram/bower_components/lodash/fp/
D_baseConvert.js471 wrapped = func,
475 wrapped = wrapper(func);
479 wrapped = wrapImmutable(func, cloneArray);
482 wrapped = wrapImmutable(func, createCloner(func));
485 wrapped = wrapImmutable(func, cloneByPath);
495 ? castFixed(realName, castRearg(realName, wrapped, aryKey), aryKey)
496 : castRearg(realName, castFixed(realName, wrapped, aryKey), aryKey);
506 result || (result = wrapped);
/plugin/asciidocjs/node_modules/pug-filters/node_modules/cliui/
Dindex.js193 wrapped
200 if (_this.wrap) wrapped = wrap.hard(_this._negatePadding(col))(col.text).split('\n')
201 else wrapped = col.text.split('\n')
205 for (i = 0; i < (col.padding[top] || 0); i++) wrapped.unshift('')
206 for (i = 0; i < (col.padding[bottom] || 0); i++) wrapped.push('')
209 wrapped.forEach(function (str, r) {
/plugin/sequencediagram/bower_components/lodash/dist/
Dlodash.fp.js551 wrapped = func,
555 wrapped = wrapper(func); property
559 wrapped = wrapImmutable(func, cloneArray);
562 wrapped = wrapImmutable(func, createCloner(func));
565 wrapped = wrapImmutable(func, cloneByPath);
575 ? castFixed(realName, castRearg(realName, wrapped, aryKey), aryKey)
576 : castRearg(realName, castFixed(realName, wrapped, aryKey), aryKey);
586 result || (result = wrapped);
/plugin/asciidocjs/node_modules/cliui/build/
Dindex.cjs162 let wrapped;
169 wrapped = mixin.wrap(col.text, this.negatePadding(col), { hard: true }).split('\n');
172 wrapped = col.text.split('\n');
175 wrapped.unshift('.' + '-'.repeat(this.negatePadding(col) + 2) + '.');
176 wrapped.push("'" + '-'.repeat(this.negatePadding(col) + 2) + "'");
180 wrapped.unshift(...new Array(col.padding[top] || 0).fill(''));
181 wrapped.push(...new Array(col.padding[bottom] || 0).fill(''));
183 wrapped.forEach((str, r) => {
/plugin/asciidocjs/node_modules/clean-css/lib/optimizer/
Dwrap-for-optimizing.js21 var wrapped = [];
44 wrapped.unshift(single);
47 return wrapped;
/plugin/asciidocjs/node_modules/clean-css/lib/optimizer/level-2/
Dreduce-non-adjacent.js59 var wrapped = [];
62 wrapped.push([list[i][1]]);
65 return wrapped;
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Security/
H A DDigestMD5SecurityLayer.php78 $wrapped = $this->encrypt($data, $context);
80 $wrapped = $this->sign($data, $context);
84 $this->validateBufferLength($wrapped, $context);
87 return $wrapped;
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
Dlist-marker-in-paragraph.md3 Because a hard-wrapped line in the
/plugin/sequencediagram/bower_components/lodash/test/
Dtest.js1136 var wrapped = _(value);
1137 return _(wrapped) === wrapped;
1152 var wrapped = _(lodashBizarro(value)),
1153 unwrapped = wrapped.value();
1155 return wrapped instanceof _ &&
1600 wrapped = _(array).map(identity).at(paths);
1602 assert.deepEqual(wrapped.value(), _.at(_.map(array, identity), paths));
2452 var wrapped = _({ 'a': 0 });
2453 assert.strictEqual(_.chain(wrapped), wrapped);
2454 assert.strictEqual(wrapped.chain(), wrapped);
[all …]
/plugin/refnotes/lang/en/
D__template.txt7 …* Define notes using [[wp>BibTeX]] syntax. BibTeX entries have to be wrapped into a ''<code>'' sec…
69 The dataentry below is wrapped into ''<code>'' section to be properly presented in absence of [[dok…
/plugin/chordsheets/
H A DCHANGELOG.md29 …te.com/) syntax `%...[<chordname>]` *This may change in the future being wrapped by `<chord></chor…
/plugin/indexnumber/
DREADME.md5 or "Fig. 3". The content between the `idxnum` tags will be wrapped in a
/plugin/jdraw/src/com/mxgraph/examples/swing/
DCustomCanvas.java.bak38 // Indirection for wrapped swing canvas inside image canvas (used for creating
/plugin/asciidocjs/node_modules/nunjucks/src/
Denvironment.js163 var wrapped = func;
167 this.filters[name] = wrapped;
/plugin/statistics/vendor/mustangostang/spyc/php4/
Dspyc.php4366 $wrapped = wordwrap($value,$this->_dumpWordWrap,"\n$indent");
367 $value = ">\n".$indent.$wrapped;

123456