Lines Matching refs:SetAttribute
1209 void SetAttribute( const char* value );
1211 void SetAttribute( int value );
1213 void SetAttribute( unsigned value );
1215 void SetAttribute(int64_t value);
1217 void SetAttribute( bool value );
1219 void SetAttribute( double value );
1221 void SetAttribute( float value );
1429 void SetAttribute( const char* name, const char* value ) { in SetAttribute() function
1431 a->SetAttribute( value ); in SetAttribute()
1434 void SetAttribute( const char* name, int value ) { in SetAttribute() function
1436 a->SetAttribute( value ); in SetAttribute()
1439 void SetAttribute( const char* name, unsigned value ) { in SetAttribute() function
1441 a->SetAttribute( value ); in SetAttribute()
1445 void SetAttribute(const char* name, int64_t value) { in SetAttribute() function
1447 a->SetAttribute(value); in SetAttribute()
1451 void SetAttribute( const char* name, bool value ) { in SetAttribute() function
1453 a->SetAttribute( value ); in SetAttribute()
1456 void SetAttribute( const char* name, double value ) { in SetAttribute() function
1458 a->SetAttribute( value ); in SetAttribute()
1461 void SetAttribute( const char* name, float value ) { in SetAttribute() function
1463 a->SetAttribute( value ); in SetAttribute()