Lines Matching refs:rStr

100 static sal_Bool ImplNumericGetValue( const XubString& rStr, double& rValue,  in ImplNumericGetValue()  argument
104 XubString aStr = rStr; in ImplNumericGetValue()
112 if ( !rStr.Len() ) in ImplNumericGetValue()
441 sal_Bool NumericFormatter::ImplNumericReformat( const XubString& rStr, double& rValue, in ImplNumericReformat() argument
444 if ( !ImplNumericGetValue( rStr, rValue, GetDecimalDigits(), ImplGetLocaleDataWrapper() ) ) in ImplNumericReformat()
1095 static XubString ImplMetricGetUnitText( const XubString& rStr ) in ImplMetricGetUnitText() argument
1099 for ( short i = rStr.Len()-1; i >= 0; i-- ) in ImplMetricGetUnitText()
1101 xub_Unicode c = rStr.GetChar( i ); in ImplMetricGetUnitText()
1175 static FieldUnit ImplMetricGetUnit( const XubString& rStr ) in ImplMetricGetUnit() argument
1177 XubString aStr = ImplMetricGetUnitText( rStr ); in ImplMetricGetUnit()
1460 static sal_Bool ImplMetricGetValue( const XubString& rStr, double& rValue, sal_Int64 nBaseValue, in ImplMetricGetValue() argument
1464 if ( !ImplNumericGetValue( rStr, rValue, nDecDigits, rLocaleDataWrapper ) ) in ImplMetricGetValue()
1468 FieldUnit eEntryUnit = ImplMetricGetUnit( rStr ); in ImplMetricGetValue()
1478 sal_Bool MetricFormatter::ImplMetricReformat( const XubString& rStr, double& rValue, XubString& rOu… in ImplMetricReformat() argument
1480 …if ( !ImplMetricGetValue( rStr, rValue, mnBaseValue, GetDecimalDigits(), ImplGetLocaleDataWrapper(… in ImplMetricReformat()
1565 void MetricFormatter::SetCustomUnitText( const XubString& rStr ) in SetCustomUnitText() argument
1567 maCustomUnitText = rStr; in SetCustomUnitText()
2104 inline sal_Bool ImplCurrencyGetValue( const XubString& rStr, double& rValue, in ImplCurrencyGetValue() argument
2108 return ImplNumericGetValue( rStr, rValue, nDecDigits, rWrapper, sal_True ); in ImplCurrencyGetValue()
2113 sal_Bool CurrencyFormatter::ImplCurrencyReformat( const XubString& rStr, in ImplCurrencyReformat() argument
2117 …if ( !ImplNumericGetValue( rStr, nValue, GetDecimalDigits(), ImplGetLocaleDataWrapper(), sal_True … in ImplCurrencyReformat()
2167 void CurrencyFormatter::SetCurrencySymbol( const String& rStr ) in SetCurrencySymbol() argument
2169 maCurrencySymbol= rStr; in SetCurrencySymbol()