| 90 | } |
| 91 | |
| 92 | absl::StatusOr<Value> Replace2(const StringValue& string, |
| 93 | const StringValue& old_sub, |
| 94 | const StringValue& new_sub, int64_t limit, |
| 95 | const google::protobuf::DescriptorPool* absl_nonnull, |
| 96 | google::protobuf::MessageFactory* absl_nonnull, |
| 97 | google::protobuf::Arena* absl_nonnull arena) { |
| 98 | return string.Replace(old_sub, new_sub, limit, arena); |
| 99 | } |
| 100 | |
| 101 | absl::StatusOr<Value> Replace1( |
| 102 | const StringValue& string, const StringValue& old_sub, |