Lines Matching defs:text

580 	// If auto-signature, add signature to the text here.
599 // If we find the named query, add it to the text.
954 fPaste->SetEnabled(be_clipboard->Data()->HasData("text/plain",
977 "text/plain", B_MIME_TYPE));
2165 TTextView* text = src->fContentView->TextView();
2166 text_run_array* style = text->RunArray(0, text->TextLength());
2168 fContentView->TextView()->SetText(text->Text(), text->TextLength(), style);
2238 // insert (if selection) or load (if whole mail) message text into text view
2243 char* text = (char*)malloc(finish - start + 1);
2244 if (text == NULL)
2247 window->fContentView->TextView()->GetText(start, finish - start, text);
2248 if (text[strlen(text) - 1] != '\n') {
2249 text[strlen(text)] = '\n';
2252 fContentView->TextView()->SetText(text, finish - start);
2253 free(text);
2308 // if the encoded text is just 7bit characters.
2329 // text can safely use 7 bit characters.
2377 messageString << B_TRANSLATE("Your main text contains %ld"
2461 // the content text is always added to make sure there is a mail body
2904 // Check if it's a draft file, which contains only the text, and has the
2913 // Load the raw UTF-8 text from the file.
3027 // Clear out existing contents of text view.
3216 if (queryString.FindFirst("text/x-email") < 0) {
3218 temp << "(" << queryString << "&&(BEOS:TYPE==\"text/x-email\"))";
3228 BString text)
3232 search text to separate the email address and user name.
3236 text.ReplaceAll(" ", "*"); // query on MAIL:track demands * for space
3237 text.ReplaceAll("\"", "\\\"");
3242 term->Append(text);
3243 term->Append("*\")&&(BEOS:TYPE==\"text/x-email\"))");