Lines Matching refs:nRes

33 	sal_uInt8 nRes;  in ImpGetByte()  local
40 nRes = 0; break; in ImpGetByte()
44 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = 0; in ImpGetByte()
47 nRes = (sal_uInt8) p->nChar; in ImpGetByte()
50 nRes = (sal_uInt8) p->nByte; break; in ImpGetByte()
55 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXBYTE; in ImpGetByte()
59 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = 0; in ImpGetByte()
62 nRes = (sal_uInt8) p->nInteger; in ImpGetByte()
68 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXBYTE; in ImpGetByte()
71 nRes = (sal_uInt8) p->nUShort; in ImpGetByte()
76 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXBYTE; in ImpGetByte()
80 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = 0; in ImpGetByte()
83 nRes = (sal_uInt8) p->nLong; in ImpGetByte()
88 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXBYTE; in ImpGetByte()
91 nRes = (sal_uInt8) p->nULong; in ImpGetByte()
96 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXBYTE; in ImpGetByte()
100 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = 0; in ImpGetByte()
103 nRes = (sal_uInt8) p->nInt64; in ImpGetByte()
108 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXBYTE; in ImpGetByte()
111 nRes = (sal_uInt8) p->uInt64; in ImpGetByte()
116 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXBYTE; in ImpGetByte()
120 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = 0; in ImpGetByte()
123 nRes = (sal_uInt8) ImpRound( p->nSingle ); in ImpGetByte()
151 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXBYTE; in ImpGetByte()
155 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = 0; in ImpGetByte()
158 nRes = (sal_uInt8) ImpRound( dVal ); in ImpGetByte()
165 nRes = 0; in ImpGetByte()
171 nRes = 0; in ImpGetByte()
174 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = SbxMAXBYTE; in ImpGetByte()
178 SbxBase::SetError( SbxERR_OVERFLOW ); nRes = 0; in ImpGetByte()
181 nRes = (sal_uInt8) ( d + 0.5 ); in ImpGetByte()
188 nRes = pVal->GetByte(); in ImpGetByte()
191 SbxBase::SetError( SbxERR_NO_OBJECT ); nRes = 0; in ImpGetByte()
197 nRes = p->nByte; break; in ImpGetByte()
231 SbxBase::SetError( SbxERR_CONVERSION ); nRes = 0; in ImpGetByte()
233 return nRes; in ImpGetByte()