Lines Matching refs:aStr

140 	XubString	aStr = rStr;  in ImplNumericGetValue()  local
152 aStr.EraseLeadingAndTrailingChars( ' ' ); in ImplNumericGetValue()
155 nDecPos = aStr.Search( rLocaleDataWrapper.getNumDecimalSep() ); in ImplNumericGetValue()
159 aStr1 = aStr.Copy( 0, nDecPos ); in ImplNumericGetValue()
160 aStr2 = aStr.Copy( nDecPos+1 ); in ImplNumericGetValue()
163 aStr1 = aStr; in ImplNumericGetValue()
168 if ( (aStr.GetChar( 0 ) == '(') && (aStr.GetChar( aStr.Len()-1 ) == ')') ) in ImplNumericGetValue()
172 for ( i=0; i < aStr.Len(); i++ ) in ImplNumericGetValue()
174 if ( (aStr.GetChar( i ) >= '0') && (aStr.GetChar( i ) <= '9') ) in ImplNumericGetValue()
176 else if ( aStr.GetChar( i ) == '-' ) in ImplNumericGetValue()
183 if ( !bNegative && bCurrency && aStr.Len() ) in ImplNumericGetValue()
189 for ( i = (sal_uInt16)(aStr.Len()-1); i > 0; i++ ) in ImplNumericGetValue()
191 if ( (aStr.GetChar( i ) >= '0') && (aStr.GetChar( i ) <= '9') ) in ImplNumericGetValue()
193 else if ( aStr.GetChar( i ) == '-' ) in ImplNumericGetValue()
243 aStr = aStr1; in ImplNumericGetValue()
244 aStr += aStr2; in ImplNumericGetValue()
247 BigInt nValue( aStr ); in ImplNumericGetValue()
419 …XubString aStr = ImplGetCurr( GetLocaleDataWrapper(), nNewValue, GetDecimalDigits(), GetCurrencySy… in SetUserValue() local
423 GetField()->SetText( aStr ); in SetUserValue()
427 GetField()->SetText( aStr ); in SetUserValue()
461 XubString aStr; in Reformat() local
463 GetDecimalDigits(), GetLocaleDataWrapper(), aStr, *this ); in Reformat()
467 if ( aStr.Len() ) in Reformat()
469 GetField()->SetText( aStr ); in Reformat()
471 ImplLongCurrencyGetValue( aStr, mnLastValue, GetDecimalDigits(), GetLocaleDataWrapper() ); in Reformat()
804 XubString aStr; in ReformatAll() local
811 aStr, *this ); in ReformatAll()
813 InsertEntry( aStr, i ); in ReformatAll()
823 …XubString aStr = ImplGetCurr( GetLocaleDataWrapper(), nValue, GetDecimalDigits(), GetCurrencySymbo… in InsertValue() local
824 ComboBox::InsertEntry( aStr, nPos ); in InsertValue()
831 …XubString aStr = ImplGetCurr( GetLocaleDataWrapper(), nValue, GetDecimalDigits(), GetCurrencySymbo… in RemoveValue() local
832 ComboBox::RemoveEntry( aStr ); in RemoveValue()
849 …XubString aStr = ImplGetCurr( GetLocaleDataWrapper(), nValue, GetDecimalDigits(), GetCurrencySymbo… in GetValuePos() local
850 return ComboBox::GetEntryPos( aStr ); in GetValuePos()