Home | History | Annotate | Download | only in src

Lines Matching refs:pos

1211   ::std::string::size_type pos = 0;
1213 const ::std::string::size_type colon = str.find(delimiter, pos);
1215 parsed.push_back(str.substr(pos));
1218 parsed.push_back(str.substr(pos, colon - pos));
1219 pos = colon + 1;