Home | History | Annotate | Download | only in TableGen

Lines Matching defs:wpos

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