| 38 | }; |
| 39 | |
| 40 | bool isWhitespace(const char16_t* str) |
| 41 | { |
| 42 | while (*str != 0 && *str < 128 && isspace(*str)) { |
| 43 | str++; |
| 44 | } |
| 45 | return *str == 0; |
| 46 | } |
| 47 | |
| 48 | static const String16 RESOURCES_PREFIX(RESOURCES_ROOT_NAMESPACE); |
| 49 | static const String16 RESOURCES_PREFIX_AUTO_PACKAGE(RESOURCES_AUTO_PACKAGE_NAMESPACE); |
no outgoing calls
no test coverage detected