/external/webkit/Source/WebCore/inspector/front-end/ |
D | TextEditorHighlighter.js | 53 highlight: function(endLine, opt_forceRun) argument 56 var state = this._textModel.getAttribute(endLine - 1, "highlight"); 62 this._requestedEndLine = endLine; 70 var startLine = endLine; 79 this._highlightInChunks(startLine, endLine); 82 updateHighlight: function(startLine, endLine) argument 95 var restored = this._highlightLines(startLine, endLine); 99 if (!state && i > endLine) 107 this._requestedEndLine = endLine; 114 _highlightInChunks: function(startLine, endLine) argument [all …]
|
D | TextViewer.js | 641 _createNewChunk: function(startLine, endLine) argument 643 return new WebInspector.TextEditorGutterChunk(this, startLine, endLine); 678 while (chunk && chunk.startLine <= newRange.endLine) { 699 WebInspector.TextEditorGutterChunk = function(textViewer, startLine, endLine) argument 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 > r… 974 …range = new WebInspector.TextRange(range.endLine, range.endColumn, range.startLine, range.startCol… [all …]
|
D | TextEditorModel.js | 31 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn) argument 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) { 220 for (var i = range.startLine + 1; i < range.endLine; ++i) [all …]
|
D | SourceFrame.js | 292 for (var i = 0; lineNumber + i <= newRange.endLine; ++i) { 301 if (oldRange.startLine < lineNumber && lineNumber < oldRange.endLine)
|
/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/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/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
D | regress-159334.js | 88 function buildEval_r(beginLine, endLine) argument 90 var count = endLine - beginLine; 99 return buildEval_r(beginLine, middle) + buildEval_r(middle, endLine);
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | ASTBuilder.h | 308 StatementNode* createBlockStatement(JSC::SourceElements* elements, int startLine, int endLine) in createBlockStatement() argument 311 block->setLoc(startLine, endLine); in createBlockStatement() 343 … statements, int start, int divot, int end, int initStart, int initEnd, int startLine, int endLine) in createForInLoop() argument 346 result->setLoc(startLine, endLine); in createForInLoop() 372 …createReturnStatement(ExpressionNode* expression, int eStart, int eEnd, int startLine, int endLine) in createReturnStatement() argument 376 result->setLoc(startLine, endLine); in createReturnStatement() 380 StatementNode* createBreakStatement(int eStart, int eEnd, int startLine, int endLine) in createBreakStatement() argument 384 result->setLoc(startLine, endLine); in createBreakStatement() 388 …de* createBreakStatement(const Identifier* ident, int eStart, int eEnd, int startLine, int endLine) in createBreakStatement() argument 392 result->setLoc(startLine, endLine); in createBreakStatement() [all …]
|
D | JSParser.cpp | 749 int endLine = tokenLine(); in parseDoWhileStatement() local 757 return context.createDoWhileStatement(statement, expr, startLine, endLine); in parseDoWhileStatement() 768 int endLine = tokenLine(); in parseWhileStatement() local 775 return context.createWhileStatement(expr, statement, startLine, endLine); in parseWhileStatement() 883 int endLine = tokenLine(); in parseForStatement() local 892 …ializer, expr, statement, declsStart, inLocation, exprEnd, initStart, initEnd, startLine, endLine); in parseForStatement() 921 int endLine = tokenLine(); in parseForStatement() local 928 … context.createForLoop(decls, condition, increment, statement, hasDeclaration, startLine, endLine); in parseForStatement() 937 int endLine = tokenLine(); in parseForStatement() local 945 …context.createForInLoop(decls, expr, statement, declsStart, declsEnd, exprEnd, startLine, endLine); in parseForStatement() [all …]
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderBlockLineLayout.cpp | 938 RootInlineBox* endLine = (fullLayout || !startLine) ? in layoutInlineChildren() local 977 bool checkForEndLineMatch = endLine; in layoutInlineChildren() 988 …eMatched = matchedEndLine(resolver, cleanLineStart, cleanLineBidiStatus, endLine, endLineLogicalTo… in layoutInlineChildren() 1142 if (endLine) { in layoutInlineChildren() 1146 for (RootInlineBox* line = endLine; line; line = line->nextRootBox()) { in layoutInlineChildren() 1171 RootInlineBox* line = endLine; in layoutInlineChildren() 1440 …lver, const InlineIterator& endLineStart, const BidiStatus& endLineStatus, RootInlineBox*& endLine, in matchedEndLine() argument 1454 RootInlineBox* lastLine = endLine; in matchedEndLine() 1474 RootInlineBox* line = endLine; in matchedEndLine() 1491 RootInlineBox* lastLine = endLine; in matchedEndLine() [all …]
|
D | RenderBlock.h | 500 RootInlineBox*& endLine, int& endYPos, int& repaintBottom, int& repaintTop);
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorTimelineAgent.cpp | 214 void InspectorTimelineAgent::didWriteHTML(unsigned int endLine) in didWriteHTML() argument 218 entry.data->setNumber("endLine", endLine); in didWriteHTML()
|
D | InspectorTimelineAgent.h | 95 void didWriteHTML(unsigned int endLine);
|
D | InspectorInstrumentation.h | 135 static void didWriteHTML(const InspectorInstrumentationCookie&, unsigned int endLine); 255 static void didWriteHTMLImpl(const InspectorInstrumentationCookie&, unsigned int endLine); 785 …orInstrumentation::didWriteHTML(const InspectorInstrumentationCookie& cookie, unsigned int endLine) in didWriteHTML() argument 789 didWriteHTMLImpl(cookie, endLine); in didWriteHTML()
|
D | InspectorInstrumentation.cpp | 624 …strumentation::didWriteHTMLImpl(const InspectorInstrumentationCookie& cookie, unsigned int endLine) in didWriteHTMLImpl() argument 627 timelineAgent->didWriteHTML(endLine); in didWriteHTMLImpl()
|
/external/clang/include/clang-c/ |
D | Index.h | 2537 unsigned *endLine,
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 452 unsigned startLine, startColumn, endLine, endColumn, curLine, curColumn; in FunctionScanVisitor() local 462 &endLine, &endColumn); in FunctionScanVisitor()
|
/external/v8/test/mozilla/ |
D | mozilla.status | 295 js1_2/regexp/endLine: FAIL_OK
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 4220 unsigned *endLine, in clang_getDefinitionSpellingAndExtent() argument 4232 *endLine = SM.getSpellingLineNumber(Body->getRBracLoc()); in clang_getDefinitionSpellingAndExtent()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 11115 * tests/mozilla/js1_2/regexp/endLine.js: Added property allow-tabs.
|