Lines Matching refs:wpos
200 std::string::size_type wpos = CStr.find_first_of(" \t"); in ParseConstraint() local
202 std::string Tok = CStr.substr(start, wpos - start); in ParseConstraint()
204 std::string Name = CStr.substr(wpos+1); in ParseConstraint()
205 wpos = Name.find_first_not_of(" \t"); in ParseConstraint()
206 if (wpos == std::string::npos) in ParseConstraint()
208 Name = Name.substr(wpos); in ParseConstraint()
226 wpos = Name.find_first_of(" \t"); in ParseConstraint()
227 if (wpos == std::string::npos) in ParseConstraint()
229 std::string DestOpName = Name.substr(0, wpos); in ParseConstraint()
233 wpos = Name.find_first_not_of(" \t"); in ParseConstraint()
234 if (wpos == std::string::npos) in ParseConstraint()
238 Ops.ParseOperandName(Name.substr(wpos), false); in ParseConstraint()