Home
last modified time | relevance | path

Searched refs:pRscTop (Results 1 – 2 of 2) sorted by relevance

/AOO42X/main/rsc/source/parser/
H A Drscdb.cxx188 void DestroyNode( RscTop * pRscTop, ObjNode * pObjNode ){ in DestroyNode() argument
190 DestroyNode( pRscTop, (ObjNode*)pObjNode->Left() ); in DestroyNode()
191 DestroyNode( pRscTop, (ObjNode*)pObjNode->Right() ); in DestroyNode()
194 pRscTop->Destroy( RSCINST( pRscTop, pObjNode->GetRscObj() ) ); in DestroyNode()
201 void DestroySubTrees( RscTop * pRscTop ){ in DestroySubTrees() argument
202 if( pRscTop ){ in DestroySubTrees()
203 DestroySubTrees( (RscTop*)pRscTop->Left() ); in DestroySubTrees()
205 DestroyNode( pRscTop, pRscTop->GetObjNode() ); in DestroySubTrees()
207 DestroySubTrees( (RscTop*)pRscTop->Right() ); in DestroySubTrees()
211 void DestroyTree( RscTop * pRscTop ){ in DestroyTree() argument
[all …]
/AOO42X/main/rsc/source/misc/
H A Drscdbl.cxx79 void FillListObj( ObjNode * pObjNode, RscTop * pRscTop, in FillListObj() argument
87 FillListObj( (ObjNode*)pObjNode->Left(), pRscTop, in FillListObj()
90 pSubList = InsertList( pRscTop->GetId(), in FillListObj()
93 aTmpI.pClass = pRscTop; in FillListObj()
97 FillListObj( (ObjNode*)pObjNode->Right(), pRscTop, in FillListObj()
103 void FillList( RscTop * pRscTop, REResourceList * pList, sal_uLong lFileKey ){ in FillList() argument
104 if( pRscTop ){ in FillList()
105 FillList( (RscTop*)pRscTop->Left(), pList, lFileKey ); in FillList()
107 FillListObj( pRscTop->GetObjNode(), pRscTop, pList, lFileKey ); in FillList()
109 FillList( (RscTop*)pRscTop->Right(), pList, lFileKey ); in FillList()