Searched refs:tempString (Results 1 - 9 of 9) sorted by relevance

/haiku-fatelf/src/apps/debugger/user_interface/gui/value/
H A DTableCellStringRenderer.cpp22 BString tempString; local
23 if (!value->ToString(tempString))
25 for (int32 i = 0; i < tempString.Length(); i++) {
26 if (tempString[i] < 31) {
27 switch (tempString[i]) {
53 tempString.String()[i]);
58 } else if (tempString[i] == '\"')
61 string << tempString[i]; local
/haiku-fatelf/src/apps/text_search/
H A DGrepper.cpp182 char tempString[B_PATH_NAME_LENGTH]; local
212 sprintf(tempString, B_TRANSLATE("%s: Not enough room to escape "
217 message.AddString("error", tempString);
231 while (fgets(tempString, B_PATH_NAME_LENGTH, results) != 0) {
233 char* tempdup = strdup_to_utf8(fEncoding, tempString,
234 strlen(tempString));
238 message.AddString("text", tempString);
249 sprintf(tempString, B_TRANSLATE("%s: There was a problem running grep."), fileName);
253 message.AddString("error", tempString);
/haiku-fatelf/src/bin/mail_utils/
H A Dmail2mbox.cpp322 char tempString[2048]; local
326 sprintf(tempString, "Problems opening directory named \"%s\".",
328 DisplayErrorMessage(tempString, errno);
344 strlcpy(tempString, inputPathName, sizeof(tempString));
345 strlcat(tempString, entry->d_name, sizeof(tempString));
347 status = ProcessMessageFile(tempString);
/haiku-fatelf/src/kits/network/libnetapi/
H A DNetworkCookieJar.cpp282 BString tempString; local
286 tempString = tempCookieLine;
288 tempCookieLine.MoveInto(tempString, 0, endOfField);
294 tempCookie.SetDomain(tempString);
302 tempCookie.SetPath(tempString);
306 tempCookie.SetSecure(tempString == "TRUE");
310 tempCookie.SetExpirationDate(atoi(tempString));
314 tempCookie.SetName(tempString);
318 tempCookie.SetValue(tempString);
/haiku-fatelf/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPInboundProtocol.cpp300 BString tempString; local
301 if (settingsMsg.FindString("destination", &tempString) != B_OK) {
302 tempString = "/boot/home/mail/";
303 tempString += settings->Name();
305 fMailboxPath.SetTo(tempString);
/haiku-fatelf/src/apps/codycam/
H A DFtpClient.cpp512 string line, tempString; local
535 tempString = line.substr(0, 3);
536 outCode = atoi(tempString.c_str());
544 if ((line.find(tempString) == 0) && line[3] == ' ')
/haiku-fatelf/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A Dpop3.cpp814 char tempString [1024]; local
816 amountReceived = fServerConnection->Read(tempString,
817 sizeof(tempString) - 1);
821 tempString [amountReceived] = 0;
823 amountReceived, tempString);
/haiku-fatelf/src/kits/mail/
H A DMailMessage.cpp349 char tempString [20]; local
355 sprintf (tempString, "%d", to);
356 SetHeaderField("X-Priority", tempString);
/haiku-fatelf/src/apps/mail/
H A DMailWindow.cpp547 char tempString [2048]; local
548 query.GetPredicate (tempString, sizeof (tempString));
549 printf ("Query failed, was looking for: %s\n", tempString);
2277 BString tempString; local
2283 tempStringPntr = tempString.LockBuffer (tempStringLength);
2292 if (tempString[i] == 0 || (tempString[i] & 0x80)) {
2299 tempString.UnlockBuffer (tempStringLength);
2308 offset = tempString
[all...]

Completed in 94 milliseconds