reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
411 idx = 0; 412 while ((idx = type_str.find(keyword, idx)) != std::string::npos) { 412 while ((idx = type_str.find(keyword, idx)) != std::string::npos) { 413 if (type_str[idx + keyword_len] == ' ' || 414 type_str[idx + keyword_len] == '\t') { 415 type_str.erase(idx, keyword_len + 1); 416 idx = 0; 418 idx += keyword_len; 424 idx = type_str.find_first_not_of(" \t"); 425 if (idx > 0 && idx != std::string::npos) 425 if (idx > 0 && idx != std::string::npos) 426 type_str.erase(0, idx);