Lines Matching refs:wpos
203 std::string::size_type wpos = CStr.find_first_of(" \t"); in ParseConstraint() local
205 std::string Tok = CStr.substr(start, wpos - start); in ParseConstraint()
207 std::string Name = CStr.substr(wpos+1); in ParseConstraint()
208 wpos = Name.find_first_not_of(" \t"); in ParseConstraint()
209 if (wpos == std::string::npos) in ParseConstraint()
211 Name = Name.substr(wpos); in ParseConstraint()
229 wpos = Name.find_first_of(" \t"); in ParseConstraint()
230 if (wpos == std::string::npos) in ParseConstraint()
232 std::string DestOpName = Name.substr(0, wpos); in ParseConstraint()
236 wpos = Name.find_first_not_of(" \t"); in ParseConstraint()
237 if (wpos == std::string::npos) in ParseConstraint()
240 std::string SrcOpName = Name.substr(wpos); in ParseConstraint()