Searched refs:sStrg (Results 1 – 2 of 2) sorted by relevance
| /trunk/main/basic/source/sbx/ |
| H A D | sbxform.cxx | 150 inline void SbxBasicFormater::ShiftString( String& sStrg, sal_uInt16 nStartPos ) in ShiftString() argument 152 sStrg.Erase( nStartPos,1 ); in ShiftString() 156 inline void SbxBasicFormater::StrAppendChar( String& sStrg, sal_Unicode ch ) in StrAppendChar() argument 158 sStrg.Insert( ch ); in StrAppendChar() 164 void SbxBasicFormater::AppendDigit( String& sStrg, short nDigit ) in AppendDigit() argument 167 StrAppendChar( sStrg, (sal_Unicode)(nDigit+ASCII_0) ); in AppendDigit() 171 void SbxBasicFormater::LeftShiftDecimalPoint( String& sStrg ) in LeftShiftDecimalPoint() argument 173 sal_uInt16 nPos = sStrg.Search( cDecPoint ); in LeftShiftDecimalPoint() 178 sStrg.SetChar( nPos, sStrg.GetChar( nPos - 1 ) ); in LeftShiftDecimalPoint() 179 sStrg.SetChar( nPos-1, cDecPoint ); in LeftShiftDecimalPoint() [all …]
|
| /trunk/main/basic/inc/basic/ |
| H A D | sbxform.hxx | 116 inline void ShiftString( String& sStrg, sal_uInt16 nStartPos ); 117 inline void StrAppendChar( String& sStrg, sal_Unicode ch ); 118 void AppendDigit( String& sStrg, short nDigit ); 119 void LeftShiftDecimalPoint( String& sStrg ); 120 void StrRoundDigit( String& sStrg, short nPos, sal_Bool& bOverflow ); 121 void StrRoundDigit( String& sStrg, short nPos ); 122 void ParseBack( String& sStrg, const String& sFormatStrg,
|