reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
196 pos += strspn(pos, kDelimiters); 196 pos += strspn(pos, kDelimiters); 197 if (*pos == '"' || *pos == '\'') { 197 if (*pos == '"' || *pos == '\'') { 198 char quote = *pos; 199 pos++; 200 const char *end = strchr(pos, quote); 203 ModuleName = std::string(pos, end - pos); 203 ModuleName = std::string(pos, end - pos); 204 pos = end + 1; 206 int name_length = strcspn(pos, kDelimiters); 207 ModuleName = std::string(pos, name_length); 208 pos += name_length; 214 pos += strspn(pos, kDelimiters); 214 pos += strspn(pos, kDelimiters); 215 int offset_length = strcspn(pos, kDelimiters); 216 return !StringRef(pos, offset_length).getAsInteger(0, ModuleOffset);