Home
last modified time | relevance | path

Searched refs:SbxMAXCHAR (Results 1 – 9 of 9) sorted by relevance

/trunk/main/basic/source/sbx/
H A Dsbxchar.cxx65 if( p->nLong > SbxMAXCHAR ) in ImpGetChar()
67 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXCHAR; in ImpGetChar()
77 if( p->nULong > SbxMAXCHAR ) in ImpGetChar()
79 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXCHAR; in ImpGetChar()
85 if( p->nInt64 > SbxMAXCHAR ) in ImpGetChar()
87 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXCHAR; in ImpGetChar()
97 if( p->uInt64 > SbxMAXCHAR ) in ImpGetChar()
99 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXCHAR; in ImpGetChar()
105 if( p->nSingle > SbxMAXCHAR ) in ImpGetChar()
107 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXCHAR; in ImpGetChar()
[all …]
H A Dsbxint.cxx591 if( n > SbxMAXCHAR ) in ImpPutInt64()
593 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutInt64()
896 if( n > SbxMAXCHAR ) in ImpPutUInt64()
898 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutUInt64()
H A Dsbxdbl.cxx201 if( n > SbxMAXCHAR ) in ImpPutDouble()
203 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutDouble()
H A Dsbxulng.cxx259 if( n > SbxMAXCHAR ) in ImpPutULong()
261 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutULong()
H A Dsbxsng.cxx251 if( n > SbxMAXCHAR ) in ImpPutSingle()
253 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutSingle()
H A Dsbxlng.cxx253 if( n > SbxMAXCHAR ) in ImpPutLong()
255 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutLong()
H A Dsbxcurr.cxx238 if( dVal > SbxMAXCHAR ) in ImpPutCurrency()
240 SbxBase::SetError( SbxERR_OVERFLOW ); dVal = SbxMAXCHAR; in ImpPutCurrency()
H A Dsbxdate.cxx309 if( n > SbxMAXCHAR ) in ImpPutDate()
311 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutDate()
/trunk/main/basic/inc/basic/
H A Dsbxdef.hxx353 #define SbxMAXCHAR ((sal_Unicode)65535) macro