Lines Matching refs:wpos
303 StringRef::size_type wpos = CStr.find_first_of(" \t"); in ParseConstraint() local
305 StringRef Tok = CStr.substr(start, wpos - start); in ParseConstraint()
307 StringRef Name = CStr.substr(wpos + 1); in ParseConstraint()
308 wpos = Name.find_first_not_of(" \t"); in ParseConstraint()
309 if (wpos == StringRef::npos) in ParseConstraint()
313 Name = Name.substr(wpos); in ParseConstraint()
336 wpos = CStr.find_first_of(" \t", start); in ParseConstraint()
337 if (wpos == StringRef::npos || wpos > pos) in ParseConstraint()
341 StringRef LHSOpName = CStr.substr(start, wpos - start); in ParseConstraint()
344 wpos = CStr.find_first_not_of(" \t", pos + 1); in ParseConstraint()
345 if (wpos == StringRef::npos) in ParseConstraint()
349 StringRef RHSOpName = CStr.substr(wpos); in ParseConstraint()