HomeSort by relevance Sort by last modified time
    Searched refs:lineCount (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
Grid.java 58 int lineCount = xLines + yLines + 4;
60 FloatBuffer fpb = BufferUtils.createFloatBuffer(6 * lineCount);
61 ShortBuffer sib = BufferUtils.createShortBuffer(2 * lineCount);
  /frameworks/base/core/java/com/android/internal/widget/
DialogTitle.java 51 final int lineCount = layout.getLineCount();
52 if (lineCount > 0) {
53 final int ellipsisCount = layout.getEllipsisCount(lineCount - 1);
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
StringBlock.java 54 private int lineCount;
158 return lineCount;
161 void setLineCount(int lineCount) {
162 this.lineCount = lineCount;
Letters.java 76 int lineCount = 1;
88 lineCount++;
97 lineCount++;
105 lineCount++;
135 lineCount++;
141 block.setLineCount(lineCount);
  /external/icu4c/tools/genrb/
read.c 37 static int32_t lineCount;
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/skia/src/core/
SkEdgeBuilder.cpp 118 int lineCount = SkLineClipper::ClipLine(pts, clip, lines);
119 SkASSERT(lineCount <= SkLineClipper::kMaxClippedLineSegments);
120 for (int i = 0; i < lineCount; i++) {
184 int lineCount = SkLineClipper::ClipLine(pts, clip, lines);
185 for (int i = 0; i < lineCount; i++) {
SkLineClipper.cpp 240 int lineCount = 1;
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/webkit/Tools/Scripts/
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/skia/legacy/src/core/
SkLineClipper.cpp 192 int lineCount = 1;
236 lineCount = r - result;
242 for (int i = 0; i <= lineCount; i++) {
243 lines[lineCount - i] = result[i];
246 memcpy(lines, result, (lineCount + 1) * sizeof(SkPoint));
248 return lineCount;
SkEdgeBuilder.cpp 104 int lineCount = SkLineClipper::ClipLine(pts, clip, lines);
105 for (int i = 0; i < lineCount; i++) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
Ticker.java 94 int lineCount = l.getLineCount();
95 if (lineCount > 0) {
101 throw new RuntimeException("lineCount=" + lineCount + " current=" + current +
120 final int lineCount = l.getLineCount();
122 for (i=0; i<lineCount; i++) {
125 if (i == lineCount-1) {