| 228 | } |
| 229 | |
| 230 | bool Url::ParseScheme(const String& scheme) |
| 231 | { |
| 232 | m_Scheme = scheme; |
| 233 | |
| 234 | if (scheme.FindFirstOf(ALPHA) != 0) |
| 235 | return false; |
| 236 | |
| 237 | return (ValidateToken(scheme, ACSCHEME)); |
| 238 | } |
| 239 | |
| 240 | bool Url::ParseAuthority(const String& authority) |
| 241 | { |
nothing calls this directly
no test coverage detected