Home | History | Annotate | Download | only in testing

Lines Matching refs:it

55   for (auto it = std::istreambuf_iterator<char>(*input);
56 it != std::istreambuf_iterator<char>(); ++it) {
59 if (is_delim(*it)) {
60 issue_delim(*it);
61 } else if (is_quote(*it)) {
63 } else if (!isspace(*it)) {
64 start_token(*it);
68 if (is_delim(*it)) {
70 issue_delim(*it);
71 } else if (is_quote(*it)) {
74 } else if (isspace(*it)) {
77 current_token += *it;
81 if (is_quote(*it)) {
84 current_token += *it;