Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:sentinel

912 	const TiXmlAttribute* First()	const	{ return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }
913 TiXmlAttribute* First() { return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }
914 const TiXmlAttribute* Last() const { return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; }
915 TiXmlAttribute* Last() { return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; }
927 //*ME: Because of hidden/disabled copy-construktor in TiXmlAttribute (sentinel-element),
932 TiXmlAttribute sentinel;