Lines Matching refs:wordIter
1725 auto wordIter = parent->fTokens.begin(); in findCommentAfter() local
1726 std::advance(wordIter, index); in findCommentAfter()
1727 SkASSERT(&*wordIter == &includeDef); in findCommentAfter()
1730 wordIter = std::next(wordIter); in findCommentAfter()
1731 if (parent->fTokens.end() == wordIter) { in findCommentAfter()
1734 commentLine = wordIter->fLineCount; in findCommentAfter()
1735 } while (Punctuation::kSemicolon != wordIter->fPunctuation); in findCommentAfter()
1736 wordIter = std::next(wordIter); in findCommentAfter()
1737 if (parent->fTokens.end() != wordIter && Bracket::kSlashSlash == wordIter->fBracket in findCommentAfter()
1738 && wordIter->fLineCount == commentLine) { in findCommentAfter()
1739 return this->parseComment(wordIter->fFileName, wordIter->fContentStart, in findCommentAfter()
1740 wordIter->fContentEnd, wordIter->fLineCount, markupDef, &markupDef->fUndocumented); in findCommentAfter()
1750 auto wordIter = parent->fTokens.begin(); in findComments() local
1751 std::advance(wordIter, index); in findComments()
1752 SkASSERT(&*wordIter == &includeDef); in findComments()
1753 while (parent->fTokens.begin() != wordIter) { in findComments()
1754 auto testIter = std::prev(wordIter); in findComments()
1763 wordIter = testIter; in findComments()
1765 auto commentIter = wordIter; in findComments()
1776 while (commentIter != wordIter) { in findComments()