Home
last modified time | relevance | path

Searched refs:nParseEnd (Results 1 – 18 of 18) sorted by relevance

/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/tool/
H A Dstringutil.cxx192 sal_Int32 nParseEnd = 0; in parseSimpleNumber() local
194 rVal = ::rtl::math::stringToDouble( aString, dsep, gsep, &eStatus, &nParseEnd); in parseSimpleNumber()
195 if (eStatus != rtl_math_ConversionStatus_Ok || nParseEnd < aString.getLength()) in parseSimpleNumber()
338 sal_Int32 nParseEnd = 0; in parseSimpleNumber() local
340 rVal = ::rtl::math::stringToDouble( aString, dsep, gsep, &eStatus, &nParseEnd); in parseSimpleNumber()
341 if (eStatus != rtl_math_ConversionStatus_Ok || nParseEnd < aString.getLength()) in parseSimpleNumber()
H A Dcompiler.cxx3062 sal_Int32 nParseEnd; in IsValue() local
3063 double fVal = rtl::math::stringToDouble( rSym, '.', 0, &eStatus, &nParseEnd); in IsValue()
3064 if (nParseEnd != rSym.getLength()) in IsValue()
3068 if (nParseEnd > 0) in IsValue()
H A Dinterpr1.cxx3432 sal_Int32 nParseEnd; in ScNumberValue() local
3433 …ble fVal = ::rtl::math::stringToDouble( aInputString, cDecimalSeparator, 0, &eStatus, &nParseEnd ); in ScNumberValue()
3434 if ( eStatus == rtl_math_ConversionStatus_Ok && nParseEnd == aInputString.getLength() ) in ScNumberValue()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/tool/
H A Dstringutil.cxx193 sal_Int32 nParseEnd = 0; in parseSimpleNumber() local
195 rVal = ::rtl::math::stringToDouble( aString, dsep, gsep, &eStatus, &nParseEnd); in parseSimpleNumber()
196 if (eStatus != rtl_math_ConversionStatus_Ok || nParseEnd < aString.getLength()) in parseSimpleNumber()
339 sal_Int32 nParseEnd = 0; in parseSimpleNumber() local
341 rVal = ::rtl::math::stringToDouble( aString, dsep, gsep, &eStatus, &nParseEnd); in parseSimpleNumber()
342 if (eStatus != rtl_math_ConversionStatus_Ok || nParseEnd < aString.getLength()) in parseSimpleNumber()
H A Dcompiler.cxx3007 sal_Int32 nParseEnd; in IsValue() local
3008 double fVal = rtl::math::stringToDouble( rSym, '.', 0, &eStatus, &nParseEnd); in IsValue()
3009 if (nParseEnd != rSym.getLength()) in IsValue()
3013 if (nParseEnd > 0) in IsValue()
H A Dinterpr1.cxx3443 sal_Int32 nParseEnd; in ScNumberValue() local
3444 …ble fVal = ::rtl::math::stringToDouble( aInputString, cDecimalSeparator, 0, &eStatus, &nParseEnd ); in ScNumberValue()
3445 if ( eStatus == rtl_math_ConversionStatus_Ok && nParseEnd == aInputString.getLength() ) in ScNumberValue()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/data/
H A Dglobal2.cxx420 sal_Int32 nParseEnd; in ConvertStringToValue() local
423 fValue = ::rtl::math::stringToDouble( rStr, 0, 0, &eStatus, &nParseEnd); in ConvertStringToValue()
425 if (eStatus == rtl_math_ConversionStatus_Ok && nParseEnd < nLen) in ConvertStringToValue()
430 const sal_Unicode* p = pStart + nParseEnd; in ConvertStringToValue()
449 nUnit[eState-1] = rStr.copy( 0, nParseEnd).toInt32(); in ConvertStringToValue()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/data/
H A Dglobal2.cxx420 sal_Int32 nParseEnd; in ConvertStringToValue() local
423 fValue = ::rtl::math::stringToDouble( rStr, 0, 0, &eStatus, &nParseEnd); in ConvertStringToValue()
425 if (eStatus == rtl_math_ConversionStatus_Ok && nParseEnd < (nLen = rStr.getLength())) in ConvertStringToValue()
430 const sal_Unicode* p = pStart + nParseEnd; in ConvertStringToValue()
449 nUnit[eState-1] = rStr.copy( 0, nParseEnd).toInt32(); in ConvertStringToValue()
/dports/editors/libreoffice/libreoffice-7.2.6.2/unotools/source/i18n/
H A Dlocaledatawrapper.cxx1435 sal_Int32 nParseEnd = 0; in stringToDouble() local
1436 …th::stringToDouble( rString, aLocaleDataItem.decimalSeparator[0], cGroupSep, &eStatus, &nParseEnd); in stringToDouble()
1437 …bool bTryAlt = (nParseEnd < rString.getLength() && !aLocaleDataItem.decimalSeparatorAlternative.is… in stringToDouble()
1438 rString[nParseEnd] == aLocaleDataItem.decimalSeparatorAlternative.toChar()); in stringToDouble()
1441 …e( rString, aLocaleDataItem.decimalSeparatorAlternative.toChar(), cGroupSep, &eStatus, &nParseEnd); in stringToDouble()
1445 *pParseEnd = nParseEnd; in stringToDouble()
/dports/editors/libreoffice/libreoffice-7.2.6.2/basic/source/sbx/
H A Dsbxscan.cxx188 sal_Int32 nParseEnd = 0; in ImpScan() local
189 … nVal = rtl::math::stringToDouble( aBufStr, cIntntlDecSep, cIntntlGrpSep, &eStatus, &nParseEnd ); in ImpScan()
190 if( eStatus != rtl_math_ConversionStatus_Ok || nParseEnd != aBufStr.getLength() ) in ImpScan()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/ui/miscdlgs/
H A Dsolveroptions.cxx369 sal_Int32 nParseEnd = 0; in GetValue() local
370 double fValue = ScGlobal::GetpLocaleData()->stringToDouble( aInput, true, &eStatus, &nParseEnd); in GetValue()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/basic/source/sbx/
H A Dsbxscan.cxx182 sal_Int32 nParseEnd = 0; in ImpScan() local
183 … nVal = rtl::math::stringToDouble( aBufStr, cIntntlDecSep, cIntntlGrpSep, &eStatus, &nParseEnd ); in ImpScan()
184 if( eStatus != rtl_math_ConversionStatus_Ok || nParseEnd != aBufStr.getLength() ) in ImpScan()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/miscdlgs/
H A Dsolveroptions.cxx406 sal_Int32 nParseEnd = 0; in GetValue() local
407 … double fValue = ScGlobal::getLocaleDataPtr()->stringToDouble( aInput, true, &eStatus, &nParseEnd); in GetValue()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/unotools/source/i18n/
H A Dlocaledatawrapper.cxx1647 sal_Int32 nParseEnd = 0; in stringToDouble() local
1648 …alue = rtl::math::stringToDouble( rString, getNumDecimalSep()[0], cGroupSep, &eStatus, &nParseEnd); in stringToDouble()
1649 bool bTryAlt = (nParseEnd < rString.getLength() && !getNumDecimalSepAlt().isEmpty() && in stringToDouble()
1650 rString[nParseEnd] == getNumDecimalSepAlt().toChar()); in stringToDouble()
1653 …l::math::stringToDouble( rString, getNumDecimalSepAlt().toChar(), cGroupSep, &eStatus, &nParseEnd); in stringToDouble()
1657 *pParseEnd = nParseEnd; in stringToDouble()
/dports/editors/libreoffice/libreoffice-7.2.6.2/basic/source/runtime/
H A Druntime.cxx2828 sal_Int32 nParseEnd = 0; in StepLOADNC() local
2830 double n = ::rtl::math::stringToDouble( aStr, '.', ',', &eStatus, &nParseEnd ); in StepLOADNC()
2834 if ( nParseEnd < aStr.getLength() ) in StepLOADNC()
2836 switch ( aStr[nParseEnd] ) in StepLOADNC()
H A Dmethods.cxx1706 sal_Int32 nParseEnd = 0; in SbRtl_Val() local
1707 nResult = ::rtl::math::stringToDouble( aStr, '.', ',', &eStatus, &nParseEnd ); in SbRtl_Val()
1716 else if ( nParseEnd != aStr.getLength() ) in SbRtl_Val()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/basic/source/runtime/
H A Dmethods.cxx1686 sal_Int32 nParseEnd = 0; in SbRtl_Val() local
1687 nResult = ::rtl::math::stringToDouble( aStr, '.', ',', &eStatus, &nParseEnd ); in SbRtl_Val()
1696 else if ( nParseEnd != aStr.getLength() ) in SbRtl_Val()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/vba/
H A Dvbarange.cxx4387 sal_Int32 nParseEnd = 0; in lcl_setTableFieldsFromCriteria() local
4389 …e fValue = ScGlobal::getLocaleDataPtr()->stringToDouble( sCriteria1, false, &eStatus, &nParseEnd ); in lcl_setTableFieldsFromCriteria()
4390 if ( nParseEnd == sCriteria1.getLength() && eStatus == rtl_math_ConversionStatus_Ok ) in lcl_setTableFieldsFromCriteria()
4398 fValue = ::rtl::math::stringToDouble( sCriteria1, '.', 0, &eStatus, &nParseEnd ); in lcl_setTableFieldsFromCriteria()
4399 if ( nParseEnd == sCriteria1.getLength() && eStatus == rtl_math_ConversionStatus_Ok ) in lcl_setTableFieldsFromCriteria()