Lines Matching refs:map
47 var vlq_bits = vlq_char.reduce(function(map, ch, bits) { argument
48 map[ch] = bits;
49 return map;
80 var map = new Dictionary();
83 var index = map.get(name);
87 map.set(name, index);
100 var map = options.orig[name];
103 names: map.names,
104 mappings: map.mappings.split(/;/).map(function(line) {
106 return line.split(/,/).map(function(segment) {
110 sources: map.sources,
112 if (!sources_content || !map.sourcesContent) return;
113 for (var i = 0; i < map.sources.length; i++) {
114 var content = map.sourcesContent[i];
115 if (content) sources_content.set(map.sources[i], content);
127 var map = options.orig[source];
128 if (map) {
129 var segments = map.mappings[orig_line - 1];
140 source = map.sources[indices[1]];
143 if (indices.length > 4) name = map.names[indices[4]];
159 sourcesContent: sources_content ? sources.map(function(source) {