reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
231 std::string::size_type wpos = CStr.find_first_of(" \t"); 232 std::string::size_type start = CStr.find_first_not_of(" \t"); 233 std::string Tok = CStr.substr(start, wpos - start); 235 std::string Name = CStr.substr(wpos+1); 240 Rec->getName() + "': '" + CStr + "'"); 255 std::string::size_type pos = CStr.find_first_of('='); 258 Rec->getLoc(), "Unrecognized constraint '" + CStr + 260 start = CStr.find_first_not_of(" \t"); 263 wpos = CStr.find_first_of(" \t", start); 267 Rec->getName() + "': '" + CStr + "'"); 268 std::string LHSOpName = StringRef(CStr).substr(start, wpos - start); 271 wpos = CStr.find_first_not_of(" \t", pos + 1); 274 Rec->getLoc(), "Illegal format for tied-to constraint: '" + CStr + "'"); 276 std::string RHSOpName = StringRef(CStr).substr(wpos);