Lines Matching defs:spos
96 std::string::size_type spos = res.find(kname);
97 if (spos != std::string::npos) {
98 spos += kname.size();
99 std::string::size_type tpos = res.find("\"", spos);
101 name = res.substr(spos, tpos - spos);
105 std::string::size_type spos = res.find(kevent);
106 if (spos != std::string::npos) {
111 std::string::size_type tpos = spos + kevent.size();
115 auto [_, ret] = nodes.emplace(name, res.substr(spos, tpos - spos));