Searched refs:pLiteral (Results 1 – 3 of 3) sorted by relevance
| /AOO42X/main/connectivity/inc/connectivity/ |
| H A D | sqlparse.hxx | 183 OSQLParseNode* buildDate(sal_Int32 _nType,OSQLParseNode*& pLiteral); 184 bool extractDate(OSQLParseNode* pLiteral,double& _rfValue); 185 void killThousandSeparator(OSQLParseNode* pLiteral); 186 OSQLParseNode* convertNode(sal_Int32 nType,OSQLParseNode*& pLiteral); 188 OSQLParseNode* buildNode_STR_NUM(OSQLParseNode*& pLiteral); 250 void reduceLiteral(OSQLParseNode*& pLiteral, sal_Bool bAppendBlank); 252 …sal_Int16 buildNode(OSQLParseNode*& pAppend,OSQLParseNode* pCompare,OSQLParseNode* pLiteral,OSQLPa… 254 sal_Int16 buildComparsionRule(OSQLParseNode*& pAppend,OSQLParseNode* pLiteral); 256 …sal_Int16 buildPredicateRule(OSQLParseNode*& pAppend,OSQLParseNode* pLiteral,OSQLParseNode*& pComp… 258 …sal_Int16 buildLikeRule(OSQLParseNode*& pAppend,OSQLParseNode*& pLiteral,const OSQLParseNode* pEsc… [all …]
|
| /AOO42X/main/connectivity/source/parse/ |
| H A D | sqlnode.cxx | 775 void OSQLParser::killThousandSeparator(OSQLParseNode* pLiteral) in killThousandSeparator() argument 777 if ( pLiteral ) in killThousandSeparator() 781 pLiteral->m_aNodeValue = pLiteral->m_aNodeValue.replace('.', sal_Unicode()); in killThousandSeparator() 783 pLiteral->m_aNodeValue = pLiteral->m_aNodeValue.replace(',', '.'); in killThousandSeparator() 786 pLiteral->m_aNodeValue = pLiteral->m_aNodeValue.replace(',', sal_Unicode()); in killThousandSeparator() 790 OSQLParseNode* OSQLParser::convertNode(sal_Int32 nType,OSQLParseNode*& pLiteral) in convertNode() argument 792 if ( !pLiteral ) in convertNode() 795 OSQLParseNode* pReturn = pLiteral; in convertNode() 797 …if ( ( pLiteral->isRule() && !SQL_ISRULE(pLiteral,value_exp) ) || SQL_ISTOKEN(pLiteral,FALSE) || S… in convertNode() 813 switch(pLiteral->getNodeType()) in convertNode() [all …]
|
| H A D | sqlbison.y | 4699 …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 …]
|