Lines Matching refs:nRes

39 	double nRes;  in ImpGetDate()  local
45 nRes = 0; break; in ImpGetDate()
47 nRes = p->nChar; break; in ImpGetDate()
49 nRes = p->nByte; break; in ImpGetDate()
52 nRes = p->nInteger; break; in ImpGetDate()
55 nRes = p->nUShort; break; in ImpGetDate()
57 nRes = (double) p->nLong; break; in ImpGetDate()
59 nRes = (double) p->nULong; break; in ImpGetDate()
61 nRes = p->nSingle; break; in ImpGetDate()
64 nRes = p->nDouble; break; in ImpGetDate()
66 nRes = ImpUINT64ToDouble( p->nULong64 ); break; in ImpGetDate()
68 nRes = ImpINT64ToDouble( p->nLong64 ); break; in ImpGetDate()
70 nRes = ImpCurrencyToDouble( p->nLong64 ); break; in ImpGetDate()
72 nRes = static_cast< double >(p->nInt64); break; in ImpGetDate()
74 nRes = ImpSalUInt64ToDouble( p->uInt64 ); break; in ImpGetDate()
78 p->pDecimal->getDouble( nRes ); in ImpGetDate()
80 nRes = 0.0; in ImpGetDate()
86 nRes = 0; in ImpGetDate()
124 sal_Bool bSuccess = pFormatter->IsNumberFormat( *p->pOUString, nIndex, nRes ); in ImpGetDate()
135 SbxBase::SetError( SbxERR_CONVERSION ); nRes = 0; in ImpGetDate()
145 nRes = pVal->GetDate(); in ImpGetDate()
148 SbxBase::SetError( SbxERR_NO_OBJECT ); nRes = 0; in ImpGetDate()
154 nRes = *p->pChar; break; in ImpGetDate()
156 nRes = *p->pByte; break; in ImpGetDate()
159 nRes = *p->pInteger; break; in ImpGetDate()
161 nRes = *p->pLong; break; in ImpGetDate()
163 nRes = *p->pULong; break; in ImpGetDate()
166 nRes = *p->pUShort; break; in ImpGetDate()
168 nRes = *p->pSingle; break; in ImpGetDate()
171 nRes = *p->pDouble; break; in ImpGetDate()
173 nRes = ImpUINT64ToDouble( *p->pULong64 ); break; in ImpGetDate()
175 nRes = ImpINT64ToDouble( *p->pLong64 ); break; in ImpGetDate()
177 nRes = ImpCurrencyToDouble( *p->pLong64 ); break; in ImpGetDate()
179 nRes = static_cast< double >(*p->pnInt64); break; in ImpGetDate()
181 nRes = ImpSalUInt64ToDouble( *p->puInt64 ); break; in ImpGetDate()
184 SbxBase::SetError( SbxERR_CONVERSION ); nRes = 0; in ImpGetDate()
186 return nRes; in ImpGetDate()