Home
last modified time | relevance | path

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

/AOO41X/main/starmath/source/
H A Dmathmlimport.cxx1618 SmNodeArray aSubNodes; in GenericEndElement() local
1619 aSubNodes.resize(1 + SUBSUP_NUM_ENTRIES); in GenericEndElement()
1620 for (sal_uLong i = 1; i < aSubNodes.size(); i++) in GenericEndElement()
1621 aSubNodes[i] = NULL; in GenericEndElement()
1623 aSubNodes[eSubSup+1] = rNodeStack.Pop(); in GenericEndElement()
1624 aSubNodes[0] = rNodeStack.Pop(); in GenericEndElement()
1625 pNode->SetSubNodes(aSubNodes); in GenericEndElement()
1680 SmNodeArray aSubNodes; in GenericEndElement() local
1681 aSubNodes.resize(1 + SUBSUP_NUM_ENTRIES); in GenericEndElement()
1682 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.cxx1291 SmNodeArray aSubNodes; in SubSup() local
1292 aSubNodes.resize(1 + SUBSUP_NUM_ENTRIES); in SubSup()
1293 aSubNodes[0] = m_aNodeStack.Pop(); in SubSup()
1294 for (sal_uInt16 i = 1; i < aSubNodes.size(); i++) in SubSup()
1295 aSubNodes[i] = NULL; in SubSup()
1331 if (aSubNodes[nIndex] != NULL) in SubSup()
1333 aSubNodes[nIndex] = m_aNodeStack.Pop(); in SubSup()
1336 pNode->SetSubNodes(aSubNodes); in SubSup()
/AOO41X/main/starmath/inc/
H A Dnode.hxx191 SmNodeArray aSubNodes; member in SmStructureNode
205 void SetNumSubNodes(sal_uInt16 nSize) { aSubNodes.resize(nSize); } in SetNumSubNodes()