HomeSort by relevance Sort by last modified time
    Searched refs:endLine (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TextRange.js 35 * @param {number} endLine
38 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn)
42 this.endLine = endLine;
57 return new WebInspector.TextRange(serializedTextRange.startLine, serializedTextRange.startColumn, serializedTextRange.endLine, serializedTextRange.endColumn);
66 return this.startLine === this.endLine && this.startColumn === this.endColumn;
77 return this.endLine === range.startLine && this.endColumn === range.startColumn;
96 return this.endLine - this.startLine;
101 return new WebInspector.TextRange(this.endLine, this.endColumn, this.endLine, this.endColumn)
    [all...]
Script.js 34 * @param {number} endLine
40 WebInspector.Script = function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
46 this.endLine = endLine;
UISourceCodeFrame.js 136 end = event.data.newFormatter.originalToFormatted(selection.endLine, selection.endColumn);
139 end = event.data.oldFormatter.formattedToOriginal(selection.endLine, selection.endColumn);
DebuggerModel.js 493 * @param {number} endLine
499 _parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
501 var script = new WebInspector.Script(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL);
552 if (script.endLine < lineNumber || (script.endLine === lineNumber && script.endColumn <= columnNumber))
779 * @param {number} endLine
785 scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL, hasSourceURL)
787 this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, sourceMapURL, hasSourceURL);
    [all...]
ContentProviders.js 65 var lineNumber = previousScript.endLine;
180 lineNumber = scripts[i].endLine;
SourceFrame.js 759 this._sourcePosition.setText(WebInspector.UIString("Line %d, Column %d", textRange.endLine + 1, textRange.endColumn + 1));
765 if (textRange.startLine === textRange.endLine)
768 this._sourcePosition.setText(WebInspector.UIString("%d lines, %d characters selected", textRange.endLine - textRange.startLine + 1, selectedText.length));
CodeMirrorTextEditor.js     [all...]
JavaScriptSourceFrame.js 278 if (textSelection.startLine !== textSelection.endLine || textSelection.startLine !== mouseLine || mouseColumn < textSelection.startColumn || mouseColumn > textSelection.endColumn)
282 var rightCorner = this.textEditor.cursorPositionToCoordinates(textSelection.endLine, textSelection.endColumn);
512 for (var i = 0; lineNumber + i <= newRange.endLine; ++i) {
521 if (oldRange.startLine < lineNumber && lineNumber < oldRange.endLine)
    [all...]
ExtensionServer.js 683 endLine: textRange.endLine,
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
Token.java 34 * of this token; endLine and endColumn describe the position of the
37 public int beginLine, beginColumn, endLine, endColumn;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 34 * of this token; endLine and endColumn describe the position of the
37 public int beginLine, beginColumn, endLine, endColumn;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 34 * of this token; endLine and endColumn describe the position of the
37 public int beginLine, beginColumn, endLine, endColumn;
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 60 endLine();
69 endLine();
80 endLine();
151 endLine();
185 endLine();
214 endLine();
224 endLine();
253 endLine();
260 endLine();
269 endLine();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptDebugListener.h 50 , endLine(0)
61 int endLine;
InspectorTimelineAgent.h 194 void didWriteHTML(unsigned endLine);
  /external/opencv/cvaux/src/
cvmorphing.cpp 64 float endLine; /* end of current run */
98 endLine = (float) endLineIndex;
101 endDestLine = (int) (alpha * endLine + alpha1 * endCorr);
107 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
167 begLine = endLine;
187 endLine = (float) endLineIndex;
190 endDestLine = (int) (alpha1 * endLine + alpha * endCorr);
196 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
267 begLine = endLine;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
PEMDecoder.java 134 String endLine = null;
147 endLine = "-----END DSA PRIVATE KEY-----";
154 endLine = "-----END RSA PRIVATE KEY-----";
165 throw new IOException("Invalid PEM structure, " + endLine + " missing");
204 throw new IOException("Invalid PEM structure, " + endLine + " missing");
208 if (line.startsWith(endLine))
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
markselection.js 48 var endLine = line + CHUNK_SIZE, atEnd = endLine >= to.line;
49 var end = atEnd ? to : Pos(endLine, 0);
54 line = endLine;
comment.js 122 var startLine = self.getLine(start), endLine = end == start ? startLine : self.getLine(end);
123 var open = startLine.indexOf(startString), close = endLine.lastIndexOf(endString);
125 endLine = self.getLine(--end);
126 close = endLine.lastIndexOf(endString);
134 self.replaceRange("", Pos(end, close - (pad && endLine.slice(close - pad.length, close) == pad ? pad.length : 0)),
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DebuggerScript.js 139 var endLine = script.line_offset + lineCount - 1;
143 endLine += 1;
158 endLine: endLine,
  /frameworks/base/core/tests/coretests/src/android/text/
DynamicLayoutBlocksTest.java 63 private void update(int startLine, int endLine, int newLineCount) {
66 dl.updateBlocks(startLine, endLine, newLineCount);
  /frameworks/base/core/java/android/text/
DynamicLayout.java 263 int endline = getLineForOffset(where + before); local
265 endline = getLineCount();
266 int endv = getLineTop(endline);
267 boolean islast = (endline == getLineCount());
298 mInts.deleteAt(startline, endline - startline);
299 mObjects.deleteAt(startline, endline - startline);
359 updateBlocks(startline, endline - 1, n);
436 * @param endLine the last line of the range, possibly equal to startLine, lower
442 void updateBlocks(int startLine, int endLine, int newLineCount) {
457 if (mBlockEndLines[i] >= endLine) {
    [all...]
  /external/chromium_org/chrome/test/ext_auto/auto_provider/
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/core/rendering/
RenderBlockLineLayout.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 

Completed in 554 milliseconds

1 2 3