Searched refs:dot_pos (Results 1 – 3 of 3) sorted by relevance
22 size_t dot_pos = version_str.find('.', pos); in ParseVersionString() local24 if (dot_pos == std::string::npos) { in ParseVersionString()28 n = dot_pos - pos; in ParseVersionString()35 if (dot_pos == std::string::npos) { in ParseVersionString()40 pos = dot_pos + 1; in ParseVersionString()
907 size_t dot_pos = file.find_last_of(L"."); in FindPEFile() local908 if (dot_pos != wstring::npos) { in FindPEFile()909 file.replace(dot_pos + 1, wstring::npos, extensions[i]); in FindPEFile()
1591 string::size_type dot_pos = prefix.find_last_of('.'); in IsSubSymbolOfBuiltType() local1592 if (dot_pos == string::npos) { in IsSubSymbolOfBuiltType()1595 prefix = prefix.substr(0, dot_pos); in IsSubSymbolOfBuiltType()3419 string::size_type dot_pos = scope_to_try.find_last_of('.'); in LookupSymbolNoPlaceholder() local3420 if (dot_pos == string::npos) { in LookupSymbolNoPlaceholder()3423 scope_to_try.erase(dot_pos); in LookupSymbolNoPlaceholder()3602 string::size_type dot_pos = full_name.find_last_of('.'); in AddSymbol() local3603 if (dot_pos == string::npos) { in AddSymbol()3608 "\"" + full_name.substr(dot_pos + 1) + in AddSymbol()3610 full_name.substr(0, dot_pos) + "\"."); in AddSymbol()[all …]