• Home
  • Raw
  • Download

Lines Matching refs:XMLAttribute

1346 const char* XMLAttribute::Name() const  in Name()
1351 const char* XMLAttribute::Value() const in Value()
1356 char* XMLAttribute::ParseDeep( char* p, bool processEntities, int* curLineNumPtr ) in ParseDeep()
1384 void XMLAttribute::SetName( const char* n ) in SetName()
1390 XMLError XMLAttribute::QueryIntValue( int* value ) const in QueryIntValue()
1399 XMLError XMLAttribute::QueryUnsignedValue( unsigned int* value ) const in QueryUnsignedValue()
1408 XMLError XMLAttribute::QueryInt64Value(int64_t* value) const in QueryInt64Value()
1417 XMLError XMLAttribute::QueryBoolValue( bool* value ) const in QueryBoolValue()
1426 XMLError XMLAttribute::QueryFloatValue( float* value ) const in QueryFloatValue()
1435 XMLError XMLAttribute::QueryDoubleValue( double* value ) const in QueryDoubleValue()
1444 void XMLAttribute::SetAttribute( const char* v ) in SetAttribute()
1450 void XMLAttribute::SetAttribute( int v ) in SetAttribute()
1458 void XMLAttribute::SetAttribute( unsigned v ) in SetAttribute()
1466 void XMLAttribute::SetAttribute(int64_t v) in SetAttribute()
1475 void XMLAttribute::SetAttribute( bool v ) in SetAttribute()
1482 void XMLAttribute::SetAttribute( double v ) in SetAttribute()
1489 void XMLAttribute::SetAttribute( float v ) in SetAttribute()
1508 XMLAttribute* next = _rootAttribute->_next; in ~XMLElement()
1515 const XMLAttribute* XMLElement::FindAttribute( const char* name ) const in FindAttribute()
1517 for( XMLAttribute* a = _rootAttribute; a; a = a->_next ) { in FindAttribute()
1528 const XMLAttribute* a = FindAttribute( name ); in Attribute()
1768 XMLAttribute* XMLElement::FindOrCreateAttribute( const char* name ) in FindOrCreateAttribute()
1770 XMLAttribute* last = 0; in FindOrCreateAttribute()
1771 XMLAttribute* attrib = 0; in FindOrCreateAttribute()
1798 XMLAttribute* prev = 0; in DeleteAttribute()
1799 for( XMLAttribute* a=_rootAttribute; a; a=a->_next ) { in DeleteAttribute()
1817 XMLAttribute* prevAttribute = 0; in ParseAttributes()
1829 XMLAttribute* attrib = CreateAttribute(); in ParseAttributes()
1874 void XMLElement::DeleteAttribute( XMLAttribute* attribute ) in DeleteAttribute()
1880 attribute->~XMLAttribute(); in DeleteAttribute()
1884 XMLAttribute* XMLElement::CreateAttribute() in CreateAttribute()
1886 TIXMLASSERT( sizeof( XMLAttribute ) == _document->_attributePool.ItemSize() ); in CreateAttribute()
1887 XMLAttribute* attrib = new (_document->_attributePool.Alloc() ) XMLAttribute(); in CreateAttribute()
1933 for( const XMLAttribute* a=FirstAttribute(); a; a=a->Next() ) { in ShallowClone()
1946 const XMLAttribute* a=FirstAttribute(); in ShallowEqual()
1947 const XMLAttribute* b=other->FirstAttribute(); in ShallowEqual()
2788 bool XMLPrinter::VisitEnter( const XMLElement& element, const XMLAttribute* attribute ) in VisitEnter()