Lines Matching refs:wpos
206 std::string::size_type wpos = CStr.find_first_of(" \t"); in ParseConstraint() local
208 std::string Tok = CStr.substr(start, wpos - start); in ParseConstraint()
210 std::string Name = CStr.substr(wpos+1); in ParseConstraint()
211 wpos = Name.find_first_not_of(" \t"); in ParseConstraint()
212 if (wpos == std::string::npos) in ParseConstraint()
214 Name = Name.substr(wpos); in ParseConstraint()
232 wpos = Name.find_first_of(" \t"); in ParseConstraint()
233 if (wpos == std::string::npos) in ParseConstraint()
235 std::string DestOpName = Name.substr(0, wpos); in ParseConstraint()
239 wpos = Name.find_first_not_of(" \t"); in ParseConstraint()
240 if (wpos == std::string::npos) in ParseConstraint()
243 std::string SrcOpName = Name.substr(wpos); in ParseConstraint()