Home | History | Annotate | Download | only in src

Lines Matching refs:pos

1096   ::std::string::size_type pos = 0;
1098 const ::std::string::size_type colon = str.find(delimiter, pos);
1100 parsed.push_back(str.substr(pos));
1103 parsed.push_back(str.substr(pos, colon - pos));
1104 pos = colon + 1;