Lines Matching refs:eType

320                             XclFormulaType eType, const ScTokenArray& rScTokArr,
330 bool Is3DRefOnly( XclFormulaType eType ) const;
334 const XclExpCompConfig* GetConfigForType( XclFormulaType eType ) const;
337 void Init( XclFormulaType eType );
338 void Init( XclFormulaType eType, const ScTokenArray& rScTokArr,
510 XclTokenArrayRef XclExpFmlaCompImpl::CreateFormula( XclFormulaType eType, in CreateFormula() argument
514 Init( eType, rScTokArr, pScBasePos, pRefLog ); in CreateFormula()
575 bool XclExpFmlaCompImpl::Is3DRefOnly( XclFormulaType eType ) const in Is3DRefOnly()
577 const XclExpCompConfig* pCfg = GetConfigForType( eType ); in Is3DRefOnly()
583 const XclExpCompConfig* XclExpFmlaCompImpl::GetConfigForType( XclFormulaType eType ) const in GetConfigForType()
585 XclExpCompConfigMap::const_iterator aIt = maCfgMap.find( eType ); in GetConfigForType()
590 void XclExpFmlaCompImpl::Init( XclFormulaType eType ) in Init() argument
596 mxData.reset( new XclExpCompData( GetConfigForType( eType ) ) ); in Init()
599 void XclExpFmlaCompImpl::Init( XclFormulaType eType, const ScTokenArray& rScTokArr, in Init() argument
603 Init( eType ); in Init()
2597 XclFormulaType eType, const ScTokenArray& rScTokArr, in CreateFormula() argument
2600 return mxImpl->CreateFormula( eType, rScTokArr, pScBasePos, pRefLog ); in CreateFormula()
2603 XclTokenArrayRef XclExpFormulaCompiler::CreateFormula( XclFormulaType eType, const ScAddress& rScPo… in CreateFormula() argument
2606 lclPutCellToTokenArray( aScTokArr, rScPos, GetCurrScTab(), mxImpl->Is3DRefOnly( eType ) ); in CreateFormula()
2607 return mxImpl->CreateFormula( eType, aScTokArr ); in CreateFormula()
2610 XclTokenArrayRef XclExpFormulaCompiler::CreateFormula( XclFormulaType eType, const ScRange& rScRang… in CreateFormula() argument
2613 lclPutRangeToTokenArray( aScTokArr, rScRange, GetCurrScTab(), mxImpl->Is3DRefOnly( eType ) ); in CreateFormula()
2614 return mxImpl->CreateFormula( eType, aScTokArr ); in CreateFormula()
2617 XclTokenArrayRef XclExpFormulaCompiler::CreateFormula( XclFormulaType eType, const ScRangeList& rSc… in CreateFormula() argument
2625 bool b3DRefOnly = mxImpl->Is3DRefOnly( eType ); in CreateFormula()
2632 return mxImpl->CreateFormula( eType, aScTokArr ); in CreateFormula()