/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/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/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/llvm/lib/Support/ |
Memory.cpp | 55 const intptr_t EndLine = ((intptr_t) Addr + Len + LineSize - 1) & Mask; 57 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize) 61 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/ |
endLine.js | 23 Filename: endLine.js 35 writeHeaderToLog('Executing script: endLine.js');
|
/packages/apps/Email/emailcommon/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/Email/emailcommon/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/Email/emailcommon/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/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);
|
/frameworks/base/core/java/android/text/ |
DynamicLayout.java | 262 int endline = getLineForOffset(where + before); local 264 endline = getLineCount(); 265 int endv = getLineTop(endline); 266 boolean islast = (endline == getLineCount()); 299 mInts.deleteAt(startline, endline - startline); 300 mObjects.deleteAt(startline, endline - startline);
|
Layout.java | 1356 int endline = getLineForOffset(end); local [all...] |
/external/clang/tools/libclang/ |
CIndexDiagnostic.cpp | 85 unsigned StartLine, StartColumn, EndLine, EndColumn; 90 &EndFile, &EndLine, &EndColumn, 0); 96 << EndLine << ":" << EndColumn << "}";
|
/external/webkit/Source/WebCore/inspector/ |
InspectorTimelineAgent.cpp | 214 void InspectorTimelineAgent::didWriteHTML(unsigned int endLine) 218 entry.data->setNumber("endLine", endLine);
|
InspectorTimelineAgent.h | 95 void didWriteHTML(unsigned int 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...] |
/ndk/sources/host-tools/sed-4.2.1/sed/ |
fmt.c | 551 register WORD *endline; local 555 endline = w->next_break - 1; 556 for (; w != endline; w++)
|
/sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/xml/ |
XmlDocumentBuilder.java | 61 public static final String NODE_END_LINE = "endLine";
|
/external/webkit/Source/WebCore/rendering/ |
RenderBlockLineLayout.cpp | [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ |
expected.html | 155 <a name='failure18'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/endLine.js'>js1_2/regexp/endLine.js</a> failed</b> <br> 469 js1_2/regexp/endLine.js [all...] |