Home | History | Annotate | Download | only in TableGen

Lines Matching refs:wpos

199   std::string::size_type wpos = CStr.find_first_of(" \t");
201 std::string Tok = CStr.substr(start, wpos - start);
203 std::string Name = CStr.substr(wpos+1);
204 wpos = Name.find_first_not_of(" \t");
205 if (wpos == std::string::npos)
207 Name = Name.substr(wpos);
225 wpos = Name.find_first_of(" \t");
226 if (wpos == std::string::npos)
228 std::string DestOpName = Name.substr(0, wpos);
232 wpos = Name.find_first_not_of(" \t");
233 if (wpos == std::string::npos)
236 std::string SrcOpName = Name.substr(wpos);