Home
last modified time | relevance | path

Searched refs:stringCharIterator (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DSourceMap.js231 var stringCharIterator = new WebInspector.SourceMap.StringCharIterator(map.mappings);
235 if (stringCharIterator.peek() === ",")
236 stringCharIterator.next();
238 while (stringCharIterator.peek() === ";") {
241 stringCharIterator.next();
243 if (!stringCharIterator.hasNext())
247 columnNumber += this._decodeVLQ(stringCharIterator);
248 if (this._isSeparator(stringCharIterator.peek())) {
253 var sourceIndexDelta = this._decodeVLQ(stringCharIterator);
258 sourceLineNumber += this._decodeVLQ(stringCharIterator);
[all …]
/external/chromium_org/v8/tools/
DSourceMap.js253 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);
[all …]