Home
last modified time | relevance | path

Searched refs:dot_pos (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/base/
Dversionparsing.cc22 size_t dot_pos = version_str.find('.', pos); in ParseVersionString() local
24 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()
/external/google-breakpad/src/common/windows/
Dpdb_source_line_writer.cc907 size_t dot_pos = file.find_last_of(L"."); in FindPEFile() local
908 if (dot_pos != wstring::npos) { in FindPEFile()
909 file.replace(dot_pos + 1, wstring::npos, extensions[i]); in FindPEFile()
/external/protobuf/src/google/protobuf/
Ddescriptor.cc1591 string::size_type dot_pos = prefix.find_last_of('.'); in IsSubSymbolOfBuiltType() local
1592 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() local
3420 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() local
3603 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 …]