Lines Matching refs:endPos
71 auto endPos = match.str().find(')');
72 return std::stoi(match.str().substr(beginPos, endPos - beginPos));
91 auto endPos = match.str().find(']');
92 return match.str().substr(beginPos, endPos - beginPos);
249 auto endPos = context_[index].find_first_of(" ", beginPos);
250 return stoi(context_[index].substr(beginPos, endPos - beginPos));
257 auto endPos = context_[index].find_first_of(" ", beginPos);
258 return context_[index].substr(beginPos, endPos - beginPos);
301 auto endPos = context_[index].find(match.str());
302 std::string res = context_[index].substr(0, endPos);
307 auto tid = stoi(context_[index].substr(beginPos, endPos - beginPos));
334 auto endPos = str.find_last_not_of(" ");
336 newStr.erase(endPos + 1);
413 auto endPos = context_[index].find_first_of(" ", beginPos);
414 prio = stoi(context_[index].substr(beginPos, endPos - beginPos));
432 auto endPos = line.rfind("]");
433 if (beginPos != std::string::npos && endPos != std::string::npos) {
434 label = line.substr(beginPos + 1, endPos - beginPos - 1);
440 auto endPos = line.find_first_of("|", beginPos);
441 if (endPos != std::string::npos) {
442 label = line.substr(beginPos, endPos - beginPos);
448 auto endPos = line.rfind("]");
449 if (beginPos != std::string::npos && endPos != std::string::npos) {
450 label = line.substr(beginPos + 1, endPos - beginPos - 1);
456 auto endPos = line.find_first_of("|", beginPos);
457 if (endPos != std::string::npos) {
458 label = line.substr(beginPos, endPos - beginPos);