Searched refs:SbxMAXCHAR (Results 1 – 9 of 9) sorted by relevance
65 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 …]
591 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()
201 if( n > SbxMAXCHAR ) in ImpPutDouble()203 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutDouble()
259 if( n > SbxMAXCHAR ) in ImpPutULong()261 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutULong()
251 if( n > SbxMAXCHAR ) in ImpPutSingle()253 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutSingle()
253 if( n > SbxMAXCHAR ) in ImpPutLong()255 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutLong()
238 if( dVal > SbxMAXCHAR ) in ImpPutCurrency()240 SbxBase::SetError( SbxERR_OVERFLOW ); dVal = SbxMAXCHAR; in ImpPutCurrency()
309 if( n > SbxMAXCHAR ) in ImpPutDate()311 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXCHAR; in ImpPutDate()
353 #define SbxMAXCHAR ((sal_Unicode)65535) macro