/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/ |
D | TextRange.js | 38 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/ |
D | JavaSourceWriter.java | 60 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/ |
D | CubicBezierClip.cpp | 20 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()
|
D | QuadraticBezierClip.cpp | 22 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/ |
D | CubicBezierClip.cpp | 20 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()
|
D | QuadraticBezierClip.cpp | 22 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/ |
D | cvmorphing.cpp | 64 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/ |
D | comment.js | 145 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…
|
D | markselection.js | 55 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/ |
D | Script.js | 41 WebInspector.Script = function(target, scriptId, sourceURL, startLine, startColumn, endLine, endCol… argument 48 this.endLine = endLine;
|
D | DebuggerModel.js | 478 …_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…
|
D | ContentProviders.js | 65 var lineNumber = previousScript.endLine; 179 lineNumber = scripts[i].endLine;
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | ScriptDebugListener.h | 53 , endLine(0) in Script() 65 int endLine; variable
|
D | InspectorTimelineAgent.h | 176 void didWriteHTML(unsigned endLine);
|
/external/chromium_org/chrome/test/ext_auto/auto_provider/ |
D | connection_handler.js | 204 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/ |
D | DebuggerScript.js | 159 var endLine = script.line_offset + lineCount - 1; 163 endLine += 1; 180 endLine: endLine,
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/ |
D | LineLayoutState.h | 85 RootInlineBox* endLine() const { return m_endLine; } in endLine() function
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/ |
D | CodeMirrorTextEditor.js | 524 … 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…
|
D | CodeMirrorUtils.js | 48 end: new CodeMirror.Pos(range.endLine, range.endColumn)
|
D | SourceFrame.js | 725 …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/ |
D | EditingLocationHistoryManager.js | 171 lineNumber: selection.endLine,
|
D | JavaScriptSourceFrame.js | 504 …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/ |
D | RenderBlockLineLayout.cpp | 789 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/ |
D | CSSWorkspaceBinding.js | 135 var line = forName ? range.startLine : range.endLine;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/ |
D | DocumentationView.js | 376 if (textSelection.startLine !== textSelection.endLine)
|