Lines Matching refs:current
982 size_t current = 0, next;
988 while (current < input_string.size() && isspace(input_string[current]))
989 ++current;
991 if (current >= input_string.size())
994 next = input_string.find_first_of(delims, current);
997 string s = input_string.substr(current);
999 result.push_back(input_string.substr(current));
1000 did_split = (current != 0);
1003 string s = input_string.substr(current, next - current);
1006 result.push_back(input_string.substr(current, next - current));
1009 current = next + 1;
1368 /// Note that the current process is aborted if this member function