Searched refs:newLine (Results 1 - 11 of 11) sorted by relevance

/haiku/src/servers/syslog_daemon/
H A Dsyslog_output.cpp164 const char *newLine = strchr(message.message + pos, '\n'); local
165 if (newLine != NULL) {
166 length = newLine - message.message + 1 - pos;
200 if (newLine == NULL || !newLine[1]) {
/haiku/src/system/kernel/debug/
H A Ddebug_commands.cpp88 while (const char* newLine = strchr(string, '\n')) {
89 size_t length = newLine - string;
98 string = newLine + 1;
128 while (char* newLine = strchr(line, '\n')) {
130 *newLine = '\0';
133 line = newLine + 1;
H A Ddebug.cpp1119 bool newLine = false; local
1135 newLine = buffer[toPrint - 1] == '\n';
1152 if (!newLine)
/haiku/src/apps/cortex/InfoView/
H A DInfoView.cpp486 BString *newLine = new BString();
488 currentLine->MoveInto(*newLine, i,
491 currentLine = newLine;
513 BString *newLine = new BString();
514 currentLine->MoveInto(*newLine, lastBreak,
517 currentLine = newLine;
/haiku/src/system/boot/platform/openfirmware/
H A Dconsole.cpp113 bool newLine = false; local
120 newLine = true;
131 if (newLine) {
/haiku/src/add-ons/tracker/zipomatic/
H A DZipperThread.cpp191 char* newLine = strrchr(output, '\n'); local
192 if (newLine != NULL)
193 *newLine = '\0';
/haiku/src/tools/fs_shell/
H A Ddriver_settings.cpp143 bool newLine = false, end = false; local
200 newLine = is_parameter_separator(pos[0]) || end;
233 if (newLine)
236 newLine = true;
240 return newLine ? FSSH_B_NO_ERROR : CONTINUE_PARAMETER;
/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp1826 char *newLine = strchr(line, '\n');
1827 if (newLine != NULL)
1828 newLine[0] = '\0';
/haiku/src/system/libroot/os/
H A Ddriver_settings.cpp170 bool newLine = false, end = false; local
227 newLine = is_parameter_separator(pos[0]) || end;
260 if (newLine)
263 newLine = true;
267 return newLine ? B_NO_ERROR : CONTINUE_PARAMETER;
/haiku/src/kits/interface/
H A DTextView.cpp3890 STELine newLine; local
3891 newLine.offset = toOffset;
3892 newLine.origin = ceilf(curLine->origin + ascent + descent) + 1;
3893 newLine.ascent = 0;
3894 fLines->InsertLine(&newLine, lineIndex);
/haiku/src/apps/mail/
H A DContent.cpp1011 char newLine = '\n';
1012 Insert(&newLine, 1);

Completed in 185 milliseconds