Lines Matching refs:m_aChildren

387 			m_aChildren[0]->impl_parseNodeToString_throw( rString, rParam );  in impl_parseNodeToString_throw()
390 m_aChildren[0]->impl_parseNodeToString_throw( rString, rParam ); in impl_parseNodeToString_throw()
391 rString.append(m_aChildren[1]->m_aNodeValue); in impl_parseNodeToString_throw()
395 m_aChildren[0]->impl_parseNodeToString_throw( rString, rParam ); in impl_parseNodeToString_throw()
396 rString.append(m_aChildren[1]->m_aNodeValue); in impl_parseNodeToString_throw()
397 rString.append(m_aChildren[2]->m_aNodeValue); in impl_parseNodeToString_throw()
444 m_aChildren[0]->impl_parseNodeToString_throw( rString, aNewParam ); in impl_parseNodeToString_throw()
450 const OSQLParseNode * pSubTree = m_aChildren[i]; in impl_parseNodeToString_throw()
473 for (OSQLParseNodes::const_iterator i = m_aChildren.begin(); in impl_parseNodeToString_throw()
474 i != m_aChildren.end();) in impl_parseNodeToString_throw()
508 const OSQLParseNode* pCol = pSubTree->m_aChildren[pSubTree->count()-1]; in impl_parseNodeToString_throw()
524 if(i != m_aChildren.end()) in impl_parseNodeToString_throw()
540 if ((m_eNodeType == SQL_NODE_COMMALISTRULE) && (i != m_aChildren.end())) in impl_parseNodeToString_throw()
550 if ((m_eNodeType == SQL_NODE_COMMALISTRULE) && (i != m_aChildren.end())) in impl_parseNodeToString_throw()
668 ::std::for_each(m_aChildren.begin(),m_aChildren.end(), in impl_parseTableRangeNodeToString_throw()
701 if ( !m_aChildren[0]->isLeaf() ) in impl_parseLikeNodeToString_throw()
703 const OSQLParseNode* pCol = m_aChildren[0]->getChild(m_aChildren[0]->count()-1); in impl_parseLikeNodeToString_throw()
711 m_aChildren[0]->impl_parseNodeToString_throw( rString, aNewParam ); in impl_parseLikeNodeToString_throw()
713 const OSQLParseNode* pPart2 = m_aChildren[1]; in impl_parseLikeNodeToString_throw()
1634 for (OSQLParseNodes::const_iterator i = rParseNode.m_aChildren.begin(); in OSQLParseNode()
1635 i != rParseNode.m_aChildren.end(); i++) in OSQLParseNode()
1649 for (OSQLParseNodes::const_iterator i = m_aChildren.begin(); in operator =()
1650 i != m_aChildren.end(); i++) in operator =()
1653 m_aChildren.clear(); in operator =()
1655 for (OSQLParseNodes::const_iterator j = rParseNode.m_aChildren.begin(); in operator =()
1656 j != rParseNode.m_aChildren.end(); j++) in operator =()
1684 for (OSQLParseNodes::const_iterator i = m_aChildren.begin(); in ~OSQLParseNode()
1685 i != m_aChildren.end(); i++) in ~OSQLParseNode()
1687 m_aChildren.clear(); in ~OSQLParseNode()
1697 OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewNode) == m_aChildren.end(), in append()
1703 m_aChildren.push_back(pNewNode); in append()
1710 if (SQL_ISRULE(this,set_fct_spec) && SQL_ISPUNCTUATION(m_aChildren[0],"{")) in addDateValue()
1712 const OSQLParseNode* pODBCNode = m_aChildren[1]; in addDateValue()
1713 const OSQLParseNode* pODBCNodeChild = pODBCNode->m_aChildren[0]; in addDateValue()
1740 const ::rtl::OUString sTokenValue = pODBCNode->m_aChildren[1]->getTokenValue(); in addDateValue()
1785 for (OSQLParseNodes::const_iterator i = m_aChildren.begin(); in getByRule()
1786 !pRetNode && i != m_aChildren.end(); i++) in getByRule()
2273 for ( OSQLParseNodes::const_iterator i = m_aChildren.begin(); in showParseTree()
2274 i != m_aChildren.end(); in showParseTree()
2382 m_aChildren.insert(m_aChildren.begin() + nPos, pNewSubTree); in insert()
2390 OSL_ENSURE(nPos < m_aChildren.size(),"Illegal position for removeAt"); in removeAt()
2391 OSQLParseNodes::iterator aPos(m_aChildren.begin() + nPos); in removeAt()
2397 m_aChildren.erase(aPos); in removeAt()
2405 OSQLParseNodes::iterator aPos = ::std::find(m_aChildren.begin(), m_aChildren.end(), pSubTree); in remove()
2406 if (aPos != m_aChildren.end()) in remove()
2410 m_aChildren.erase(aPos); in remove()
2424 OSL_ENSURE(nPos < m_aChildren.size(), "OSQLParseNode: invalid position"); in replaceAt()
2425 … OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewSubNode) == m_aChildren.end(), in replaceAt()
2428 OSQLParseNode* pOldSubNode = m_aChildren[nPos]; in replaceAt()
2434 m_aChildren[nPos] = pNewSubNode; in replaceAt()
2444 … OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pOldSubNode) != m_aChildren.end(), in replace()
2446 … OSL_ENSURE(::std::find(m_aChildren.begin(), m_aChildren.end(), pNewSubNode) == m_aChildren.end(), in replace()
2451 ::std::replace(m_aChildren.begin(), m_aChildren.end(), pOldSubNode, pNewSubNode); in replace()