| 69 | } |
| 70 | |
| 71 | bool ConsumeEquals(StringPiece* description) { |
| 72 | if (absl::ConsumePrefix(description, "=")) { |
| 73 | while (absl::ConsumePrefix(description, |
| 74 | " ")) { // Also remove spaces after "=". |
| 75 | } |
| 76 | return true; |
| 77 | } |
| 78 | return false; |
| 79 | } |
| 80 | |
| 81 | // Split `*orig` into two pieces at the first occurrence of `split_ch`. |
| 82 | // Returns whether `split_ch` was found. Afterwards, `*before_split` |
no test coverage detected