Lines Matching refs:sep
195 size_t sep = resolution.find('x'); in bppPoint() local
196 if (sep == std::string::npos) { in bppPoint()
197 sep = resolution.find('*'); in bppPoint()
199 if (sep == std::string::npos) { in bppPoint()
203 std::string w = resolution.substr(0, sep); in bppPoint()
204 std::string h = resolution.substr(sep+1); in bppPoint()
309 size_t sep = resolution.find('x'); in qpMaxPoint() local
310 if (sep == std::string::npos) { in qpMaxPoint()
311 sep = resolution.find('*'); in qpMaxPoint()
313 if (sep == std::string::npos) { in qpMaxPoint()
317 std::string w = resolution.substr(0, sep); in qpMaxPoint()
318 std::string h = resolution.substr(sep+1); in qpMaxPoint()