Lines Matching refs:map

264                 map = config.map,
265 starMap = map && map['*'];
304 if (applyMap && map && (baseParts || starMap)) {
314 mapValue = getOwn(map, baseParts.slice(0, j).join('/'));
553 return (mod.require = context.makeRequire(mod.map));
558 if (mod.map.isDefine) {
562 return (mod.exports = defined[mod.map.id] = {});
571 id: mod.map.id,
572 uri: mod.map.url,
574 return (config.config && getOwn(config.config, mod.map.id)) || {};
576 exports: defined[mod.map.id]
589 var id = mod.map.id;
617 var map, modId, err, usingPathFallback,
635 map = mod.map;
636 modId = map.id;
643 if (!map.isDefine) {
658 } else if (!mod.inited && mod.fetched && map.isDefine) {
660 if (!map.prefix) {
703 Module = function (map) { argument
704 this.events = getOwn(undefEvents, map.id) || {};
705 this.map = map;
706 this.shim = getOwn(config.shim, map.id);
788 var map = this.map;
793 context.makeRequire(this.map, {
796 return map.prefix ? this.callPlugin() : this.load();
800 return map.prefix ? this.callPlugin() : this.load();
805 var url = this.map.url;
810 context.load(this.map.id, url);
824 id = this.map.id,
854 if (this.map.isDefine) {
871 err.requireMap = this.map;
872 err.requireModules = [this.map.id];
884 if (this.map.isDefine && !this.ignore) {
888 req.onResourceLoad(context, this.map, this.depMaps);
913 var map = this.map,
914 id = map.id,
916 pluginMap = makeModuleMap(map.prefix);
924 name = this.map.name,
925 parentName = this.map.parentMap ? this.map.parentMap.name : null,
926 localRequire = context.makeRequire(map.parentMap, {
932 if (this.map.unnormalized) {
942 normalizedMap = makeModuleMap(map.prefix + '!' + name,
943 this.map.parentMap);
983 if (mod.map.id.indexOf(id + '_unnormalized') === 0) {
984 cleanRegistry(mod.map.id);
995 var moduleName = map.name,
1051 plugin.load(map.name, localRequire, load, config);
1059 enabledRegistry[this.map.id] = this;
1076 (this.map.isDefine ? this.map : this.map.parentMap),
1240 map: true property in newContext.context.configure.objs
1246 if (!config.map) {
1247 config.map = {};
1310 if (!mod.inited && !mod.map.unnormalized) {
1311 mod.map = makeModuleMap(id);
1338 var id, map, requireMod;
1364 map = makeModuleMap(deps, relMap, false, true);
1365 id = map.id;
1444 var map = makeModuleMap(id, relMap, true),
1448 delete urlFetched[map.url];