Lines Matching refs:hResult
107 HRESULT hResult = VarDecSub( &maDec, (LPDECIMAL)&r.maDec, &maDec ); in operator -=() local
108 bool bRet = ( hResult == S_OK ); in operator -=()
114 HRESULT hResult = VarDecAdd( &maDec, (LPDECIMAL)&r.maDec, &maDec ); in operator +=() local
115 bool bRet = ( hResult == S_OK ); in operator +=()
121 HRESULT hResult = VarDecDiv( &maDec, (LPDECIMAL)&r.maDec, &maDec ); in operator /=() local
122 bool bRet = ( hResult == S_OK ); in operator /=()
128 HRESULT hResult = VarDecMul( &maDec, (LPDECIMAL)&r.maDec, &maDec ); in operator *=() local
129 bool bRet = ( hResult == S_OK ); in operator *=()
135 HRESULT hResult = VarDecNeg( &maDec, &maDec ); in neg() local
136 bool bRet = ( hResult == S_OK ); in neg()
150 HRESULT hResult = VarDecCmp( (LPDECIMAL)&rLeft.maDec, (LPDECIMAL)&rRight.maDec ); in compare() local
151 SbxDecimal::CmpResult eRes = (SbxDecimal::CmpResult)hResult; in compare()
220 HRESULT hResult; in setString() local
242 hResult = VarDecFromStr( (OLECHAR*)pBuffer, nLANGID, 0, &maDec ); in setString()
247 hResult = VarDecFromStr( (OLECHAR*)pOUString->getStr(), nLANGID, 0, &maDec ); in setString()
249 bRet = ( hResult == S_OK ); in setString()
398 HRESULT hResult = VarBstrFromDec( &maDec, nLANGID, 0, &aBStr ); in getString() local
399 bRet = ( hResult == S_OK ); in getString()