Lines Matching refs:iter
4486 std::string::const_iterator iter = comment.begin();
4487 while (iter != comment.end()) {
4488 document_ += *iter;
4489 if (*iter == '\n' &&
4490 (iter != comment.end() && *(iter + 1) == '/'))
4492 ++iter;
4703 std::string::const_iterator iter = comment.begin();
4704 while (iter != comment.end()) {
4705 *document_ << *iter;
4706 if (*iter == '\n' &&
4707 (iter != comment.end() && *(iter + 1) == '/'))
4710 ++iter;
4984 std::string::const_iterator iter = comment.begin();
4985 while (iter != comment.end()) {
4986 *sout_ << *iter;
4987 if (*iter == '\n' &&
4988 (iter != comment.end() && *(iter + 1) == '/'))
4991 ++iter;