Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
DTextRange.js38 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn) argument
42 this.endLine = endLine;
62 …extRange.startLine, serializedTextRange.startColumn, serializedTextRange.endLine, serializedTextRa…
81 return this.startLine === this.endLine && this.startColumn === this.endColumn;
92 return this.endLine === range.startLine && this.endColumn === range.startColumn;
112 return (range.endLine === this.startLine && range.endColumn <= this.startColumn)
113 || range.endLine < this.startLine;
121 return this.endLine - this.startLine;
129 … return new WebInspector.TextRange(this.endLine, this.endColumn, this.endLine, this.endColumn);
145 …if (this.startLine > this.endLine || (this.startLine === this.endLine && this.startColumn > this.e…
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DJavaSourceWriter.java60 endLine(); in writePackage()
69 endLine(); in writeImports()
80 endLine(); in writeComment()
151 endLine(); in startMethod()
185 endLine(); in startMethod()
214 endLine(); in endIfBlock()
224 endLine(); in endScopedBlock()
253 endLine(); in endLoop()
260 endLine(); in writeStatement()
269 endLine(); in endMethod()
[all …]
/external/chromium_org/third_party/skia/experimental/Intersection/
DCubicBezierClip.cpp20 LineParameters endLine; in bezier_clip() local
21 endLine.cubicEndPoints(cubic1); in bezier_clip()
22 if (!endLine.normalize()) { in bezier_clip()
28 distance[0] = endLine.controlPtDistance(cubic1, 1); in bezier_clip()
29 distance[1] = endLine.controlPtDistance(cubic1, 2); in bezier_clip()
54 endLine.cubicDistanceY(cubic2, distance2y); in bezier_clip()
DQuadraticBezierClip.cpp22 LineParameters endLine; in bezier_clip() local
23 endLine.quadEndPoints(q1); in bezier_clip()
24 if (!endLine.normalize()) { in bezier_clip()
30 double distance = endLine.controlPtDistance(q1); in bezier_clip()
41 endLine.quadDistanceY(q2, distance2y); in bezier_clip()
/external/skia/experimental/Intersection/
DCubicBezierClip.cpp20 LineParameters endLine; in bezier_clip() local
21 endLine.cubicEndPoints(cubic1); in bezier_clip()
22 if (!endLine.normalize()) { in bezier_clip()
28 distance[0] = endLine.controlPtDistance(cubic1, 1); in bezier_clip()
29 distance[1] = endLine.controlPtDistance(cubic1, 2); in bezier_clip()
54 endLine.cubicDistanceY(cubic2, distance2y); in bezier_clip()
DQuadraticBezierClip.cpp22 LineParameters endLine; in bezier_clip() local
23 endLine.quadEndPoints(q1); in bezier_clip()
24 if (!endLine.normalize()) { in bezier_clip()
30 double distance = endLine.controlPtDistance(q1); in bezier_clip()
41 endLine.quadDistanceY(q2, distance2y); in bezier_clip()
/external/opencv/cvaux/src/
Dcvmorphing.cpp64 float endLine; /* end of current run */ in icvMorphEpilines8uC3() local
98 endLine = (float) endLineIndex; in icvMorphEpilines8uC3()
101 endDestLine = (int) (alpha * endLine + alpha1 * endCorr); in icvMorphEpilines8uC3()
107 step = (endLine - begLine) / ((float) (endDestLine - begDestLine)); in icvMorphEpilines8uC3()
167 begLine = endLine; in icvMorphEpilines8uC3()
187 endLine = (float) endLineIndex; in icvMorphEpilines8uC3()
190 endDestLine = (int) (alpha1 * endLine + alpha * endCorr); in icvMorphEpilines8uC3()
196 step = (endLine - begLine) / ((float) (endDestLine - begDestLine)); in icvMorphEpilines8uC3()
267 begLine = endLine; in icvMorphEpilines8uC3()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Dcomment.js145 var startLine = self.getLine(start), endLine = end == start ? startLine : self.getLine(end);
146 var open = startLine.indexOf(startString), close = endLine.lastIndexOf(endString);
148 endLine = self.getLine(--end); property
149 close = endLine.lastIndexOf(endString);
162 firstEnd = endLine.indexOf(endString, to.ch);
163 var almostLastStart = endLine.slice(to.ch).lastIndexOf(startString, firstEnd - to.ch);
168 …self.replaceRange("", Pos(end, close - (pad && endLine.slice(close - pad.length, close) == pad ? p…
Dmarkselection.js55 var endLine = line + CHUNK_SIZE, atEnd = endLine >= to.line;
56 var end = atEnd ? to : Pos(endLine, 0);
61 line = endLine;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DScript.js41 WebInspector.Script = function(target, scriptId, sourceURL, startLine, startColumn, endLine, endCol… argument
48 this.endLine = endLine;
DDebuggerModel.js478 …_parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isC… argument
480 …ector.Script(this.target(), scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isCon…
534 …if (script.endLine < lineNumber || (script.endLine === lineNumber && script.endColumn <= columnNum…
789 …scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentS… argument
791 …erModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isC…
805 …scriptFailedToParse: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isC… argument
807 …erModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isC…
DContentProviders.js65 var lineNumber = previousScript.endLine;
179 lineNumber = scripts[i].endLine;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DScriptDebugListener.h53 , endLine(0) in Script()
65 int endLine; variable
DInspectorTimelineAgent.h176 void didWriteHTML(unsigned endLine);
/external/chromium_org/chrome/test/ext_auto/auto_provider/
Dconnection_handler.js204 var endLine = command.indexOf('\r\n');
205 if (endLine)
206 command = command.substring(0, endLine);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DDebuggerScript.js159 var endLine = script.line_offset + lineCount - 1;
163 endLine += 1;
180 endLine: endLine,
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DLineLayoutState.h85 RootInlineBox* endLine() const { return m_endLine; } in endLine() function
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
DCodeMirrorTextEditor.js524 … var move = this._camelCaseMoveFromPosition(selection.endLine, selection.endColumn, direction);
525 selection.endLine = move.lineNumber;
1222 newRange.endLine = newRange.startLine;
1225 newRange.endLine = newRange.startLine;
1228 newRange.endLine = newRange.startLine + linesAdded - 1;
2088 for (var i = editInfo.newRange.startLine; i <= editInfo.newRange.endLine; ++i)
2311 if (selection.startLine !== selection.endLine)
2346 …var endRangeWord = this._textEditor._wordRangeForCursorPosition(selection.endLine, selection.endCo…
2347 … || WebInspector.TextRange.createFromLocation(selection.endLine, selection.endColumn);
2348 …Range(startRangeWord.startLine, startRangeWord.startColumn, endRangeWord.endLine, endRangeWord.end…
DCodeMirrorUtils.js48 end: new CodeMirror.Pos(range.endLine, range.endColumn)
DSourceFrame.js725 …cePosition.setText(WebInspector.UIString("Line %d, Column %d", textRange.endLine + 1, textRange.en…
731 if (textRange.startLine === textRange.endLine)
734 …Text(WebInspector.UIString("%d lines, %d characters selected", textRange.endLine - textRange.start…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DEditingLocationHistoryManager.js171 lineNumber: selection.endLine,
DJavaScriptSourceFrame.js504 …if (textSelection.startLine !== textSelection.endLine || textSelection.startLine !== mouseLine || …
508 …var rightCorner = this.textEditor.cursorPositionToCoordinates(textSelection.endLine, textSelection…
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlockLineLayout.cpp789 bool checkForEndLineMatch = layoutState.endLine(); in layoutRunsAndFloatsInRange()
986 if (layoutState.endLine()) { in linkToEndLineIfNeeded()
991 for (RootInlineBox* line = layoutState.endLine(); line; line = line->nextRootBox()) { in linkToEndLineIfNeeded()
1015 deleteLineRange(layoutState, layoutState.endLine()); in linkToEndLineIfNeeded()
1762 ASSERT(!layoutState.endLine()); in determineEndPosition()
1805 … for (RootInlineBox* lineBox = layoutState.endLine(); lineBox; lineBox = lineBox->nextRootBox()) { in checkPaginationAndFloatsAtEndLine()
1823 RootInlineBox* lastLine = layoutState.endLine(); in checkPaginationAndFloatsAtEndLine()
1851 RootInlineBox* originalEndLine = layoutState.endLine(); in matchedEndLine()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
DCSSWorkspaceBinding.js135 var line = forName ? range.startLine : range.endLine;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
DDocumentationView.js376 if (textSelection.startLine !== textSelection.endLine)

12