Home
last modified time | relevance | path

Searched refs:endLine (Results 1 – 10 of 10) sorted by relevance

/external/webkit/WebCore/inspector/front-end/
DTextEditorHighlighter.js75 highlight: function(endLine) argument
78 var state = this._textModel.getAttribute(endLine - 1, "highlighter-state")
84 this._requestedEndLine = endLine;
92 var startLine = endLine;
101 var toLine = Math.min(startLine + 200, endLine);
105 if (endLine > toLine)
106 … this._highlightTimer = setTimeout(this._highlightInChunks.bind(this, toLine, endLine), 100);
109 _highlightInChunks: function(startLine, endLine) argument
118 if (this._requestedEndLine !== endLine) {
133 updateHighlight: function(startLine, endLine) argument
[all …]
DTextEditorModel.js31 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn) argument
35 this.endLine = endLine;
42 return this.startLine === this.endLine && this.startColumn === this.endColumn;
47 return this.endLine - this.startLine;
52 …return new WebInspector.TextRange(this.startLine, this.startColumn, this.endLine, this.endColumn);
156 var suffix = this._lines[range.endLine].substring(range.endColumn);
158 if (range.endLine > range.startLine)
159 this._removeLines(range.startLine + 1, range.endLine - range.startLine);
204 if (range.startLine === range.endLine) {
209 for (var i = range.startLine + 1; i < range.endLine; ++i)
[all …]
DTextViewer.js387 var endRow = this._textModel.getAttribute(range.endLine, "line-row");
392 var chunkNumber = this._chunkNumberForLine(range.endLine);
393 for (var i = this._chunkStartLine(chunkNumber); i < range.endLine; ++i)
535 WebInspector.TextChunk = function(textModel, startLine, endLine, paintLinesCallback) argument
543 endLine = Math.min(this._textModel.linesCount, endLine);
544 this.linesCount = endLine - startLine;
/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-159334.js88 function buildEval_r(beginLine, endLine) argument
90 var count = endLine - beginLine;
99 return buildEval_r(beginLine, middle) + buildEval_r(middle, endLine);
/external/webkit/WebCore/inspector/
DInspectorTimelineAgent.cpp103 void InspectorTimelineAgent::didWriteHTML(unsigned int endLine) in didWriteHTML() argument
107 entry.data.set("endLine", endLine); in didWriteHTML()
DInspectorTimelineAgent.h90 void didWriteHTML(unsigned int endLine);
/external/webkit/WebCore/rendering/
DRenderBlockLineLayout.cpp726 RootInlineBox* endLine = (fullLayout || !startLine) ? in layoutInlineChildren() local
763 bool checkForEndLineMatch = endLine; in layoutInlineChildren()
771 …eMatched = matchedEndLine(resolver, cleanLineStart, cleanLineBidiStatus, endLine, endLineYPos, rep… in layoutInlineChildren()
906 if (endLine) { in layoutInlineChildren()
910 for (RootInlineBox* line = endLine; line; line = line->nextRootBox()) { in layoutInlineChildren()
930 RootInlineBox* line = endLine; in layoutInlineChildren()
1146 …Iterator& endLineStart, const BidiStatus& endLineStatus, RootInlineBox*& endLine, int& endYPos, in… in matchedEndLine() argument
1159 RootInlineBox* lastLine = endLine; in matchedEndLine()
1176 RootInlineBox* line = endLine; in matchedEndLine()
1193 RootInlineBox* lastLine = endLine; in matchedEndLine()
[all …]
DRenderBlock.h259 RootInlineBox*& endLine, int& endYPos, int& repaintBottom, int& repaintTop);
/external/v8/test/mozilla/
Dmozilla.status284 js1_2/regexp/endLine: FAIL_OK
/external/webkit/JavaScriptCore/
DChangeLog2807 * tests/mozilla/js1_2/regexp/endLine.js: Added property allow-tabs.