reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
233 std::string Tok = CStr.substr(start, wpos - start); 235 std::string Name = CStr.substr(wpos+1); 236 wpos = Name.find_first_not_of(" \t"); 237 if (wpos == std::string::npos) 241 Name = Name.substr(wpos); 263 wpos = CStr.find_first_of(" \t", start); 264 if (wpos == std::string::npos || wpos > pos) 264 if (wpos == std::string::npos || wpos > pos) 268 std::string LHSOpName = StringRef(CStr).substr(start, wpos - start); 271 wpos = CStr.find_first_not_of(" \t", pos + 1); 272 if (wpos == std::string::npos) 276 std::string RHSOpName = StringRef(CStr).substr(wpos);