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

Function QueryBoolAttribute

native/thirdpart/tinyxml2/tinyxml2.h:1379–1385  ·  view source on GitHub ↗

See QueryIntAttribute()

Source from the content-addressed store, hash-verified

1377
1378 /// See QueryIntAttribute()
1379 XMLError QueryBoolAttribute( const char* name, bool* value ) const {
1380 const XMLAttribute* a = FindAttribute( name );
1381 if ( !a ) {
1382 return XML_NO_ATTRIBUTE;
1383 }
1384 return a->QueryBoolValue( value );
1385 }
1386 /// See QueryIntAttribute()
1387 XMLError QueryDoubleAttribute( const char* name, double* value ) const {
1388 const XMLAttribute* a = FindAttribute( name );

Callers 2

QueryAttributeFunction · 0.85
BoolAttributeMethod · 0.85

Calls 1

QueryBoolValueMethod · 0.80

Tested by

no test coverage detected