Home | History | Annotate | Download | only in parser

Lines Matching refs:foundPosition

629     size_t foundPosition = notFound;
648 if (startPosition + 2 < endPosition && (foundPosition = string.find("*/", startPosition + 2)) != notFound)
649 startPosition = foundPosition + 2;
665 for (foundPosition = startPosition; foundPosition < endPosition; foundPosition++) {
667 if (startsSingleLineCommentAt(string, foundPosition) || startsMultiLineCommentAt(string, foundPosition)) {
668 foundPosition += 2;
671 if (startsHTMLCommentAt(string, foundPosition)) {
672 foundPosition += 4;
676 if (string[foundPosition] == ',' || (foundPosition > startPosition + kMaximumFragmentLengthTarget && isHTMLSpace(string[foundPosition]))) {
681 result = fullyDecodeString(string.substring(startPosition, foundPosition - startPosition), m_encoding);
682 startPosition = foundPosition + 1;