Lines Matching refs:srcURL
838 WideString srcURL = csURL; in MailToInfo() local
839 srcURL.TrimLeft(); in MailToInfo()
840 if (srcURL.Left(7).CompareNoCase(L"mailto:") != 0) in MailToInfo()
843 auto pos = srcURL.Find(L'?'); in MailToInfo()
846 pos = srcURL.Find(L'@'); in MailToInfo()
850 tmp = srcURL.Right(csURL.GetLength() - 7); in MailToInfo()
852 tmp = srcURL.Left(pos.value()); in MailToInfo()
859 srcURL = srcURL.Right(srcURL.GetLength() - (pos.value() + 1)); in MailToInfo()
860 while (!srcURL.IsEmpty()) { in MailToInfo()
861 srcURL.Trim(); in MailToInfo()
862 pos = srcURL.Find(L'&'); in MailToInfo()
864 tmp = (!pos.has_value()) ? srcURL : srcURL.Left(pos.value()); in MailToInfo()
886 srcURL = !pos.has_value() in MailToInfo()
888 : srcURL.Right(csURL.GetLength() - (pos.value() + 1)); in MailToInfo()