Home
last modified time | relevance | path

Searched refs:_pNode (Results 1 – 16 of 16) sorted by relevance

/AOO41X/main/dbaccess/source/ui/querydesign/
H A Dquerycontroller.cxx148 …void insertParseTree(SvTreeListBox* _pBox,::connectivity::OSQLParseNode* _pNode,SvLBoxEntry* _pPar… in insertParseTree() argument
151 if (!_pNode->isToken()) in insertParseTree()
155 rString += ::rtl::OUString::valueOf( (sal_Int32)_pNode->getRuleID()); in insertParseTree()
157 rString += OSQLParser::RuleIDToStr(_pNode->getRuleID()); in insertParseTree()
164 sal_uInt32 nStop = _pNode->count(); in insertParseTree()
167 insertParseTree(_pBox,_pNode->getChild(i),_pParent); in insertParseTree()
174 switch (_pNode->getNodeType()) in insertParseTree()
180 ::rtl::OString sT = OSQLParser::TokenIDToStr(_pNode->getTokenID()); in insertParseTree()
186 rString += _pNode->getTokenValue(); // haenge Nodevalue an in insertParseTree()
193 rString += _pNode->getTokenValue(); in insertParseTree()
[all …]
H A DQueryDesignView.cxx1907 const ::connectivity::OSQLParseNode* _pNode ) in checkJoinConditions()
1911 if (SQL_ISRULE(_pNode,qualified_join)) in checkJoinConditions()
1912 pJoinNode = _pNode; in checkJoinConditions()
1913 else if (SQL_ISRULE(_pNode,table_ref) in checkJoinConditions()
1914 && _pNode->count() == 3 in checkJoinConditions()
1915 && SQL_ISPUNCTUATION(_pNode->getChild(0),"(") in checkJoinConditions()
1916 && SQL_ISPUNCTUATION(_pNode->getChild(2),")") ) // '(' joined_table ')' in checkJoinConditions()
1917 pJoinNode = _pNode->getChild(1); in checkJoinConditions()
1918 …else if (! ( SQL_ISRULE(_pNode, table_ref) && _pNode->count() == 2) ) // table_node table_primary_… in checkJoinConditions()
/AOO41X/main/connectivity/source/parse/
H A Dsqliterator.cxx1155 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
[all …]
H A Dsqlnode.cxx1473 void OSQLParseNode::substituteParameterNames(OSQLParseNode* _pNode) in substituteParameterNames() argument
1476 sal_Int32 nCount = _pNode->count(); in substituteParameterNames()
1479 OSQLParseNode* pChildNode = _pNode->getChild(i); in substituteParameterNames()
2788 void OSQLParseNodesContainer::push_back(OSQLParseNode* _pNode) in push_back() argument
2791 m_aNodes.push_back(_pNode); in push_back()
2794 void OSQLParseNodesContainer::erase(OSQLParseNode* _pNode) in erase() argument
2799 …d::vector< OSQLParseNode* >::iterator aFind = ::std::find(m_aNodes.begin(), m_aNodes.end(),_pNode); in erase()
/AOO41X/main/sw/inc/
H A DSwNumberTree.hxx757 SwNumberTreeNodeIsLessThan(const SwNumberTreeNode * _pNode) in SwNumberTreeNodeIsLessThan()
758 : pNode(_pNode) {} in SwNumberTreeNodeIsLessThan()
760 bool operator()(const SwNumberTreeNode * _pNode) const in operator ()()
761 { return SwNumberTreeNodeLessThan(_pNode, pNode); } in operator ()()
/AOO41X/main/connectivity/source/simpledbt/
H A Dparsenode_s.cxx45 OSimpleParseNode::OSimpleParseNode(const OSQLParseNode* _pNode, sal_Bool _bTakeOwnership) in OSimpleParseNode() argument
46 :m_pFullNode(_pNode) in OSimpleParseNode()
H A Dparsenode_s.hxx48 OSimpleParseNode(const OSQLParseNode* _pNode, sal_Bool _bTakeOwnership = sal_True);
/AOO41X/main/connectivity/source/drivers/ado/
H A DAPreparedStatement.cxx536 void OPreparedStatement::replaceParameterNodeName(OSQLParseNode* _pNode, in replaceParameterNodeName() argument
540 sal_Int32 nCount = _pNode->count(); in replaceParameterNodeName()
543 OSQLParseNode* pChildNode = _pNode->getChild(i); in replaceParameterNodeName()
/AOO41X/main/connectivity/source/drivers/file/
H A DFPreparedStatement.cxx522 void OPreparedStatement::describeColumn(OSQLParseNode* _pParameter,OSQLParseNode* _pNode,const OSQL… in describeColumn() argument
526 if(SQL_ISRULE(_pNode,column_ref)) in describeColumn()
529 m_aSQLIterator.getColumnRange(_pNode,sColumnName,sTableRange); in describeColumn()
/AOO41X/main/connectivity/inc/connectivity/
H A Dsqlparse.hxx121 void push_back(OSQLParseNode* _pNode);
122 void erase(OSQLParseNode* _pNode);
H A Dsqliterator.hxx280 sal_Int32 getFunctionReturnType(const OSQLParseNode* _pNode );
H A Dsqlnode.hxx417 static void substituteParameterNames(OSQLParseNode* _pNode);
/AOO41X/main/svx/source/inc/
H A Ddatanavi.hxx364 Window* pParent, ItemNode* _pNode, const XFormsUIHelper1_ref& _rUIHelper );
513 AddSubmissionDialog( Window* pParent, ItemNode* _pNode,
/AOO41X/main/connectivity/source/inc/ado/
H A DAPreparedStatement.hxx53 void replaceParameterNodeName( OSQLParseNode* _pNode,
/AOO41X/main/connectivity/source/inc/file/
H A DFPreparedStatement.hxx70 … void describeColumn(OSQLParseNode* _pParameter,OSQLParseNode* _pNode,const OSQLTable& _xTable);
/AOO41X/main/svx/source/form/
H A Ddatanavi.cxx2501 Window* pParent, ItemNode* _pNode, in AddDataItemDialog() argument
2531 m_pItemNode ( _pNode ), in AddDataItemDialog()
3394 Window* pParent, ItemNode* _pNode, in AddSubmissionDialog() argument
3419 m_pItemNode ( _pNode ), in AddSubmissionDialog()