HomeSort by relevance Sort by last modified time
    Searched full:startline (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/webkit/Source/WebKit/chromium/public/
WebScriptSource.h 42 int startLine;
45 : code(code), startLine(1) { }
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine)
49 : code(code), url(url), startLine(startLine) { }
  /external/webkit/Source/WebCore/inspector/front-end/
TextEditorModel.js 31 WebInspector.TextRange = function(startLine, startColumn, endLine, endColumn)
33 this.startLine = startLine;
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);
118 return new WebInspector.TextRange(range.startLine, range.startColumn, range.startLine, range.startColumn);
123 var prefix = this._lines[range.startLine].substring(0, range.startColumn);
124 var suffix = this._lines[range.startLine].substring(range.startColumn)
    [all...]
TextEditorHighlighter.js 70 var startLine = endLine;
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, endLine)
    [all...]
TextViewer.js 435 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 + chunk.linesCount <= this._textModel.linesCount
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 58 startLine();
67 startLine();
78 startLine();
84 startLine();
145 startLine();
152 startLine();
186 startLine();
199 startLine();
218 startLine();
228 startLine();
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
SimpleCharStream.java 257 public SimpleCharStream(java.io.Reader dstream, int startline,
261 line = startline;
270 public SimpleCharStream(java.io.Reader dstream, int startline,
273 this(dstream, startline, startcolumn, 4096);
280 public void ReInit(java.io.Reader dstream, int startline,
284 line = startline;
299 public void ReInit(java.io.Reader dstream, int startline,
302 ReInit(dstream, startline, startcolumn, 4096);
309 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
312 this(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize)
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
SimpleCharStream.java 257 public SimpleCharStream(java.io.Reader dstream, int startline,
261 line = startline;
270 public SimpleCharStream(java.io.Reader dstream, int startline,
273 this(dstream, startline, startcolumn, 4096);
280 public void ReInit(java.io.Reader dstream, int startline,
284 line = startline;
299 public void ReInit(java.io.Reader dstream, int startline,
302 ReInit(dstream, startline, startcolumn, 4096);
309 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
312 this(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize)
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
SimpleCharStream.java 257 public SimpleCharStream(java.io.Reader dstream, int startline,
261 line = startline;
270 public SimpleCharStream(java.io.Reader dstream, int startline,
273 this(dstream, startline, startcolumn, 4096);
280 public void ReInit(java.io.Reader dstream, int startline,
284 line = startline;
299 public void ReInit(java.io.Reader dstream, int startline,
302 ReInit(dstream, startline, startcolumn, 4096);
309 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
312 this(encoding == null ? new java.io.InputStreamReader(dstream) : new java.io.InputStreamReader(dstream, encoding), startline, startcolumn, buffersize)
    [all...]
  /external/icu4c/tools/genrb/
parse.cpp 93 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
278 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
298 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
422 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status)
439 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
500 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
512 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
562 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status)
569 return parseUCARules(tag, startline, status);
572 printf(" string %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
1922 uint32_t startline; local
    [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 742 int startLine = tokenLine();
757 return context.createDoWhileStatement(statement, expr, startLine, endLine);
763 int startLine = tokenLine();
775 return context.createWhileStatement(expr, statement, startLine, endLine);
842 int startLine = tokenLine();
    [all...]
  /frameworks/base/core/java/android/text/
DynamicLayout.java 260 int startline = getLineForOffset(where); local
261 int startv = getLineTop(startline);
298 mInts.deleteAt(startline, endline - startline);
299 mObjects.deleteAt(startline, endline - startline);
306 if (mIncludePad && startline == 0) {
317 mInts.adjustValuesBelow(startline, START, after - before);
318 mInts.adjustValuesBelow(startline, TOP, startv - endv + ht);
355 mInts.insertAt(startline + i, ints)
    [all...]
Layout.java 281 int startLine = getLineForOffset(sp.getSpanStart(margin));
282 useFirstLineMargin = i < startLine + count;
1429 int startline = getLineForOffset(start); local
    [all...]
  /external/webkit/Source/WebCore/inspector/
TimelineRecordFactory.cpp 177 PassRefPtr<InspectorObject> TimelineRecordFactory::createParseHTMLData(unsigned int length, unsigned int startLine)
181 data->setNumber("startLine", startLine);
TimelineRecordFactory.h 79 static PassRefPtr<InspectorObject> createParseHTMLData(unsigned int length, unsigned int startLine);
InspectorTimelineAgent.h 94 void willWriteHTML(unsigned int length, unsigned int startLine);
InspectorTimelineAgent.cpp 209 void InspectorTimelineAgent::willWriteHTML(unsigned int length, unsigned int startLine)
211 pushCurrentRecord(TimelineRecordFactory::createParseHTMLData(length, startLine), TimelineRecordType::ParseHTML);
  /external/webkit/Source/WebCore/bindings/js/
ScriptSourceCode.h 64 int startLine() const { return m_code.firstLine(); }
  /external/webkit/Source/WebCore/bindings/v8/
ScriptSourceCode.h 72 int startLine() const { return m_startPosition.m_line.oneBasedInt(); }
  /external/llvm/lib/Support/Unix/
Memory.inc 318 const intptr_t StartLine = ((intptr_t) Addr) & Mask;
321 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
325 for (intptr_t Line = StartLine; Line < EndLine; Line += LineSize)
  /external/aac/libAACenc/src/
aacenc_tns.cpp 509 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++) {
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 269 unsigned StartLine, StartColumn, EndLine, EndColumn;
271 &StartFile, &StartLine, &StartColumn,
279 Out << "{" << StartLine << ":" << StartColumn << "-"
  /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);
  /external/sonivox/arm-fm-22k/lib_src/
eas_imelodydata.h 57 EAS_I32 startLine; /* file offset at start of line (for repeats) */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_imelodydata.h 57 EAS_I32 startLine; /* file offset at start of line (for repeats) */

Completed in 1170 milliseconds

1 2 3