Home
last modified time | relevance | path

Searched refs:SbxMAXINT (Results 1 – 14 of 14) sorted by relevance

/AOO41X/main/basic/source/sbx/
H A Dsbxint.cxx55 if( p->nUShort > (sal_uInt16) SbxMAXINT ) in ImpGetInteger()
57 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXINT; in ImpGetInteger()
63 if( p->nLong > SbxMAXINT ) in ImpGetInteger()
65 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXINT; in ImpGetInteger()
75 if( p->nULong > SbxMAXINT ) in ImpGetInteger()
77 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXINT; in ImpGetInteger()
83 if( p->nSingle > SbxMAXINT ) in ImpGetInteger()
85 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXINT; in ImpGetInteger()
95 if( p->nInt64 > SbxMAXINT ) in ImpGetInteger()
97 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXINT; in ImpGetInteger()
[all …]
H A Dsbxdbl.cxx222 if( n > SbxMAXINT ) in ImpPutDouble()
224 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXINT; in ImpPutDouble()
H A Dsbxulng.cxx272 if( n > SbxMAXINT ) in ImpPutULong()
274 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXINT; in ImpPutULong()
H A Dsbxsng.cxx272 if( n > SbxMAXINT ) in ImpPutSingle()
274 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXINT; in ImpPutSingle()
H A Dsbxlng.cxx274 if( n > SbxMAXINT ) in ImpPutLong()
276 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXINT; in ImpPutLong()
H A Dsbxuint.cxx295 if( n > SbxMAXINT ) in ImpPutUShort()
297 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXINT; in ImpPutUShort()
H A Dsbxcurr.cxx259 if( dVal > SbxMAXINT ) in ImpPutCurrency()
261 SbxBase::SetError( SbxERR_OVERFLOW ); dVal = SbxMAXINT; in ImpPutCurrency()
H A Dsbxdate.cxx330 if( n > SbxMAXINT ) in ImpPutDate()
332 SbxBase::SetError( SbxERR_OVERFLOW ); n = SbxMAXINT; in ImpPutDate()
H A Dsbxscan.cxx175 if( nVal >= SbxMININT && nVal <= SbxMAXINT ) in ImpScan()
225 if( l >= SbxMININT && l <= SbxMAXINT ) in ImpScan()
/AOO41X/main/basic/source/comp/
H A Dexprnode.cxx180 if( nVal >= SbxMININT && nVal <= SbxMAXINT && modf( nVal, &n ) == 0 ) in IsIntConst()
434 eType = ( n >= SbxMININT && n <= SbxMAXINT ) in FoldConstants()
479 if( eType == SbxLONG && nVal >= SbxMININT && nVal <= SbxMAXINT ) in FoldConstants()
H A Dscanner.cxx348 if( nVal >= SbxMININT && nVal <= SbxMAXINT ) in NextSym()
429 eScanType = ( l >= SbxMININT && l <= SbxMAXINT ) ? SbxINTEGER : SbxLONG; in NextSym()
H A Dexprtree.cxx867 if( n > SbxMAXINT ) n = SbxMAXINT, pParser->Error( SbERR_OUT_OF_RANGE ); in GetShortValue()
/AOO41X/main/basic/inc/basic/
H A Dsbxdef.hxx356 #define SbxMAXINT ( 32767) macro
/AOO41X/main/basic/source/classes/
H A Dsbunoobj.cxx1181 else if( d >= SbxMININT && d <= SbxMAXINT ) in sbxToUnoValueImpl()
1200 else if( n >= SbxMININT && n <= SbxMAXINT ) in sbxToUnoValueImpl()