Searched refs:lineCount (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseChunkRange.pl85 lineCount => 0,
97 lineCount => 1,
109 lineCount => 1,
121 lineCount => 2,
133 lineCount => 4,
145 lineCount => 4,
161 lineCount => 0,
174 lineCount => 0,
189 lineCount => 0,
201 lineCount
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
H A DGrid.java58 int lineCount = xLines + yLines + 4;
60 FloatBuffer fpb = BufferUtils.createFloatBuffer(6 * lineCount);
61 ShortBuffer sib = BufferUtils.createShortBuffer(2 * lineCount);
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DStringBlock.java54 private int lineCount; field in class:StringBlock
158 return lineCount;
161 void setLineCount(int lineCount) { argument
162 this.lineCount = lineCount;
H A DLetters.java76 int lineCount = 1;
88 lineCount++;
97 lineCount++;
105 lineCount++;
135 lineCount++;
141 block.setLineCount(lineCount);
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dread.c36 static int32_t lineCount; variable
51 lineCount = 1;
81 *linenumber = lineCount;
101 *linenumber = lineCount;
198 lineCount++;
220 warning(lineCount, "Mixing quoted and unquoted strings");
402 line = lineCount;
420 /* increment the lineCount */
449 lineCount++;
466 lineCount
[all...]
/external/icu4c/tools/genrb/
H A Dread.c37 static int32_t lineCount; variable
52 lineCount = 1;
83 *linenumber = lineCount;
103 *linenumber = lineCount;
200 lineCount++;
222 warning(lineCount, "Mixing quoted and unquoted strings");
404 line = lineCount;
422 /* increment the lineCount */
450 lineCount++;
467 lineCount
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dmirror-script.js55 assertEquals(file_lines, mirror.lineCount());
78 assertEquals(file_lines, fromJSON.lineCount);
/external/v8/test/mjsunit/
H A Dmirror-script.js55 assertEquals(file_lines, mirror.lineCount());
78 assertEquals(file_lines, fromJSON.lineCount);
/external/chromium_org/third_party/skia/src/core/
H A DSkEdgeBuilder.cpp118 int lineCount = SkLineClipper::ClipLine(pts, clip, lines); local
119 SkASSERT(lineCount <= SkLineClipper::kMaxClippedLineSegments);
120 for (int i = 0; i < lineCount; i++) {
194 int lineCount = SkLineClipper::ClipLine(pts, clip, lines); local
195 for (int i = 0; i < lineCount; i++) {
H A DSkLineClipper.cpp240 int lineCount = 1; local
284 lineCount = r - result;
290 for (int i = 0; i <= lineCount; i++) {
291 lines[lineCount - i] = result[i];
294 memcpy(lines, result, (lineCount + 1) * sizeof(SkPoint));
296 return lineCount;
/external/skia/src/core/
H A DSkEdgeBuilder.cpp118 int lineCount = SkLineClipper::ClipLine(pts, clip, lines); local
119 SkASSERT(lineCount <= SkLineClipper::kMaxClippedLineSegments);
120 for (int i = 0; i < lineCount; i++) {
194 int lineCount = SkLineClipper::ClipLine(pts, clip, lines); local
195 for (int i = 0; i < lineCount; i++) {
H A DSkLineClipper.cpp240 int lineCount = 1; local
284 lineCount = r - result;
290 for (int i = 0; i <= lineCount; i++) {
291 lines[lineCount - i] = result[i];
294 memcpy(lines, result, (lineCount + 1) * sizeof(SkPoint));
296 return lineCount;
/external/emma/core/java12/com/vladium/emma/data/
H A DMethodDescriptor.java140 final int lineCount = lines.length;
142 for (int l = 0; l < lineCount; ++ l)
159 for (int l = 0, lineCount = lines.length; l < lineCount; ++ l)
/external/emma/core/java12/com/vladium/emma/report/
H A DSrcFileItem.java195 final int lineCount = fldata.size ();
197 aggregates [TOTAL_LINE_COUNT] = lineCount;
202 final IntObjectMap /* line_no:int -> LineCoverageData */ lineCoverage = new IntObjectMap (lineCount);
207 for (int cl = 0; cl < lineCount; ++ cl)
/external/replicaisland/src/com/replica/replicaisland/
H A DConversationDialogActivity.java100 int lineCount = 0;
118 lineCount++;
121 lineCount++;
125 if (lineCount >= maxLinesPerPage || currentOffset >= textLength) {
126 lineCount = 0;
/external/icu4c/tools/gendict/
H A Dgendict.cpp368 int lineCount = 0;
371 lineCount++;
378 fprintf(stderr, "Error: no word on line %i!\n", lineCount);
390 fprintf(stderr, "Error: value too long on line %i!\n", lineCount);
399 fprintf(stderr, "Error: value syntax error or value too large on line %i!\n", lineCount);
412 status.errorName(), lineCount);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DCodeMirrorTextEditor.js426 if (lineNumber >= this._codeMirror.lineCount() || lineNumber < 0 || column < 0 || column > this._codeMirror.getLine(lineNumber).length)
474 if (lineNumber < 0 || lineNumber >= this._codeMirror.lineCount())
750 if (lineNumber < 0 || lineNumber >= this._codeMirror.lineCount())
761 if (lineNumber < 0 || lineNumber >= this._codeMirror.lineCount())
818 lineNumber = Math.min(lineNumber, this._codeMirror.lineCount() - 1);
864 var lineCount = this._codeMirror.lineCount();
865 if (lineCount <= 1)
949 var hasOneLine = this._codeMirror.lineCount() === 1;
1123 var lineCount
[all...]
H A Dexterns.js452 lineCount: function() { },
495 CodeMirror.prototype.lineCount;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DDebuggerScript.js138 var lineCount = lineEnds.length;
139 var endLine = script.line_offset + lineCount - 1;
146 if (lineCount === 1)
149 endColumn = script.source.length - (lineEnds[lineCount - 2] + 1);
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dcommit-log-editor224 my $lineCount = 0;
243 if ($line =~ m/^([0-9]{4}-[0-9]{2}-[0-9]{2})\s+(.*[^\s])\s+<(.*)>/ && $lineCount == 0) {
268 $lineCount++;
/external/v8/src/
H A Dmessages.js340 var upper = this.lineCount() - 1;
441 if (offset_line == -1 || offset_line + line >= this.lineCount()) {
464 var to_line = IS_UNDEFINED(opt_to_line) ? this.line_offset + this.lineCount()
471 if (to_line > this.lineCount()) to_line = this.lineCount();
474 if (from_line >= this.lineCount() ||
501 if (line < 0 || this.lineCount() <= line) {
581 "lineCount", ScriptLineCount,
/external/chromium_org/v8/src/
H A Dmessages.js371 var upper = this.lineCount() - 1;
472 if (offset_line == -1 || offset_line + line >= this.lineCount()) {
495 var to_line = IS_UNDEFINED(opt_to_line) ? this.line_offset + this.lineCount()
502 if (to_line > this.lineCount()) to_line = this.lineCount();
505 if (from_line >= this.lineCount() ||
532 if (line < 0 || this.lineCount() <= line) {
613 "lineCount", ScriptLineCount,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dmatchbrackets.js35 for (var i = cur.line, found, e = forward ? Math.min(i + 100, cm.lineCount()) : Math.max(-1, i - 100); i != e; i+=d) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDeprecatedFlexibleBox.cpp922 maxLineCount = max(maxLineCount, toRenderBlock(child)->lineCount());
937 int lineCount = blockChild->lineCount(); local
938 if (lineCount <= numVisibleLines)
953 RootInlineBox* lastLine = blockChild->lineAtIndex(lineCount - 1);
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAccessibilityObject.cpp889 int lineCount = -1; local
900 ++lineCount;
903 return lineCount;

Completed in 764 milliseconds

12