Searched refs:lineEnd (Results 1 - 8 of 8) sorted by relevance

/haiku/src/add-ons/kernel/partitioning_systems/vmdk/
H A Dvmdk.cpp125 next_token(char*& line, const char* lineEnd, Token& token) argument
128 while (line != lineEnd && isspace(*line))
132 if (line == lineEnd || *line == '#') {
150 while (line != lineEnd) {
160 if (line == lineEnd)
174 while (line != lineEnd && *line != '#' && *line != '='
249 char* lineEnd = strchr(line, '\n'); local
250 if (lineEnd != NULL)
251 *lineEnd = '\0';
253 lineEnd
[all...]
/haiku/src/system/kernel/debug/
H A Dsafemode_settings.cpp51 const char* lineEnd = strchr(settings, '\n'); local
53 if (lineEnd != NULL)
54 nextLine = lineEnd + 1;
56 nextLine = lineEnd = settingsEnd;
59 lineEnd = std::find(settings, lineEnd, '#');
68 for (; settings < lineEnd; settings++) {
/haiku/src/system/boot/loader/
H A Dpager.cpp44 if (const char* lineEnd = strchr(buffer, '\n'))
45 bytesRead = lineEnd - buffer;
H A Dpackage_support.cpp359 while (char* lineEnd = strchr(line, '\n')) {
360 *lineEnd = '\0';
368 line = lineEnd + 1;
/haiku/src/tests/kits/storage/testapps/
H A DPathMonitorTest2.cpp139 const char* lineEnd = strchr(line, '\n'); local
140 lineEnd = lineEnd != NULL ? lineEnd + 1 : end;
143 result.Append(line, lineEnd - line);
144 line = lineEnd;
/haiku/src/apps/mail/
H A DContent.cpp3079 int32 lineEnd = finish > lineStart ? finish - 1 : finish;
3082 while (text[lineEnd] && text[lineEnd] != '\n')
3083 lineEnd++;
3085 Select(lineStart, lineEnd);
3087 int32 textLength = lineEnd - lineStart;
3159 int32 lineEnd = finish > lineStart ? finish - 1 : finish;
3161 while (text[lineEnd] && text[lineEnd] != '\n')
3162 lineEnd
[all...]
/haiku/src/kits/interface/
H A DMenuItem.cpp445 BPoint lineEnd(lineStart);
446 lineEnd.x += escapements[fTriggerIndex] * font.Size();
448 fSuper->StrokeLine(lineStart, lineEnd);
/haiku/src/apps/haikudepot/textview/
H A DParagraphLayout.h221 bool _FinalizeLine(int lineStart, int lineEnd,

Completed in 62 milliseconds