Lines Matching refs:nRes

33 	double nRes;  in ImpGetDouble()  local
39 nRes = 0; break; in ImpGetDouble()
41 nRes = p->nChar; break; in ImpGetDouble()
43 nRes = p->nByte; break; in ImpGetDouble()
46 nRes = p->nInteger; break; in ImpGetDouble()
49 nRes = p->nUShort; break; in ImpGetDouble()
51 nRes = p->nLong; break; in ImpGetDouble()
53 nRes = p->nULong; break; in ImpGetDouble()
55 nRes = p->nSingle; break; in ImpGetDouble()
58 nRes = p->nDouble; break; in ImpGetDouble()
60 nRes = ImpCurrencyToDouble( p->nLong64 ); break; in ImpGetDouble()
62 nRes = static_cast< double >(p->nInt64); break; in ImpGetDouble()
64 nRes = ImpSalUInt64ToDouble( p->uInt64 ); break; in ImpGetDouble()
68 p->pDecimal->getDouble( nRes ); in ImpGetDouble()
70 nRes = 0.0; in ImpGetDouble()
77 nRes = 0; in ImpGetDouble()
87 nRes = 0; in ImpGetDouble()
92 nRes = d; in ImpGetDouble()
99 nRes = pVal->GetDouble(); in ImpGetDouble()
102 SbxBase::SetError( SbxERR_NO_OBJECT ); nRes = 0; in ImpGetDouble()
108 nRes = *p->pChar; break; in ImpGetDouble()
110 nRes = *p->pByte; break; in ImpGetDouble()
113 nRes = *p->pInteger; break; in ImpGetDouble()
115 nRes = *p->pLong; break; in ImpGetDouble()
117 nRes = *p->pULong; break; in ImpGetDouble()
120 nRes = *p->pUShort; break; in ImpGetDouble()
122 nRes = *p->pSingle; break; in ImpGetDouble()
125 nRes = *p->pDouble; break; in ImpGetDouble()
127 nRes = ImpCurrencyToDouble( *p->pLong64 ); break; in ImpGetDouble()
129 nRes = static_cast< double >(*p->pnInt64); break; in ImpGetDouble()
131 nRes = ImpSalUInt64ToDouble( *p->puInt64 ); break; in ImpGetDouble()
134 SbxBase::SetError( SbxERR_CONVERSION ); nRes = 0; in ImpGetDouble()
136 return nRes; in ImpGetDouble()