MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / IsNameChar

Function IsNameChar

externals/tinyxml2/tinyxml2.h:583–588  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

581 }
582
583 inline static bool IsNameChar( unsigned char ch ) {
584 return IsNameStartChar( ch )
585 || isdigit( ch )
586 || ch == '.'
587 || ch == '-';
588 }
589
590 inline static bool IsPrefixHex( const char* p) {
591 p = SkipWhiteSpace(p, 0);

Callers 2

writeSourceFileMethod · 0.85
ParseNameMethod · 0.85

Calls 1

IsNameStartCharFunction · 0.85

Tested by

no test coverage detected