Home | History | Annotate | Download | only in runtime

Lines Matching refs:p0

714     unsigned p0 = 0;
730 if (static_cast<unsigned>(mpos) != p0 || mlen) {
731 result->put(exec, i++, jsSubstring(exec, s, p0, mpos - p0));
732 p0 = mpos + mlen;
749 while (i != limit && p0 < s.length() - 1)
750 result->put(exec, i++, jsSingleCharacterSubstring(exec, s, p0++));
753 while (i != limit && (pos = s.find(u2, p0)) != notFound) {
754 result->put(exec, i++, jsSubstring(exec, s, p0, pos - p0));
755 p0 = pos + u2.length();
762 result->put(exec, i++, jsSubstring(exec, s, p0, s.length() - p0));