Lines Matching refs:srcURL
663 WideString srcURL = csURL; in MailToInfo() local
664 srcURL.TrimLeft(); in MailToInfo()
665 if (srcURL.Left(7).CompareNoCase(L"mailto:") != 0) in MailToInfo()
668 auto pos = srcURL.Find(L'?'); in MailToInfo()
673 pos = srcURL.Find(L'@'); in MailToInfo()
677 tmp = srcURL.Right(csURL.GetLength() - 7); in MailToInfo()
679 tmp = srcURL.Left(pos.value()); in MailToInfo()
686 srcURL = srcURL.Right(srcURL.GetLength() - (pos.value() + 1)); in MailToInfo()
687 while (!srcURL.IsEmpty()) { in MailToInfo()
688 srcURL.Trim(); in MailToInfo()
689 pos = srcURL.Find(L'&'); in MailToInfo()
690 WideString tmp = (!pos.has_value()) ? srcURL : srcURL.Left(pos.value()); in MailToInfo()
712 srcURL = pos.has_value() in MailToInfo()
713 ? srcURL.Right(csURL.GetLength() - (pos.value() + 1)) in MailToInfo()