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

12

/haiku-fatelf/src/system/boot/loader/
H A Dpager.cpp68 int32 lineCount = 0; local
78 lineCount++;
81 return lineCount;
89 int32 lineCount = 0; local
93 if (line == lineCount)
102 lineCount++;
122 int32 lineCount = count_lines(textSource, width, lineBuffer, local
152 int32 bottomLine = std::min(topLine + height - 2, lineCount - 1);
154 topLine, bottomLine, (bottomLine + 1) * 100 / lineCount);
197 topLine = lineCount;
[all...]
/haiku-fatelf/src/apps/debugger/model/
H A DFileSourceCode.cpp105 int32 lineCount = CountLines(); local
106 if (location.Line() >= lineCount)
119 _end = index + 1 < lineCount
120 ? fSourceLocations[index + 1] : SourceLocation(lineCount);
/haiku-fatelf/src/tests/servers/app/painter/
H A DShapeConverter.h33 virtual status_t IterateLineTo(int32 lineCount, BPoint* linePts);
H A DShapeConverter.cpp50 ShapeConverter::IterateLineTo(int32 lineCount, BPoint* linePts) argument
52 while (lineCount--) {
/haiku-fatelf/src/tests/servers/app/copy_bits/
H A Dmain.cpp94 int32 lineCount = 20; local
96 for (int32 i = 0; i < lineCount; i++) {
97 SetHighColor(255, (255 / lineCount) * i, 255 - (255 / lineCount) * i);
98 StrokeLine(BPoint(r.left + (width / lineCount) * i, r.top),
99 BPoint(r.left, r.top + (height / lineCount) * i));
100 StrokeLine(BPoint(r.right - (width / lineCount) * i, r.bottom),
101 BPoint(r.right, r.bottom - (height / lineCount) * i));
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DDrawShape.cpp166 DrawShape::IterateLineTo(int32 lineCount, BPoint *linePoints) argument
168 REPORT(kDebug, 0, "IterateLineTo %d", (int)lineCount);
170 for (int32 i = 0; i < lineCount; i++) {
H A DDrawShape.h73 status_t IterateLineTo(int32 lineCount, BPoint *linePoints);
/haiku-fatelf/src/system/boot/platform/openfirmware/
H A Dconsole.cpp234 int lineCount; local
235 if (of_interpret("#lines", 0, 1, &lineCount) == OF_FAILED)
237 return lineCount;
/haiku-fatelf/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp244 int32 lineCount = int32(Bounds().Height() / fLineHeight); local
269 newAddress -= (blockSize * fHexBlocksPerLine) * lineCount;
274 newAddress += (blockSize * fHexBlocksPerLine) * lineCount;
456 int32 lineCount = 0; local
459 lineCount = fTargetBlock->Size() / (fHexBlocksPerLine
462 lineCount = fTargetBlock->Size() / fTextCharsPerLine;
464 totalHeight = lineCount * fLineHeight;
/haiku-fatelf/src/tests/servers/app/shape_test/
H A Dmain.cpp69 virtual status_t IterateLineTo(int32 lineCount, BPoint* linePts) argument
71 while (lineCount--) {
/haiku-fatelf/src/apps/icon-o-matic/import_export/flat_icon/
H A DFlatIconExporter.h84 int32& lineCount,
H A DFlatIconExporter.cpp283 int32& straightCount, int32& lineCount, int32& curveCount)
286 lineCount = 0;
300 lineCount++;
387 int32 lineCount; local
390 straightCount, lineCount, curveCount))
394 = pointCount + straightCount * 2 + lineCount * 4 + curveCount * 12;
282 _AnalysePath(VectorPath* path, uint8 pointCount, int32& straightCount, int32& lineCount, int32& curveCount) argument
/haiku-fatelf/src/documentation/docbook-xsl/extensions/saxon643/com/nwalsh/saxon/
H A DLineCountEmitter.java56 public int lineCount() { method in class:LineCountEmitter
/haiku-fatelf/src/tests/kits/interface/layout/widget_layout_test/
H A DGroupView.h16 int32 lineCount = 1);
H A DGroupView.cpp51 GroupView::GroupView(enum orientation orientation, int32 lineCount) argument
54 fLineCount(lineCount),
/haiku-fatelf/src/tests/kits/interface/picture/
H A DMatrix.h44 virtual status_t IterateLineTo(int32 lineCount, BPoint *linePts);
175 inline status_t BTransformIterator::IterateLineTo(int32 lineCount, BPoint *linePts) argument
177 for (int32 i = 0; i < lineCount; i++)
/haiku-fatelf/src/apps/icon-o-matic/import_export/styled_text/
H A DStyledTextImporter.cpp52 virtual status_t IterateLineTo(int32 lineCount, BPoint *linePts);
97 ShapeIterator::IterateLineTo(int32 lineCount, BPoint *linePts) argument
102 while (lineCount--) {
/haiku-fatelf/headers/os/interface/
H A DShape.h27 virtual status_t IterateLineTo(int32 lineCount,
/haiku-fatelf/src/apps/cortex/support/
H A DMediaString.h142 uint32 lineCount);
/haiku-fatelf/src/apps/resedit/
H A DMiscEditors.cpp170 float lineCount = fValueView->CountLines() < 5.0 ? fValueView->CountLines() : 5.0; local
171 return fOK->Frame().Height() + (strheight * lineCount) + 40.0;
/haiku-fatelf/src/system/boot/platform/atari_m68k/
H A Dconsole.cpp242 int lineCount = 25; //XXX: check video mode local
243 return lineCount;
/haiku-fatelf/headers/private/print/
H A DPicturePrinter.h117 status_t IterateLineTo(int32 lineCount, BPoint *linePoints);
/haiku-fatelf/src/apps/mediaplayer/interface/
H A DSubtitleBitmap.cpp377 int32 lineCount = fTextView->CountLines(); local
378 for (int32 i = 0; i < lineCount; i++)
/haiku-fatelf/src/system/boot/platform/amiga_m68k/
H A Dconsole.cpp211 int lineCount = (gScreen->Height - sScreenTopOffset) / sFontHeight; local
212 return lineCount;
/haiku-fatelf/src/kits/print/
H A DPicturePrinter.cpp462 ShapePrinter::IterateLineTo(int32 lineCount, BPoint *linePoints) argument
466 for (int32 i = 0; i < lineCount; i++) {

Completed in 285 milliseconds

12