Lines Matching refs:line
65 std::string line = buf;
66 if (line.find("]{ name:") != std::string::npos) {
67 size_t pos = line.find("]{ name:");
68 size_t pos2 = line.find_last_of("}");
69 if (line.find(",") != std::string::npos) {
70 size_t pos1 = line.find(",");
71 nameStr = line.substr(pos + paramTen, pos1 - pos - paramEleven);
73 nameStr = line.substr(pos + paramTen, pos2 - pos - paramTwelve);
92 std::string line = buf;
93 if (line.find("---") != std::string::npos || line.length() <= 1 ||
94 line.find("WindowName") != std::string::npos) {
98 SPUtils::StrSplit(line, " ", params);