Home
last modified time | relevance | path

Searched refs:mixin (Results 1 – 25 of 100) sorted by relevance

1234

/plugin/asciidocjs/node_modules/cliui/build/lib/
Dindex.js52 if (columns.length > 1 && mixin.stringWidth(columns[0]) > leftColumnWidth) {
53 … leftColumnWidth = Math.min(Math.floor(this.width * 0.5), mixin.stringWidth(columns[0]));
78 const noAnsi = mixin.stripAnsi(str);
100 if (wrapWidth > mixin.stringWidth(col)) {
101 ts += ' '.repeat(wrapWidth - mixin.stringWidth(col));
107 if (mixin.stringWidth(ts) < wrapWidth) {
108 ts += ' '.repeat((width || 0) - mixin.stringWidth(ts) - 1);
142 const targetTextWidth = mixin.stringWidth(target.trimRight());
168 wrapped = mixin.wrap(col.text, this.negatePadding(col), { hard: true }).split('\n');
210 return col.width || mixin.stringWidth(col.text);
[all …]
/plugin/asciidocjs/node_modules/pug-code-gen/
Dindex.js120 var mixin = this.mixins[mixinNames[i]];
121 if (!mixin.used) {
122 for (var x = 0; x < mixin.instances.length; x++) {
123 for (var y = mixin.instances[x].start; y < mixin.instances[x].end; y++) {
428 visitMixin: function(mixin){ argument
430 var args = mixin.args || '';
431 var block = mixin.block;
432 var attrs = mixin.attrs;
433 var attrsBlocks = this.attributeBlocks(mixin.attributeBlocks);
435 var dynamic = mixin.name[0]==='#';
[all …]
/plugin/asciidocjs/node_modules/core-js/library/modules/
D_object-define.js6 module.exports = function define(target, mixin) { argument
7 var keys = ownKeys(toIObject(mixin));
11 while (length > i) dP.f(target, key = keys[i++], gOPD.f(mixin, key));
Dcore.object.make.js6 make: function (proto, mixin) { argument
7 return define(create(proto), mixin);
/plugin/asciidocjs/node_modules/core-js/modules/
D_object-define.js6 module.exports = function define(target, mixin) { argument
7 var keys = ownKeys(toIObject(mixin));
11 while (length > i) dP.f(target, key = keys[i++], gOPD.f(mixin, key));
Dcore.object.make.js6 make: function (proto, mixin) { argument
7 return define(create(proto), mixin);
/plugin/asciidocjs/node_modules/cliui/build/
Dindex.cjs53 if (columns.length > 1 && mixin.stringWidth(columns[0]) > leftColumnWidth) {
54 … leftColumnWidth = Math.min(Math.floor(this.width * 0.5), mixin.stringWidth(columns[0]));
79 const noAnsi = mixin.stripAnsi(str);
101 if (wrapWidth > mixin.stringWidth(col)) {
102 ts += ' '.repeat(wrapWidth - mixin.stringWidth(col));
108 if (mixin.stringWidth(ts) < wrapWidth) {
109 ts += ' '.repeat((width || 0) - mixin.stringWidth(ts) - 1);
143 const targetTextWidth = mixin.stringWidth(target.trimRight());
169 wrapped = mixin.wrap(col.text, this.negatePadding(col), { hard: true }).split('\n');
211 return col.width || mixin.stringWidth(col.text);
[all …]
/plugin/revealjs/css/theme/template/
Dmixins.scss1 @mixin vertical-gradient( $top, $bottom ) {
11 @mixin horizontal-gradient( $top, $bottom ) {
21 @mixin radial-gradient( $outer, $inner, $type: circle ) {
Dsettings.scss43 @mixin bodyBackground() {
/plugin/asciidocjs/node_modules/lodash/
Dmixin.js45 function mixin(object, source, options) { function
74 module.exports = mixin;
/plugin/datatables/assets/datatables.net-buttons/css/
Dmixins.scss10 @mixin dtb-two-stop-gradient($fromColor, $toColor) {
16 @mixin dtb-radial-gradient ($fromColor, $toColor ) {
22 @mixin dtb-fixed-collection {
185 @mixin dtb-processing {
/plugin/asciidocjs/node_modules/pug-parser/
Dindex.js878 var mixin = { variable
891 this.tag(mixin);
892 if (mixin.code) {
893 mixin.block.nodes.push(mixin.code);
894 delete mixin.code;
896 if (mixin.block.nodes.length === 0) mixin.block = null;
897 return mixin;
911 var mixin = { variable
922 return mixin;
/plugin/asciidocjs/node_modules/yargs-parser/build/lib/
Dyargs-parser.js9 let mixin; variable
12 mixin = _mixin;
69 const __ = opts.__ || mixin.format;
546 val = typeof value === 'string' ? mixin.normalize(value) : value;
581 value = val.map((val) => { return mixin.normalize(val); });
583 value = mixin.normalize(val);
610 const resolvedConfigPath = mixin.resolve(mixin.cwd(), configPath);
625 config = mixin.require(resolvedConfigPath);
674 const env = mixin.env();
/plugin/revealjs/css/theme/source/
Dbeige.scss31 @mixin bodyBackground() {
Dleague.scss26 @mixin bodyBackground() {
Dsky.scss38 @mixin bodyBackground() {
Dsolarized.scss55 // @mixin bodyBackground() {
/plugin/asciidocjs/node_modules/lodash/fp/
D_baseConvert.js222 'mixin': function(mixin) { method
226 return mixin(func, Object(source));
235 mixin(func, Object(source));
/plugin/sequencediagram/bower_components/lodash/fp/
D_baseConvert.js222 'mixin': function(mixin) { argument
226 return mixin(func, Object(source));
235 mixin(func, Object(source));
/plugin/asciidocjs/node_modules/pug/
DHistory.md79 …* Check mixin arguments are valid JavaScript expressions ([@ForbesLindesay](http://www.forbeslinde…
94 …* Allow optional white space after `+` when calling a mixin ([@char101](https://github.com/char101…
98 …* Fix error reporting when mixin block was followed by blank lines ([@ForbesLindesay](http://www.f…
160 …* Fix a corner case where a mixin was called with `&attributes` but no other attributes and a bloc…
165 …* Fix a corner case where a mixin was called with `&attributes` but no other attributes and a bloc…
188 * Support mixin blocks at the end of files ([@ForbesLindesay](http://www.forbeslindesay.co.uk/))
209 …* Fix mixin/block interaction ([@ForbesLindesay](http://www.forbeslindesay.co.uk/) & [@paulyoung](…
210 …* Ignore trailing space after mixin declaration ([@ForbesLindesay](http://www.forbeslindesay.co.uk…
221 * Allow interpolation for mixin names ([@jeromew](https://github.com/jeromew)
424 * Added mixin tag-like behaviour [chowey]
[all …]
/plugin/asciidocjs/node_modules/yargs-parser/build/
Dindex.cjs103 let mixin;
106 mixin = _mixin;
157 const __ = opts.__ || mixin.format;
569 val = typeof value === 'string' ? mixin.normalize(value) : value;
600 value = val.map((val) => { return mixin.normalize(val); });
602 value = mixin.normalize(val);
625 const resolvedConfigPath = mixin.resolve(mixin.cwd(), configPath);
640 config = mixin.require(resolvedConfigPath);
678 const env = mixin.env();
/plugin/syntaxhighlighter3/sxh3/src/sass/
DshCore.scss1 @mixin round_corners_custom($top, $right, $bottom, $left) {
6 @mixin round_corners($radius) {
/plugin/sequencediagram/bower_components/lodash/dist/
Dlodash.fp.js302 'mixin': function(mixin) { argument
306 return mixin(func, Object(source));
315 mixin(func, Object(source));
/plugin/sequencediagram/bower_components/lodash/test/
Dtest-fp.js1507 fp.mixin(source);
1521 fp.mixin(new Foo);
1536 fp.mixin({ 'each': source.a });
1551 fp.mixin.apply(fp, index ? [1] : []);
1568 var object = { 'mixin': convert('mixin', _.mixin) }; property
1571 Foo.mixin = object.mixin;
1572 Foo.mixin(source);
1577 object.mixin(source);
/plugin/mikioplugin/inc/stemmechanics/lesserphp/
H A Dlessc.inc.php778 foreach ($mixins as $mixin) {
779 if ($mixin === $block && !$orderedArgs) {
784 if (isset($mixin->parent->scope)) {
787 $mixinParentEnv->storeParent = $mixin->parent->scope;
791 if (isset($mixin->args)) {
794 $this->zipSetArgs($mixin->args, $orderedArgs, $keywordArgs);
797 $oldParent = $mixin->parent;
798 if ($mixin != $block) $mixin->parent = $block;
800 foreach ($this->sortProps($mixin->props) as $subProp) {
814 $this->compileProp($subProp, $mixin, $out);
[all …]

1234