MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / StringEqual

Function StringEqual

native/thirdpart/tinyxml2/tinyxml2.h:599–607  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

597 }
598
599 inline static bool StringEqual( const char* p, const char* q, int nChar=INT_MAX ) {
600 if ( p == q ) {
601 return true;
602 }
603 TIXMLASSERT( p );
604 TIXMLASSERT( q );
605 TIXMLASSERT( nChar >= 0 );
606 return strncmp( p, q, nChar ) == 0;
607 }
608
609 inline static bool IsUTF8Continuation( const char p ) {
610 return ( p & 0x80 ) != 0;

Callers 9

ToBoolMethod · 0.85
IdentifyMethod · 0.85
ParseDeepMethod · 0.85
ToElementWithNameMethod · 0.85
ShallowEqualMethod · 0.85
FindAttributeMethod · 0.85
AttributeMethod · 0.85
FindOrCreateAttributeMethod · 0.85
DeleteAttributeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected