Lines Matching refs:ObjNode
77 sal_Bool RefNode::PutObjNode( ObjNode * pPutObject ){ in PutObjNode()
99 ObjNode * RefNode :: GetObjNode( const RscId & rRscId ){ in GetObjNode()
119 ObjNode::ObjNode( const RscId & rId, CLASS_DATA pData, sal_uLong lKey ){ in ObjNode() function in ObjNode
134 ObjNode * ObjNode::DelObjNode( RscTop * pClass, sal_uLong nFileKey ){ in DelObjNode()
135 ObjNode * pRetNode = this; in DelObjNode()
138 pRight = ((ObjNode *)Right())->DelObjNode( pClass, nFileKey ); in DelObjNode()
140 pLeft = ((ObjNode *)Left())->DelObjNode( pClass, nFileKey ); in DelObjNode()
147 pRetNode = (ObjNode *)Right(); in DelObjNode()
150 pRetNode->Insert( (ObjNode *)Left() ); in DelObjNode()
153 pRetNode = (ObjNode *)Left(); in DelObjNode()
168 sal_uInt32 ObjNode::GetId() const in GetId()
182 sal_Bool ObjNode::IsConsistent( RscInconsList * pList ) in IsConsistent()
196 if( !((ObjNode *)Left())->IsConsistent( pList ) ) in IsConsistent()
198 if( ((ObjNode *)Left())->aRscId >= aRscId ) in IsConsistent()
203 new RscInconsistent( ((ObjNode *)Left())->GetRscId(), in IsConsistent()
209 if( ((ObjNode *)Right())->aRscId <= aRscId ) in IsConsistent()
215 ((ObjNode *)Right())->GetRscId() ) ); in IsConsistent()
217 if( !((ObjNode *)Right())->IsConsistent( pList ) ) in IsConsistent()