Lines Matching refs:srcURL
638 WideString srcURL = csURL; in MailToInfo() local
639 srcURL.TrimLeft(); in MailToInfo()
640 if (srcURL.Left(7).CompareNoCase(L"mailto:") != 0) in MailToInfo()
643 auto pos = srcURL.Find(L'?'); in MailToInfo()
648 pos = srcURL.Find(L'@'); in MailToInfo()
652 tmp = srcURL.Right(csURL.GetLength() - 7); in MailToInfo()
654 tmp = srcURL.Left(pos.value()); in MailToInfo()
661 srcURL = srcURL.Right(srcURL.GetLength() - (pos.value() + 1)); in MailToInfo()
662 while (!srcURL.IsEmpty()) { in MailToInfo()
663 srcURL.Trim(); in MailToInfo()
664 pos = srcURL.Find(L'&'); in MailToInfo()
665 WideString tmp = (!pos.has_value()) ? srcURL : srcURL.Left(pos.value()); in MailToInfo()
687 srcURL = pos.has_value() in MailToInfo()
688 ? srcURL.Right(csURL.GetLength() - (pos.value() + 1)) in MailToInfo()