Lines Matching defs:StringCharIterator
253 var stringCharIterator = new WebInspector.SourceMap.StringCharIterator(map.mappings);
257 if (stringCharIterator.peek() === ",")
258 stringCharIterator.next();
260 while (stringCharIterator.peek() === ";") {
263 stringCharIterator.next();
265 if (!stringCharIterator.hasNext())
269 columnNumber += this._decodeVLQ(stringCharIterator);
270 if (this._isSeparator(stringCharIterator.peek())) {
275 var sourceIndexDelta = this._decodeVLQ(stringCharIterator);
280 sourceLineNumber += this._decodeVLQ(stringCharIterator);
281 sourceColumnNumber += this._decodeVLQ(stringCharIterator);
282 if (!this._isSeparator(stringCharIterator.peek()))
283 nameIndex += this._decodeVLQ(stringCharIterator);
312 * @param {WebInspector.SourceMap.StringCharIterator} stringCharIterator
315 _decodeVLQ: function(stringCharIterator)
321 var digit = this._base64Map[stringCharIterator.next()];
341 WebInspector.SourceMap.StringCharIterator = function(string)
347 WebInspector.SourceMap.StringCharIterator.prototype = {