Lines Matching refs:left
353 size_t left = pos + 1;
356 while ((pos = str.find(".", left)) != std::string::npos) {
357 val = str.substr(left, pos - left);
364 left = pos + 1;
366 val = str.substr(left);
382 size_t left = 0;
384 while ((pos = str.find(":", left)) != std::string::npos) {
386 left = pos + 1;
475 size_t left = 0;
476 while ((pos = str.find(":", left)) != std::string::npos) {
477 temp.push_back(str.substr(left, pos - left));
478 left = pos + 1;
480 temp.push_back(str.substr(left));
581 size_t left = 0;
582 while ((pos = str.find(".", left)) != std::string::npos) {
583 temp.push_back(str.substr(left, pos - left));
584 left = pos + 1;
587 if (left != str.size()) {
588 temp.push_back(str.substr(left));