Home
last modified time | relevance | path

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

/trunk/main/dbaccess/source/ui/querydesign/
H A Dquerycontroller.cxx151 if (!_pNode->isToken()) 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()
186 rString += _pNode->getTokenValue(); // haenge Nodevalue an in insertParseTree()
193 rString += _pNode->getTokenValue(); in insertParseTree()
200 rString += _pNode->getTokenValue(); in insertParseTree()
205 rString += _pNode->getTokenValue(); in insertParseTree()
210 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()
/trunk/main/connectivity/source/parse/
H A Dsqliterator.cxx1158 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()
1201 const sal_uInt32 nCount = _pNode->count(); in traverseParameters()
1204 const OSQLParseNode* pChild = _pNode->getChild(i); in traverseParameters()
2167 if ( SQL_ISRULE(_pNode,length_exp) ) in getFunctionReturnType()
2172 …else if ( SQL_ISRULE(_pNode,num_value_exp) || SQL_ISRULE(_pNode,term) || SQL_ISRULE(_pNode,factor)… in getFunctionReturnType()
2182 …if ( SQL_ISRULE(_pNode,general_set_fct) && (SQL_ISTOKEN(_pNode->getChild(0),MIN) || SQL_ISTOKEN(_p… in getFunctionReturnType()
[all …]
H A Dsqlnode.cxx1470 void OSQLParseNode::substituteParameterNames(OSQLParseNode* _pNode) in substituteParameterNames() argument
1473 sal_Int32 nCount = _pNode->count(); in substituteParameterNames()
1476 OSQLParseNode* pChildNode = _pNode->getChild(i); in substituteParameterNames()
2785 void OSQLParseNodesContainer::push_back(OSQLParseNode* _pNode) in push_back() argument
2788 m_aNodes.push_back(_pNode); in push_back()
2791 void OSQLParseNodesContainer::erase(OSQLParseNode* _pNode) in erase() argument
2796 …d::vector< OSQLParseNode* >::iterator aFind = ::std::find(m_aNodes.begin(), m_aNodes.end(),_pNode); in erase()
/trunk/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 ()()
/trunk/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);
/trunk/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()
/trunk/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()
/trunk/main/connectivity/inc/connectivity/
H A Dsqlparse.hxx123 void push_back(OSQLParseNode* _pNode);
124 void erase(OSQLParseNode* _pNode);
H A Dsqliterator.hxx280 sal_Int32 getFunctionReturnType(const OSQLParseNode* _pNode );
H A Dsqlnode.hxx417 static void substituteParameterNames(OSQLParseNode* _pNode);
/trunk/main/svx/source/inc/
H A Ddatanavi.hxx364 Window* pParent, ItemNode* _pNode, const XFormsUIHelper1_ref& _rUIHelper );
513 AddSubmissionDialog( Window* pParent, ItemNode* _pNode,
/trunk/main/connectivity/source/inc/ado/
H A DAPreparedStatement.hxx53 void replaceParameterNodeName( OSQLParseNode* _pNode,
/trunk/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()
/trunk/main/connectivity/source/inc/file/
H A DFPreparedStatement.hxx70 void describeColumn(OSQLParseNode* _pParameter,OSQLParseNode* _pNode,const OSQLTable& _xTable);

Completed in 126 milliseconds