Home
last modified time | relevance | path

Searched refs:pLiteral (Results 1 – 3 of 3) sorted by relevance

/AOO41X/main/connectivity/inc/connectivity/
H A Dsqlparse.hxx174 OSQLParseNode* buildDate(sal_Int32 _nType,OSQLParseNode*& pLiteral);
175 bool extractDate(OSQLParseNode* pLiteral,double& _rfValue);
176 void killThousandSeparator(OSQLParseNode* pLiteral);
177 OSQLParseNode* convertNode(sal_Int32 nType,OSQLParseNode*& pLiteral);
179 OSQLParseNode* buildNode_STR_NUM(OSQLParseNode*& pLiteral);
241 void reduceLiteral(OSQLParseNode*& pLiteral, sal_Bool bAppendBlank);
243 …sal_Int16 buildNode(OSQLParseNode*& pAppend,OSQLParseNode* pCompare,OSQLParseNode* pLiteral,OSQLPa…
245 sal_Int16 buildComparsionRule(OSQLParseNode*& pAppend,OSQLParseNode* pLiteral);
247 …sal_Int16 buildPredicateRule(OSQLParseNode*& pAppend,OSQLParseNode* pLiteral,OSQLParseNode*& pComp…
249 …sal_Int16 buildLikeRule(OSQLParseNode*& pAppend,OSQLParseNode*& pLiteral,const OSQLParseNode* pEsc…
[all …]
/AOO41X/main/connectivity/source/parse/
H A Dsqlnode.cxx778 void OSQLParser::killThousandSeparator(OSQLParseNode* pLiteral) in killThousandSeparator() argument
780 if ( pLiteral ) in killThousandSeparator()
784 pLiteral->m_aNodeValue = pLiteral->m_aNodeValue.replace('.', sal_Unicode()); in killThousandSeparator()
786 pLiteral->m_aNodeValue = pLiteral->m_aNodeValue.replace(',', '.'); in killThousandSeparator()
789 pLiteral->m_aNodeValue = pLiteral->m_aNodeValue.replace(',', sal_Unicode()); in killThousandSeparator()
793 OSQLParseNode* OSQLParser::convertNode(sal_Int32 nType,OSQLParseNode*& pLiteral) in convertNode() argument
795 if ( !pLiteral ) in convertNode()
798 OSQLParseNode* pReturn = pLiteral; in convertNode()
800 …if ( ( pLiteral->isRule() && !SQL_ISRULE(pLiteral,value_exp) ) || SQL_ISTOKEN(pLiteral,FALSE) || S… in convertNode()
816 switch(pLiteral->getNodeType()) in convertNode()
[all …]
H A Dsqlbison.y4699 …uildNode(OSQLParseNode*& pAppend,OSQLParseNode* pCompare,OSQLParseNode* pLiteral,OSQLParseNode* pL… in buildNode() argument
4711 pComp->append(pLiteral); in buildNode()
4721 sal_Int16 OSQLParser::buildStringNodes(OSQLParseNode*& pLiteral) in buildStringNodes() argument
4723 if(!pLiteral) in buildStringNodes()
4726 …if(SQL_ISRULE(pLiteral,set_fct_spec) || SQL_ISRULE(pLiteral,general_set_fct) || SQL_ISRULE(pLitera… in buildStringNodes()
4727 || SQL_ISRULE(pLiteral,subquery)) in buildStringNodes()
4730 …if(pLiteral->getNodeType() == SQL_NODE_INTNUM || pLiteral->getNodeType() == SQL_NODE_APPROXNUM || in buildStringNodes()
4732 OSQLParseNode* pParent = pLiteral->getParent(); in buildStringNodes()
4734 OSQLParseNode* pNewNode = new OSQLInternalNode(pLiteral->getTokenValue(), SQL_NODE_STRING); in buildStringNodes()
4735 pParent->replace(pLiteral, pNewNode); in buildStringNodes()
[all …]