Lines Matching refs:_pNode
1155 void OSQLParseTreeIterator::traverseParameters(const OSQLParseNode* _pNode) in traverseParameters() argument
1158 if ( _pNode == NULL ) in traverseParameters()
1162 const OSQLParseNode* pParent = _pNode->getParent(); in traverseParameters()
1168 if ( pParent->getChild(nPos) == _pNode ) in traverseParameters()
1192 lcl_generateParameterName( *pParent, *_pNode ); in traverseParameters()
1197 lcl_generateParameterName( *pParent, *_pNode ); in traverseParameters()
1200 traverseParameter( _pNode, pParent, sColumnName, sTableRange, aColumnAlias ); in traverseParameters()
1201 const sal_uInt32 nCount = _pNode->count(); in traverseParameters()
1204 const OSQLParseNode* pChild = _pNode->getChild(i); in traverseParameters()
2163 sal_Int32 OSQLParseTreeIterator::getFunctionReturnType(const OSQLParseNode* _pNode ) in getFunctionReturnType() argument
2167 if ( SQL_ISRULE(_pNode,length_exp) ) in getFunctionReturnType()
2169 …_pNode->getChild(0)->getChild(0)->parseNodeToStr(sFunctionName, m_pImpl->m_xConnection, NULL, sal_… in getFunctionReturnType()
2172 …else if ( SQL_ISRULE(_pNode,num_value_exp) || SQL_ISRULE(_pNode,term) || SQL_ISRULE(_pNode,factor)… in getFunctionReturnType()
2178 …_pNode->getChild(0)->parseNodeToStr(sFunctionName, m_pImpl->m_xConnection, NULL, sal_False, sal_Fa… in getFunctionReturnType()
2182 …if ( SQL_ISRULE(_pNode,general_set_fct) && (SQL_ISTOKEN(_pNode->getChild(0),MIN) || SQL_ISTOKEN(_p… in getFunctionReturnType()
2184 const OSQLParseNode* pValueExp = _pNode->getChild(3); in getFunctionReturnType()