Home | History | Annotate | Download | only in parser

Lines Matching refs:iEnd

901       int32_t iEnd = wsValue.Find(L'\n', iStart);
902 iEnd = (iEnd == -1) ? iLength : iEnd;
903 while (iEnd >= iStart) {
904 wsSelTextArray.push_back(wsValue.Mid(iStart, iEnd - iStart));
905 iStart = iEnd + 1;
909 iEnd = wsValue.Find(L'\n', iStart);
910 if (iEnd < 0)