Lines Matching refs:pos
26 string::size_type pos = result.find_last_of(ch);27 if (pos != string::npos)28 result.erase(0, pos + 1);59 for (size_t pos = 0 ; pos != str.length() ; ++pos) {60 char ch = str[pos];62 if (pos < str.length() - 1 && str[pos + 1] == sep) {63 ++pos;