Lines Matching refs:pAttr
108 for(Attribute* pAttr = m_Attributes.PopFront(); in ~Node() local
109 pAttr; in ~Node()
110 pAttr = m_Attributes.PopFront()) in ~Node()
112 delete pAttr; in ~Node()
138 Attribute* pAttr = new Attribute(name, value); in SetAttribute() local
139 if(pAttr == NULL) in SetAttribute()
143 m_Attributes.PushBack(pAttr); in SetAttribute()
162 for(Attribute* pAttr = m_Attributes.GetFront(); in PrintBeginTag() local
163 pAttr; in PrintBeginTag()
164 pAttr = m_Attributes.GetNext(pAttr)) in PrintBeginTag()
166 pAttr->Print(); in PrintBeginTag()