Lines Matching refs: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);
315 _decodeVLQ: function(stringCharIterator) argument
321 var digit = this._base64Map[stringCharIterator.next()];