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

1 2

  /packages/apps/Email/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;
AddressListParserTokenManager.java 793 t.endLine = input_stream.getEndLine();
  /packages/apps/Email/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;
ContentTypeParserTokenManager.java 679 t.endLine = input_stream.getEndLine();
  /packages/apps/Email/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;
DateTimeParserTokenManager.java 718 t.endLine = input_stream.getEndLine();
  /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/webkit/Source/WebCore/inspector/front-end/
TextEditorHighlighter.js 53 highlight: function(endLine, opt_forceRun)
56 var state = this._textModel.getAttribute(endLine - 1, "highlight");
62 this._requestedEndLine = endLine;
65 // There is a timer scheduled, it will catch the new job based on the new endLine set.
70 var startLine = endLine;
79 this._highlightInChunks(startLine, endLine);
82 updateHighlight: function(startLine, endLine)
84 // Start line was edited, we should highlight everything until endLine.
95 var restored = this._highlightLines(startLine, endLine);
99 if (!state && i > endLine)
    [all...]
TextEditorModel.js 31 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn)
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);
164 var suffix = this._lines[range.endLine].substring(range.endColumn);
166 if (range.endLine > range.startLine)
167 this._removeLines(range.startLine + 1, range.endLine - range.startLine);
215 if (range.startLine === range.endLine) {
    [all...]
TextViewer.js 641 _createNewChunk: function(startLine, endLine)
643 return new WebInspector.TextEditorGutterChunk(this, startLine, endLine);
678 while (chunk && chunk.startLine <= newRange.endLine) {
699 WebInspector.TextEditorGutterChunk = function(textViewer, startLine, endLine)
705 endLine = Math.min(this._textModel.linesCount, endLine);
706 this.linesCount = endLine - startLine;
726 for (var i = startLine; i < endLine; ++i)
949 this._setCaretLocation(range.endLine, range.endColumn, true);
973 if (range.startLine > range.endLine || (range.startLine === range.endLine && range.startColumn > range.endColumn)
    [all...]
SourceFrame.js 292 for (var i = 0; lineNumber + i <= newRange.endLine; ++i) {
301 if (oldRange.startLine < lineNumber && lineNumber < oldRange.endLine)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-159334.js 88 function buildEval_r(beginLine, endLine)
90 var count = endLine - beginLine;
99 return buildEval_r(beginLine, middle) + buildEval_r(middle, 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/webkit/Source/JavaScriptCore/parser/
ASTBuilder.h 308 StatementNode* createBlockStatement(JSC::SourceElements* elements, int startLine, int endLine)
311 block->setLoc(startLine, endLine);
343 StatementNode* createForInLoop(const Identifier* ident, ExpressionNode* initializer, ExpressionNode* iter, StatementNode* statements, int start, int divot, int end, int initStart, int initEnd, int startLine, int endLine)
346 result->setLoc(startLine, endLine);
372 StatementNode* createReturnStatement(ExpressionNode* expression, int eStart, int eEnd, int startLine, int endLine)
376 result->setLoc(startLine, endLine);
380 StatementNode* createBreakStatement(int eStart, int eEnd, int startLine, int endLine)
384 result->setLoc(startLine, endLine);
388 StatementNode* createBreakStatement(const Identifier* ident, int eStart, int eEnd, int startLine, int endLine)
392 result->setLoc(startLine, endLine);
    [all...]
JSParser.cpp 749 int endLine = tokenLine();
757 return context.createDoWhileStatement(statement, expr, startLine, endLine);
768 int endLine = tokenLine();
775 return context.createWhileStatement(expr, statement, startLine, endLine);
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorTimelineAgent.h 95 void didWriteHTML(unsigned int endLine);
InspectorTimelineAgent.cpp 214 void InspectorTimelineAgent::didWriteHTML(unsigned int endLine)
218 entry.data->setNumber("endLine", endLine);
InspectorInstrumentation.h 135 static void didWriteHTML(const InspectorInstrumentationCookie&, unsigned int endLine);
255 static void didWriteHTMLImpl(const InspectorInstrumentationCookie&, unsigned int endLine);
    [all...]
InspectorInstrumentation.cpp 624 void InspectorInstrumentation::didWriteHTMLImpl(const InspectorInstrumentationCookie& cookie, unsigned int endLine)
627 timelineAgent->didWriteHTML(endLine);
    [all...]
  /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/webkit/Source/WebCore/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 
  /prebuilts/devtools/tools/lib/
lint.jar 

Completed in 593 milliseconds

1 2