Skips to the first non-space char in str. Returns an empty string if str contains only whitespace characters.
| 11685 | // Skips to the first non-space char in str. Returns an empty string if str |
| 11686 | // contains only whitespace characters. |
| 11687 | static const char* SkipSpaces(const char* str) { |
| 11688 | while (IsSpace(*str)) |
| 11689 | str++; |
| 11690 | return str; |
| 11691 | } |
| 11692 | |
| 11693 | static std::vector<std::string> SplitIntoTestNames(const char* src) { |
| 11694 | std::vector<std::string> name_vec; |
no test coverage detected