Lines Matching refs:m_aChildren

384 			m_aChildren[0]->impl_parseNodeToString_throw( rString, rParam );  in impl_parseNodeToString_throw()
387 m_aChildren[0]->impl_parseNodeToString_throw( rString, rParam ); in impl_parseNodeToString_throw()
388 rString.append(m_aChildren[1]->m_aNodeValue); in impl_parseNodeToString_throw()
392 m_aChildren[0]->impl_parseNodeToString_throw( rString, rParam ); in impl_parseNodeToString_throw()
393 rString.append(m_aChildren[1]->m_aNodeValue); in impl_parseNodeToString_throw()
394 rString.append(m_aChildren[2]->m_aNodeValue); in impl_parseNodeToString_throw()
441 m_aChildren[0]->impl_parseNodeToString_throw( rString, aNewParam ); in impl_parseNodeToString_throw()
447 const OSQLParseNode * pSubTree = m_aChildren[i]; in impl_parseNodeToString_throw()
470 for (OSQLParseNodes::const_iterator i = m_aChildren.begin(); in impl_parseNodeToString_throw()
471 i != m_aChildren.end();) in impl_parseNodeToString_throw()
505 const OSQLParseNode* pCol = pSubTree->m_aChildren[pSubTree->count()-1]; in impl_parseNodeToString_throw()
521 if(i != m_aChildren.end()) in impl_parseNodeToString_throw()
537 if ((m_eNodeType == SQL_NODE_COMMALISTRULE) && (i != m_aChildren.end())) in impl_parseNodeToString_throw()
547 if ((m_eNodeType == SQL_NODE_COMMALISTRULE) && (i != m_aChildren.end())) in impl_parseNodeToString_throw()
665 ::std::for_each(m_aChildren.begin(),m_aChildren.end(), in impl_parseTableRangeNodeToString_throw()
698 if ( !m_aChildren[0]->isLeaf() ) in impl_parseLikeNodeToString_throw()
700 const OSQLParseNode* pCol = m_aChildren[0]->getChild(m_aChildren[0]->count()-1); in impl_parseLikeNodeToString_throw()
708 m_aChildren[0]->impl_parseNodeToString_throw( rString, aNewParam ); in impl_parseLikeNodeToString_throw()
710 const OSQLParseNode* pPart2 = m_aChildren[1]; in impl_parseLikeNodeToString_throw()
1631 for (OSQLParseNodes::const_iterator i = rParseNode.m_aChildren.begin(); in OSQLParseNode()
1632 i != rParseNode.m_aChildren.end(); i++) in OSQLParseNode()
1646 for (OSQLParseNodes::const_iterator i = m_aChildren.begin(); in operator =()
1647 i != m_aChildren.end(); i++) in operator =()
1650 m_aChildren.clear(); in operator =()
1652 for (OSQLParseNodes::const_iterator j = rParseNode.m_aChildren.begin(); in operator =()
1653 j != rParseNode.m_aChildren.end(); j++) in operator =()
1681 for (OSQLParseNodes::const_iterator i = m_aChildren.begin(); in ~OSQLParseNode()
1682 i != m_aChildren.end(); i++) in ~OSQLParseNode()
1684 m_aChildren.clear(); in ~OSQLParseNode()
1694 OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewNode) == m_aChildren.end(), in append()
1700 m_aChildren.push_back(pNewNode); in append()
1707 if (SQL_ISRULE(this,set_fct_spec) && SQL_ISPUNCTUATION(m_aChildren[0],"{")) in addDateValue()
1709 const OSQLParseNode* pODBCNode = m_aChildren[1]; in addDateValue()
1710 const OSQLParseNode* pODBCNodeChild = pODBCNode->m_aChildren[0]; in addDateValue()
1737 const ::rtl::OUString sTokenValue = pODBCNode->m_aChildren[1]->getTokenValue(); in addDateValue()
1782 for (OSQLParseNodes::const_iterator i = m_aChildren.begin(); in getByRule()
1783 !pRetNode && i != m_aChildren.end(); i++) in getByRule()
2270 for ( OSQLParseNodes::const_iterator i = m_aChildren.begin(); in showParseTree()
2271 i != m_aChildren.end(); in showParseTree()
2379 m_aChildren.insert(m_aChildren.begin() + nPos, pNewSubTree); in insert()
2387 OSL_ENSURE(nPos < m_aChildren.size(),"Illegal position for removeAt"); in removeAt()
2388 OSQLParseNodes::iterator aPos(m_aChildren.begin() + nPos); in removeAt()
2394 m_aChildren.erase(aPos); in removeAt()
2402 OSQLParseNodes::iterator aPos = ::std::find(m_aChildren.begin(), m_aChildren.end(), pSubTree); in remove()
2403 if (aPos != m_aChildren.end()) in remove()
2407 m_aChildren.erase(aPos); in remove()
2421 OSL_ENSURE(nPos < m_aChildren.size(), "OSQLParseNode: invalid position"); in replaceAt()
2422 … OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewSubNode) == m_aChildren.end(), in replaceAt()
2425 OSQLParseNode* pOldSubNode = m_aChildren[nPos]; in replaceAt()
2431 m_aChildren[nPos] = pNewSubNode; in replaceAt()
2441 … OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pOldSubNode) != m_aChildren.end(), in replace()
2443 … OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewSubNode) == m_aChildren.end(), in replace()
2448 ::std::replace(m_aChildren.begin(), m_aChildren.end(), pOldSubNode, pNewSubNode); in replace()