Searched defs:startLine (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/Source/WebCore/inspector/front-end/
H A DTextEditorHighlighter.js70 var startLine = endLine; variable
71 while (startLine > 0) {
72 var state = this._textModel.getAttribute(startLine - 1, "highlight");
75 startLine--;
79 this._highlightInChunks(startLine, endLine);
82 updateHighlight: function(startLine, endLine)
85 this._clearHighlightState(startLine);
87 if (startLine) {
88 var state = this._textModel.getAttribute(startLine - 1, "highlight");
95 var restored = this._highlightLines(startLine, endLin
[all...]
H A DTextViewer.js435 if (lineNumber > oldChunk.startLine) {
436 var prefixChunk = this._createNewChunk(oldChunk.startLine, lineNumber);
447 if (oldChunk.startLine + oldChunk.linesCount > lineNumber + 1) {
448 var suffixChunk = this._createNewChunk(lineNumber + 1, oldChunk.startLine + oldChunk.linesCount);
514 return value < chunk.startLine ? -1 : 1;
549 return chunk.startLine;
553 lineNumbers.push(chunk.startLine + i);
641 _createNewChunk: function(startLine, endLine)
643 return new WebInspector.TextEditorGutterChunk(this, startLine, endLine);
655 if (chunk.startLine
1427 var startLine = 0; variable
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebScriptSource.h42 int startLine; member in struct:WebKit::WebScriptSource
45 : code(code), startLine(1) { }
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine) argument
49 : code(code), url(url), startLine(startLine) { }
/external/webkit/Source/WebCore/bindings/js/
H A DScriptSourceCode.h64 int startLine() const { return m_code.firstLine(); } function in class:WebCore::ScriptSourceCode
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptSourceCode.h72 int startLine() const { return m_startPosition.m_line.oneBasedInt(); } function in class:WebCore::ScriptSourceCode
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_imelodydata.h57 EAS_I32 startLine; /* file offset at start of line (for repeats) */ member in struct:__anon12182
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_imelodydata.h57 EAS_I32 startLine; /* file offset at start of line (for repeats) */ member in struct:__anon12232
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imelodydata.h57 EAS_I32 startLine; /* file offset at start of line (for repeats) */ member in struct:__anon12280
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaSourceWriter.java58 startLine();
67 startLine();
78 startLine();
84 startLine();
145 startLine();
152 startLine();
186 startLine();
199 startLine();
218 startLine();
228 startLine();
301 private void startLine() { method in class:JavaSourceWriter
[all...]
/external/webkit/Source/WebCore/inspector/
H A DTimelineRecordFactory.cpp177 PassRefPtr<InspectorObject> TimelineRecordFactory::createParseHTMLData(unsigned int length, unsigned int startLine) argument
181 data->setNumber("startLine", startLine);
H A DInspectorTimelineAgent.cpp209 void InspectorTimelineAgent::willWriteHTML(unsigned int length, unsigned int startLine) argument
211 pushCurrentRecord(TimelineRecordFactory::createParseHTMLData(length, startLine), TimelineRecordType::ParseHTML);
H A DInspectorInstrumentation.h134 static InspectorInstrumentationCookie willWriteHTML(Document*, unsigned int length, unsigned int startLine);
254 static InspectorInstrumentationCookie willWriteHTMLImpl(InspectorAgent*, unsigned int length, unsigned int startLine);
776 inline InspectorInstrumentationCookie InspectorInstrumentation::willWriteHTML(Document* document, unsigned int length, unsigned int startLine) argument
780 return willWriteHTMLImpl(inspectorAgent, length, startLine);
H A DInspectorInstrumentation.cpp613 InspectorInstrumentationCookie InspectorInstrumentation::willWriteHTMLImpl(InspectorAgent* inspectorAgent, unsigned int length, unsigned int startLine) argument
618 timelineAgent->willWriteHTML(length, startLine);
/external/aac/libAACenc/src/
H A Daacenc_tns.cpp509 const INT startLine,
518 for (i=startLine; i<stopLine; i++) {
524 for (i=startLine; i<stopLine; i++) {
546 const INT startLine,
556 for (i=startLine; i<stopLine; i++) {
561 for (i=startLine; i<(stopLine-lag); i++) {
1015 INT i, startLine, stopLine; local
1023 startLine = (tnsData->filtersMerged) ? tC->lpcStartLine[LOFILT] : tC->lpcStartLine[HIFILT];
1046 &spectrum[startLine],
1047 stopLine - startLine,
506 FDKaacEnc_ScaleUpSpectrum( FIXP_DBL *dest, const FIXP_DBL *src, const INT startLine, const INT stopLine ) argument
544 FDKaacEnc_CalcAutoCorrValue( const FIXP_DBL *spectrum, const INT startLine, const INT stopLine, const INT lag, const INT scale ) argument
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DASTBuilder.h308 StatementNode* createBlockStatement(JSC::SourceElements* elements, int startLine, int endLine) argument
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) argument
346 result->setLoc(startLine, endLine);
372 StatementNode* createReturnStatement(ExpressionNode* expression, int eStart, int eEnd, int startLine, int endLine) argument
376 result->setLoc(startLine, endLine);
380 StatementNode* createBreakStatement(int eStart, int eEnd, int startLine, int endLine) argument
384 result->setLoc(startLine, endLine);
388 StatementNode* createBreakStatement(const Identifier* ident, int eStart, int eEnd, int startLine, int endLine) argument
392 result->setLoc(startLine, endLin
396 createContinueStatement(int eStart, int eEnd, int startLine, int endLine) argument
404 createContinueStatement(const Identifier* ident, int eStart, int eEnd, int startLine, int endLine) argument
412 createTryStatement(StatementNode* tryBlock, const Identifier* ident, bool catchHasEval, StatementNode* catchBlock, StatementNode* finallyBlock, int startLine, int endLine) argument
421 createSwitchStatement(ExpressionNode* expr, ClauseListNode* firstClauses, CaseClauseNode* defaultClause, ClauseListNode* secondClauses, int startLine, int endLine) argument
429 createWhileStatement(ExpressionNode* expr, StatementNode* statement, int startLine, int endLine) argument
436 createDoWhileStatement(StatementNode* statement, ExpressionNode* expr, int startLine, int endLine) argument
450 createWithStatement(ExpressionNode* expr, StatementNode* statement, int start, int end, int startLine, int endLine) argument
458 createThrowStatement(ExpressionNode* expr, int start, int end, int startLine, int endLine) argument
466 createDebugger(int startLine, int endLine) argument
473 createConstStatement(ConstDeclNode* decls, int startLine, int endLine) argument
[all...]
H A DJSParser.cpp742 int startLine = tokenLine(); local
757 return context.createDoWhileStatement(statement, expr, startLine, endLine);
763 int startLine = tokenLine(); local
775 return context.createWhileStatement(expr, statement, startLine, endLine);
842 int startLine = tokenLine(); local
892 return context.createForInLoop(forInTarget, forInInitializer, expr, statement, declsStart, inLocation, exprEnd, initStart, initEnd, startLine, endLine);
928 return context.createForLoop(decls, condition, increment, statement, hasDeclaration, startLine, endLine);
945 return context.createForInLoop(decls, expr, statement, declsStart, declsEnd, exprEnd, startLine, endLine);
953 int startLine = tokenLine(); local
959 return context.createBreakStatement(startCol, endCol, startLine, endLin
976 int startLine = tokenLine(); local
1000 int startLine = tokenLine(); local
1025 int startLine = tokenLine(); local
1044 int startLine = tokenLine(); local
1064 int startLine = tokenLine(); local
1174 int startLine = tokenLine(); local
1401 int startLine = tokenLine(); local
1455 int startLine = tokenLine(); local
[all...]
/external/clang/tools/c-index-test/
H A Dc-index-test.c942 unsigned startLine, startColumn, endLine, endColumn, curLine, curColumn; local
951 &startLine, &startColumn,
954 curLine = startLine;
/external/webkit/Source/WebCore/rendering/
H A DRenderBlockLineLayout.cpp917 RootInlineBox* startLine = determineStartPosition(firstLine, fullLayout, previousLineBrokeCleanly, resolver, floats, floatIndex, local
942 RootInlineBox* endLine = (fullLayout || !startLine) ?
943 0 : determineEndPosition(startLine, floats, floatIndex, cleanLineStart, cleanLineBidiStatus, endLineLogicalTop);
945 if (startLine) {
952 RootInlineBox* box = startLine;
1409 RootInlineBox* RenderBlock::determineEndPosition(RootInlineBox* startLine, Vector<FloatWithRect>& floats, size_t floatIndex, InlineIterator& cleanLineStart, BidiStatus& cleanLineBidiStatus, int& logicalTop) argument
1412 for (RootInlineBox* curr = startLine->nextRootBox(); curr; curr = curr->nextRootBox()) {
/external/clang/tools/libclang/
H A DCIndex.cpp4570 unsigned *startLine,
4582 *startLine = SM.getSpellingLineNumber(Body->getLBracLoc());
4567 clang_getDefinitionSpellingAndExtent(CXCursor C, const char **startBuf, const char **endBuf, unsigned *startLine, unsigned *startColumn, unsigned *endLine, unsigned *endColumn) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 459 milliseconds

12