Searched refs:mixin (Results 1 - 12 of 12) sorted by relevance
/third_party/node/deps/npm/node_modules/@isaacs/cliui/build/lib/ |
H A D | index.js | 54 if (columns.length > 1 && mixin.stringWidth(columns[0]) > leftColumnWidth) { 55 leftColumnWidth = Math.min(Math.floor(this.width * 0.5), mixin.stringWidth(columns[0])); 80 const noAnsi = mixin.stripAnsi(str); 102 if (wrapWidth > mixin.stringWidth(col)) { 103 ts += ' '.repeat(wrapWidth - mixin.stringWidth(col)); 109 if (mixin.stringWidth(ts) < wrapWidth) { 113 ts += ' '.repeat(w - mixin.stringWidth(ts) - 1); 149 const targetTextWidth = mixin.stringWidth(target.trimEnd()); 175 wrapped = mixin.wrap(col.text, this.negatePadding(col), { hard: true }).split('\n'); 219 return col.width || mixin [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | declarationsForFileShadowingGlobalNoError.js | 13 export const mixin = (Base: Constructor) => { 43 exports.mixin = void 0;
44 var mixin = function (Base) {
function 54 exports.mixin = mixin;
64 export declare const mixin: (Base: Constructor) => {
|
H A D | declarationEmitLocalClassDeclarationMixin.js | 4 function mixin<B extends Constructor<{}>>(Base: B) { 15 export const Mixed = mixin(Unmixed); 52 function mixin(Base) {
function 71 exports.Mixed = mixin(Unmixed);
|
H A D | underscoreTest1.js | 631 mixin(object: any): void; 874 _.mixin({ 1062 _.mixin({
|
/third_party/jsframework/runtime/main/reactivity/ |
H A D | state.js | 46 options['mixins'].forEach(mixin => { 47 if(typeof mixin == 'object') { 48 Object.keys(mixin).forEach(key => { 49 vm[key] = mixin[key] 52 else if (typeof mixin == 'function') { 53 vm[mixin.name] = mixin.bind(vm) 56 aceConsole.error("[JS Framework] mixin must be plain object or function")
|
/third_party/skia/third_party/externals/angle2/infra/specs/ |
H A D | generate_test_spec_json.py | 122 # swarming mixin. 129 for mixin in seen_mixins: 130 if mixin in found_mixins: 132 assert (mixin in chromium_generator.mixins) 133 found_mixins[mixin] = chromium_generator.mixins[mixin]
|
/third_party/node/deps/v8/tools/mb/ |
H A D | mb.py | 459 # Figure out the whole list of mixins, and check that every mixin 460 # listed by a config or another mixin actually exists. 463 for mixin in mixins: 464 if not mixin in self.mixins: 465 errs.append('Unknown mixin "%s" referenced by config "%s".' % 466 (mixin, config)) 467 referenced_mixins.add(mixin) 469 for mixin in self.mixins: 470 for sub_mixin in self.mixins[mixin].get('mixins', []): 472 errs.append('Unknown mixin " [all...] |
/third_party/node/deps/npm/node_modules/columnify/ |
H A D | columnify.js | 47 options = mixin({}, DEFAULTS, options); 71 columns[columnName] = mixin(column, columnConfigs[columnName]); 246 function mixin() { function
|
H A D | index.js | 41 options = mixin({}, DEFAULTS, options) 65 columns[columnName] = mixin(column, columnConfigs[columnName]) 234 function mixin(...args) {
|
/third_party/node/test/fixtures/wpt/resources/webidl2/lib/ |
H A D | writer.js | 99 ret += `interface mixin ${it.name} `; 175 "interface mixin": interface_mixin,
|
/third_party/python/Lib/test/ |
H A D | test_concurrent_futures.py | 194 def create_executor_tests(mixin, bases=(BaseTestCase,), 209 % (strip_mixin(exe.__name__), strip_mixin(mixin.__name__))) 210 cls = type(name, (mixin,) + (exe,) + bases, {}) 1113 # arguably this could go in another class w/o that mixin. 1136 # arguably this could go in another class w/o that mixin. 1145 # arguably this could go in another class w/o that mixin.
|
/third_party/node/test/fixtures/wpt/resources/ |
H A D | idlharness.js | 406 "interface mixin", 447 case "interface mixin": 605 var mixin = this.members[id]; 606 if (!mixin) { 609 return mixin; 794 case 'interface mixin':
|
Completed in 11 milliseconds