Lines Matching refs:mod
82 Module.prototype.createModuleLinkDom = function (mod) { argument
83 let dom = domNewElem('a', mod.path);
84 dom.setAttribute('href', '#mod_' + mod.id);
85 dom.setAttribute('data-mod-id', mod.id);
91 this.linkDoms[mod.id] = dom;
192 for (let mod of mods) {
193 for (let tag of mod.tagIds) {
380 for (let mod of mods) {
381 mod.hideDom();
387 for (let mod of mods) {
388 mod.showDom();
394 for (let mod of mods) {
395 if (pred(mod)) {
396 mod.showDom();
404 showModulesByFilter(function (mod) { argument
405 return mod.isTagged(tagId);
432 return function (mod) { argument
433 return pattern.test(mod.path);
437 function exactMatcher(mod) { argument
438 return mod.path == path;
458 showModulesByFilter(function (mod) { argument
459 return mod.cls == cls;
482 let mod = mods[modId];
485 if (mod.deps.length > 0) {
486 for (let depId of mod.deps[0]) {