Searched refs:lastDot (Results 1 - 2 of 2) sorted by relevance

/haiku/src/preferences/mail/
H A DDNSQuery.cpp216 int32 dot, lastDot, diff; local
222 lastDot = dot + 1;
225 dot = outString.FindFirst(".", lastDot + 1);
230 diff = dot - 1 - lastDot;
231 outString.SetByteAt(lastDot, (char)diff);
232 lastDot = dot;
235 lastDot = 0;
237 diff = outString.CountChars() - 1 - lastDot;
238 outString.SetByteAt(lastDot, (char)diff);
/haiku/src/apps/haikudepot/util/
H A DStorageUtils.cpp447 int32 lastDot = result.FindLast("."); local
448 if (lastDot != B_ERROR) {
449 result.Truncate(lastDot);

Completed in 29 milliseconds