Searched refs:lines (Results 1 - 20 of 20) sorted by relevance

/haiku/3rdparty/kallisti5/
H A DlicenseReport.rb25 lines = File.foreach(filename).first(30).join("\n")
26 return "empty file" if lines == nil
29 if lines.downcase.include?(pattern.downcase)
/haiku/src/tools/cppunit/cppunit/
H A DCompilerOutputter.cpp163 Lines lines = splitMessageIntoLines( message ); local
165 for ( Lines::iterator it = lines.begin(); it != lines.end(); ++it )
187 Lines lines; local
195 lines.push_back( message.substr( itStart - message.begin(),
201 return lines;
/haiku/src/kits/interface/
H A DStringView.cpp277 BStringList lines; local
278 BString(fText).Split("\n", false, lines);
279 for (int i = 0; i < lines.CountStrings(); i++) {
280 const char* text = lines.StringAt(i).String();
286 truncated = lines.StringAt(i);
294 * (lines.CountStrings() - i - 1);
594 int32 lines = 1; local
598 lines++;
602 + fontHeight.leading) * lines;
618 BStringList lines; local
[all...]
H A DIcon.cpp398 int32 lines = b.IntegerHeight() + 1; local
403 for (int32 y = 0; y < lines; y++) {
457 for (int32 y = 0; y < lines; y++) {
511 for (int32 y = 0; y < lines; y++) {
563 for (int32 y = 0; y < lines; y++) {
/haiku/src/system/kernel/debug/
H A Ddebug_builtin_commands.cpp130 uint64 lines; member in struct:user_data
142 userData->lines = 0;
145 if (++userData->lines <= userData->max_lines) {
275 uint64 lines; member in struct:user_data
287 userData->lines = 0;
296 userData->lines, userData->words, userData->chars);
300 userData->lines++;
375 "Prints only the first lines of output from another command",
378 "<maxLines> lines of output from the previous command in the pipe and\n"
381 "Prints only the last lines o
[all...]
H A Dblue_screen.cpp388 int32 high = argCount > 1 ? args[1] : sScreen.lines;
395 int32 lines = argCount > 0 ? args[0] : 1;
396 while (lines > 0) {
398 lines--;
404 int32 lines = argCount > 0 ? args[0] : 1;
405 while (lines > 0) {
407 lines--;
/haiku/src/add-ons/kernel/drivers/common/
H A Dconsole.cpp54 int32 lines; member in struct:console_desc
98 if (newY >= console->lines)
99 newY = console->lines - 1;
113 console->scroll_bottom = console->lines - 1;
249 console->lines - console->y, ' ', console->attr);
307 if (bottom >= console->lines)
308 bottom = console->lines - 1;
464 int32 high = argCount > 1 ? args[1] : console->lines;
471 int32 lines = argCount > 0 ? args[0] : 1; local
472 while (lines >
480 int32 lines = argCount > 0 ? args[0] : 1; local
[all...]
/haiku/src/tests/apps/miniterminal/
H A DConsole.cpp403 int32 lines = argCount > 0 ? args[0] : 1; local
404 while (lines > 0) {
406 lines--;
411 int32 lines = argCount > 0 ? args[0] : 1; local
412 while (lines > 0) {
414 lines--;
/haiku/src/add-ons/screen_savers/message/
H A DMessage.cpp267 BStringList lines; local
269 int32 count = get_lines(origMessage, lines, &longestLine);
272 font.StringWidth(lines.StringAt(longestLine).String());
285 offscreen.DrawString(lines.StringAt(i).String(), start);
/haiku/src/apps/terminal/
H A DBasicTerminalBuffer.cpp260 // update the dirty lines
861 // Clear the preceding lines.
889 // Clear the following lines.
1084 TerminalLine** lines = (TerminalLine**)malloc(sizeof(TerminalLine*) * count); local
1085 if (lines == NULL)
1091 lines[i] = (TerminalLine*)malloc(size);
1092 if (lines[i] == NULL) {
1093 _FreeLines(lines, i);
1096 lines[i]->Clear(width);
1099 return lines;
1104 _FreeLines(TerminalLine** lines, int32 count) argument
1195 TerminalLine** lines = _AllocateLines(width, height); local
[all...]
H A DBasicTerminalBuffer.h27 int32 linesScrolled; // number of lines added to the history
132 // insert chars/lines
146 // delete chars/lines
196 static void _FreeLines(TerminalLine** lines, int32 count);
/haiku/src/apps/charactermap/
H A DCharacterView.cpp710 int32 lines = (kUnicodeBlocks[i].Count() + fCharactersPerLine - 1) local
712 fDataRect.bottom += lines * fCharacterHeight + fTitleHeight + fTitleGap;
756 int32 lines = (top - characterTop + fCharacterHeight - 1) local
759 character = kUnicodeBlocks[i].start + lines * fCharactersPerLine;
760 offset = top - characterTop - lines * fCharacterHeight;
/haiku/src/bin/unzip/
H A Dglobals.h164 int lines; /* count of lines displayed on current screen */ member in struct:Globals
266 ulg numlines; /* fileio static: number of lines printed */
H A Dfileio.c784 end-of-lines and ASCII/EBCDIC as needed. If SMALL_MEM or MED_MEM are NOT
1292 ++((Uz_Globs *)pG)->lines;
1293 if (((Uz_Globs *)pG)->lines >= ((Uz_Globs *)pG)->height)
1346 ++((Uz_Globs *)pG)->lines;
1347 if (((Uz_Globs *)pG)->lines >= ((Uz_Globs *)pG)->height)
1491 ((Uz_Globs *)pG)->lines = 0;
/haiku/src/bin/
H A Dleak_analyser.sh41 stack trace lines. Note that the whole block is on a single
/haiku/src/apps/tv/
H A DVideoNode.cpp40 overlay_copy(uint32 lines, void *dst, uint32 dst_bpr, const void *src, argument
46 while (lines--) {
/haiku/src/bin/network/ftpd/
H A Dftpcmd.y1542 int columns, lines;
1549 lines = (NCMDS + columns - 1) / columns;
1550 for (i = 0; i < lines; i++) {
1553 c = ctab + j * lines + i;
1556 if (c + lines >= &ctab[NCMDS])
/haiku/src/apps/icon-o-matic/generic/gui/
H A DIconButton.cpp623 int32 lines = b.IntegerHeight() + 1; local
627 for (int32 y = 0; y < lines; y++) {
668 for (int32 y = 0; y < lines; y++) {
/haiku/src/kits/shared/
H A DIconButton.cpp708 int32 lines = b.IntegerHeight() + 1; local
712 for (int32 y = 0; y < lines; y++) {
756 for (int32 y = 0; y < lines; y++) {
/haiku/src/apps/bootmanager/
H A Dbootman.S41 %assign SCROLL_UP 0x06 ; al - lines (0: clear screen)

Completed in 209 milliseconds