| 243 | void AppendToString(std::string* target) const; |
| 244 | |
| 245 | bool starts_with(StringPiece x) const { |
| 246 | return (length_ >= x.length_) && (memcmp(ptr_, x.ptr_, x.length_) == 0); |
| 247 | } |
| 248 | |
| 249 | bool ends_with(StringPiece x) const { |
| 250 | return ((length_ >= x.length_) && |
no outgoing calls
no test coverage detected