Home
last modified time | relevance | path

Searched refs:aSubNodes (Results 1 – 4 of 4) sorted by relevance

/AOO42X/main/starmath/source/
H A Dmathmlimport.cxx1624 SmNodeArray aSubNodes; in GenericEndElement() local
1625 aSubNodes.resize(1 + SUBSUP_NUM_ENTRIES); in GenericEndElement()
1626 for (sal_uLong i = 1; i < aSubNodes.size(); i++) in GenericEndElement()
1627 aSubNodes[i] = NULL; in GenericEndElement()
1629 aSubNodes[eSubSup+1] = rNodeStack.Pop(); in GenericEndElement()
1630 aSubNodes[0] = rNodeStack.Pop(); in GenericEndElement()
1631 pNode->SetSubNodes(aSubNodes); in GenericEndElement()
1686 SmNodeArray aSubNodes; in GenericEndElement() local
1687 aSubNodes.resize(1 + SUBSUP_NUM_ENTRIES); in GenericEndElement()
1688 for (sal_uLong i = 1; i < aSubNodes.size(); i++) in GenericEndElement()
[all …]
H A Dnode.cxx585 for (i = 0; i < aSubNodes.size(); i++) in SmStructureNode()
586 delete aSubNodes[i]; in SmStructureNode()
587 aSubNodes.resize(0); in SmStructureNode()
589 sal_uLong nSize = rNode.aSubNodes.size(); in SmStructureNode()
590 aSubNodes.resize( nSize ); in SmStructureNode()
593 SmNode *pNode = rNode.aSubNodes[i]; in SmStructureNode()
594 aSubNodes[i] = pNode ? new SmNode( *pNode ) : 0; in SmStructureNode()
614 for (i = 0; i < aSubNodes.size(); i++) in operator =()
615 delete aSubNodes[i]; in operator =()
616 aSubNodes.resize(0); in operator =()
[all …]
H A Dparse.cxx1301 SmNodeArray aSubNodes; in SubSup() local
1302 aSubNodes.resize(1 + SUBSUP_NUM_ENTRIES); in SubSup()
1303 aSubNodes[0] = m_aNodeStack.Pop(); in SubSup()
1304 for (sal_uInt16 i = 1; i < aSubNodes.size(); i++) in SubSup()
1305 aSubNodes[i] = NULL; in SubSup()
1341 if (aSubNodes[nIndex] != NULL) in SubSup()
1343 aSubNodes[nIndex] = m_aNodeStack.Pop(); in SubSup()
1346 pNode->SetSubNodes(aSubNodes); in SubSup()
/AOO42X/main/starmath/inc/
H A Dnode.hxx191 SmNodeArray aSubNodes; member in SmStructureNode
205 void SetNumSubNodes(sal_uInt16 nSize) { aSubNodes.resize(nSize); } in SetNumSubNodes()