Searched refs:pNewSubNode (Results 1 – 1 of 1) sorted by relevance
| /AOO42X/main/connectivity/source/parse/ |
| H A D | sqlnode.cxx | 2416 OSQLParseNode* OSQLParseNode::replaceAt(sal_uInt32 nPos, OSQLParseNode* pNewSubNode) in replaceAt() argument 2419 OSL_ENSURE(pNewSubNode != NULL, "OSQLParseNode: invalid nodes"); in replaceAt() 2420 OSL_ENSURE(pNewSubNode->getParent() == NULL, "OSQLParseNode: node already has getParent"); in replaceAt() 2422 … OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewSubNode) == m_aChildren.end(), in replaceAt() 2428 pNewSubNode->setParent( this ); in replaceAt() 2431 m_aChildren[nPos] = pNewSubNode; in replaceAt() 2436 OSQLParseNode* OSQLParseNode::replace (OSQLParseNode* pOldSubNode, OSQLParseNode* pNewSubNode ) in replace() argument 2439 OSL_ENSURE(pOldSubNode != NULL && pNewSubNode != NULL, "OSQLParseNode: invalid nodes"); in replace() 2440 OSL_ENSURE(pNewSubNode->getParent() == NULL, "OSQLParseNode: node already has getParent"); in replace() 2443 … OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewSubNode) == m_aChildren.end(), in replace() [all …]
|