Home | History | Annotate | Download | only in protobuf

Lines Matching full:dot_pos

2351     string::size_type dot_pos = scope_to_try.find_last_of('.');
2352 if (dot_pos == string::npos) {
2355 scope_to_try.erase(dot_pos);
2534 string::size_type dot_pos = full_name.find_last_of('.');
2535 if (dot_pos == string::npos) {
2540 "\"" + full_name.substr(dot_pos + 1) +
2542 full_name.substr(0, dot_pos) + "\".");
2558 string::size_type dot_pos = name.find_last_of('.');
2559 if (dot_pos == string::npos) {
2564 string* parent_name = tables_->AllocateString(name.substr(0, dot_pos));
2566 ValidateSymbolName(name.substr(dot_pos + 1), name, proto);