| 526 | return const_cast<char*>( SkipWhiteSpace( const_cast<const char*>(p) ) ); |
| 527 | } |
| 528 | static bool IsWhiteSpace( char p ) { |
| 529 | return !IsUTF8Continuation(p) && isspace( static_cast<unsigned char>(p) ); |
| 530 | } |
| 531 | |
| 532 | inline static bool IsNameStartChar( unsigned char ch ) { |
| 533 | return ( ( ch < 128 ) ? isalpha( ch ) : 1 ) |
nothing calls this directly
no outgoing calls
no test coverage detected