| 274 | } |
| 275 | |
| 276 | bool ConsumeInOutName(StringPiece* sp, StringPiece* out) { |
| 277 | return Scanner(*sp) |
| 278 | .One(Scanner::LOWERLETTER) |
| 279 | .Any(Scanner::LOWERLETTER_DIGIT_UNDERSCORE) |
| 280 | .StopCapture() |
| 281 | .AnySpace() |
| 282 | .OneLiteral(":") |
| 283 | .AnySpace() |
| 284 | .GetResult(sp, out); |
| 285 | } |
| 286 | |
| 287 | bool ConsumeInOutRefOpen(StringPiece* sp) { |
| 288 | return Scanner(*sp) |
no test coverage detected