| 392 | } |
| 393 | |
| 394 | bool IsValidBinaryClassName(const char* s) { |
| 395 | return IsValidClassName<kName, '.'>(s); |
| 396 | } |
| 397 | |
| 398 | bool IsValidJniClassName(const char* s) { |
| 399 | return IsValidClassName<kName, '/'>(s); |
nothing calls this directly
no outgoing calls
no test coverage detected