/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
D | StringBlock.java | 54 private int lineCount; field in StringBlock 158 return lineCount; in getLineCount() 161 void setLineCount(int lineCount) { in setLineCount() argument 162 this.lineCount = lineCount; in setLineCount()
|
D | Letters.java | 76 int lineCount = 1; in update() local 88 lineCount++; in update() 97 lineCount++; in update() 105 lineCount++; in update() 135 lineCount++; in update() 141 block.setLineCount(lineCount); in update()
|
/external/icu4c/tools/genrb/ |
D | read.c | 36 static int32_t lineCount; variable 51 lineCount = 1; in resetLineNumber() 81 *linenumber = lineCount; in getNextToken() 101 *linenumber = lineCount; in getNextToken() 198 lineCount++; in getStringToken() 220 warning(lineCount, "Mixing quoted and unquoted strings"); in getStringToken() 402 line = lineCount; in seekUntilEndOfComment() 449 lineCount++; in isWhitespace() 466 lineCount++; in isNewline()
|
/external/webkit/Tools/Scripts/ |
D | commit-log-editor | 156 my $lineCount = 0; 181 if ($line =~ m/^([0-9]{4}-[0-9]{2}-[0-9]{2})\s+(.*[^\s])\s+<(.*)>/ && $lineCount == 0) { 192 if ($previousLineWasBlank && $hasAuthorInfoToWrite && $lineCount > 0) { 202 if ($previousLineWasBlank && $reviewedByLine && $lineCount > 0) { 207 $lineCount++;
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/ |
D | Grid.java | 58 int lineCount = xLines + yLines + 4; in Grid() local 60 FloatBuffer fpb = BufferUtils.createFloatBuffer(6 * lineCount); in Grid() 61 ShortBuffer sib = BufferUtils.createShortBuffer(2 * lineCount); in Grid()
|
/external/skia/src/core/ |
D | SkLineClipper.cpp | 192 int lineCount = 1; in ClipLine() local 236 lineCount = r - result; in ClipLine() 242 for (int i = 0; i <= lineCount; i++) { in ClipLine() 243 lines[lineCount - i] = result[i]; in ClipLine() 246 memcpy(lines, result, (lineCount + 1) * sizeof(SkPoint)); in ClipLine() 248 return lineCount; in ClipLine()
|
D | SkEdgeBuilder.cpp | 104 int lineCount = SkLineClipper::ClipLine(pts, clip, lines); in build() local 105 for (int i = 0; i < lineCount; i++) { in build()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | SourceFile.js | 186 var lineCount = lineEndings.length; 187 if (lineCount === 1) 190 lineNumber += lineCount - 1; 191 columnNumber = lineEndings[lineCount - 1] - lineEndings[lineCount - 2] - 1;
|
/external/emma/core/java12/com/vladium/emma/report/ |
D | SrcFileItem.java | 195 final int lineCount = fldata.size (); in getAggregate() local 197 aggregates [TOTAL_LINE_COUNT] = lineCount; in getAggregate() 202 …nal IntObjectMap /* line_no:int -> LineCoverageData */ lineCoverage = new IntObjectMap (lineCount); in getAggregate() 207 for (int cl = 0; cl < lineCount; ++ cl) in getAggregate()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | ConversationDialogActivity.java | 100 int lineCount = 0; in formatPages() local 118 lineCount++; in formatPages() 121 lineCount++; in formatPages() 125 if (lineCount >= maxLinesPerPage || currentOffset >= textLength) { in formatPages() 126 lineCount = 0; in formatPages()
|
/external/emma/core/java12/com/vladium/emma/data/ |
D | MethodDescriptor.java | 140 final int lineCount = lines.length; in getLineMap() local 142 for (int l = 0; l < lineCount; ++ l) in getLineMap() 159 for (int l = 0, lineCount = lines.length; l < lineCount; ++ l) in getLineMap()
|
/external/v8/test/mjsunit/ |
D | mirror-script.js | 55 assertEquals(file_lines, mirror.lineCount()); 78 assertEquals(file_lines, fromJSON.lineCount);
|
/external/v8/src/ |
D | messages.js | 340 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) {
|
D | mirror-debugger.js | 1865 ScriptMirror.prototype.lineCount = function() { method in ScriptMirror 1866 return this.script_.lineCount(); 1912 result += this.lineOffset() + this.lineCount() - 1; 1914 result += this.lineCount(); 2171 content.lineCount = mirror.lineCount();
|
D | debug-debugger.js | 400 this.line_ < script.line_offset + script.lineCount())) { 426 script.sourceColumnStart_ = new Array(script.lineCount()); 1258 lineCount: script.lineCount(), property 2221 response.body.totalLines = script.lineCount();
|
D | d8.js | 2224 result += body[i].lineCount;
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderFlexibleBox.cpp | 865 maxLineCount = max(maxLineCount, toRenderBlock(child)->lineCount()); in applyLineClamp() 880 int lineCount = blockChild->lineCount(); in applyLineClamp() local 881 if (lineCount <= numVisibleLines) in applyLineClamp() 900 RootInlineBox* lastLine = blockChild->lineAtIndex(lineCount - 1); in applyLineClamp()
|
D | RenderBlock.h | 133 int lineCount();
|
D | RenderBlock.cpp | 5602 int RenderBlock::lineCount() in lineCount() function in WebCore::RenderBlock 5612 count += toRenderBlock(obj)->lineCount(); in lineCount()
|
/external/webkit/Source/WebCore/accessibility/ |
D | AccessibilityObject.cpp | 661 unsigned lineCount = 0; in lineForPosition() local 669 ++lineCount; in lineForPosition() 675 return lineCount - 1; in lineForPosition()
|
D | AccessibilityRenderObject.cpp | 2436 VisiblePositionRange AccessibilityRenderObject::visiblePositionRangeForLine(unsigned lineCount) con… in visiblePositionRangeForLine() 2438 if (!lineCount || !m_renderer) in visiblePositionRangeForLine() 2446 while (--lineCount) { in visiblePositionRangeForLine() 2671 for (unsigned lineCount = lineNumber; lineCount; lineCount -= 1) { in doAXRangeForLine() local
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrVisitor.java | 1243 final int lineCount = attribute.size (); in visit() local 1257 if (lineCount == 0) in visit() 1268 for (int l = 0; l < lineCount; ++ l) in visit() 1299 if (l == lineCount - 1) in visit() 1334 for (int l = 0; l < lineCount; ++ l) in visit()
|
/external/webkit/Tools/android/webkitmerge/ |
D | webkitmerge.cpp | 117 int lineCount = 0; in GetFile() local 121 lineCount++; in GetFile() 125 *lines = lineCount; in GetFile()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2005-08-23 | 41164 (khtml::RenderBlock::lineCount): 46877 (khtml::RenderBlock::lineCount): 51288 (khtml::TokenizerString::lineCount):
|
D | ChangeLog-2009-06-16 | 46257 (WebCore::RenderBlock::lineCount):
|