Searched refs:SbxINT64 (Results 1 – 9 of 9) sorted by relevance
| /trunk/main/basic/inc/basic/ |
| H A D | sbxvar.hxx | 36 struct BASIC_DLLPUBLIC SbxINT64 struct 41 SbxINT64() : nHigh( 0 ), nLow( 0 ) {} in SbxINT64() function 42 SbxINT64( sal_uInt8 n ) : nHigh( 0 ), nLow( n ) {} in SbxINT64() function 43 SbxINT64( sal_uInt16 n ) : nHigh( 0 ), nLow( n ) {} in SbxINT64() argument 44 SbxINT64( sal_uInt32 n ) : nHigh( 0 ), nLow( n ) {} in SbxINT64() function 45 SbxINT64( unsigned int n ) : nHigh( 0 ), nLow( n ) {} in SbxINT64() argument 46 SbxINT64( sal_Int8 n ) : nHigh( n < 0 ? -1 : 0 ), nLow( n ) {} in SbxINT64() function 47 SbxINT64( sal_Int16 n ) : nHigh( n < 0 ? -1 : 0 ), nLow( n ) {} in SbxINT64() function 48 SbxINT64( sal_Int32 n ) : nHigh( n < 0 ? -1 : 0 ), nLow( n ) {} in SbxINT64() function 49 SbxINT64( int n ) : nHigh( n < 0 ? -1 : 0 ), nLow( n ) {} in SbxINT64() argument [all …]
|
| H A D | sbx.hxx | 53 struct SbxINT64;
|
| /trunk/main/basic/source/sbx/ |
| H A D | sbxvalue.cxx | 44 SbxINT64 &SbxINT64::operator -= ( const SbxINT64 &r ) 51 SbxINT64 &SbxINT64::operator += ( const SbxINT64 &r ) in operator +=() 58 SbxINT64 &SbxINT64::operator *= ( const SbxINT64 &r ) in operator *=() 65 SbxINT64 &SbxINT64::operator %= ( const SbxINT64 &r ) in operator %=() 72 SbxINT64 &SbxINT64::operator /= ( const SbxINT64 &r ) in operator /=() 79 SbxINT64 &SbxINT64::operator &= ( const SbxINT64 &r ) in operator &=() 85 SbxINT64 &SbxINT64::operator |= ( const SbxINT64 &r ) in operator |=() 91 SbxINT64 &SbxINT64::operator ^= ( const SbxINT64 &r ) in operator ^=() 98 SbxINT64 operator - ( const SbxINT64 &l, const SbxINT64 &r ) in operator -() 100 SbxINT64 a(l); in operator -() [all …]
|
| H A D | sbxcurr.cxx | 36 static ::rtl::OUString ImpCurrencyToString( const SbxINT64& ); 37 static SbxINT64 ImpStringToCurrency( const ::rtl::OUString& ); 39 SbxINT64 ImpGetCurrency( const SbxValues* p ) in ImpGetCurrency() 42 SbxINT64 nRes; in ImpGetCurrency() 174 void ImpPutCurrency( SbxValues* p, const SbxINT64 &r ) in ImpPutCurrency() 318 static ::rtl::OUString ImpCurrencyToString( const SbxINT64 &r ) in ImpCurrencyToString() 339 static SbxINT64 ImpStringToCurrency( const ::rtl::OUString &r ) in ImpStringToCurrency() 367 SbxINT64 nRes; in ImpStringToCurrency() 372 double ImpINT64ToDouble( const SbxINT64 &r ) in ImpINT64ToDouble() 375 SbxINT64 ImpDoubleToINT64( double d ) in ImpDoubleToINT64() [all …]
|
| H A D | sbxconv.hxx | 72 SbxINT64 ImpGetINT64( const SbxValues* ); 73 void ImpPutINT64( SbxValues*, const SbxINT64& ); 82 SbxINT64 ImpDoubleToINT64( double ); 83 double ImpINT64ToDouble( const SbxINT64& ); 92 SbxINT64 ImpGetCurrency( const SbxValues* ); 93 void ImpPutCurrency( SbxValues*, const SbxINT64& ); 95 SbxINT64 ImpDoubleToCurrency( double d ) in ImpDoubleToCurrency() 98 double ImpCurrencyToDouble( const SbxINT64 &r ) in ImpCurrencyToDouble()
|
| H A D | sbxvals.cxx | 47 sal_Bool BigInt::INT64( SbxINT64 *p ) const in INT64() 64 BigInt::BigInt( const SbxINT64 &r ) in BigInt()
|
| /trunk/main/tools/inc/tools/ |
| H A D | bigint.hxx | 33 struct SbxINT64; 84 BigInt( const SbxINT64 &r ); 107 sal_Bool INT64 ( SbxINT64 *p ) const;
|
| /trunk/main/basic/source/classes/ |
| H A D | sbunoobj.cxx | 796 SbxINT64 aInt64; in unoToSbxValue() 1376 SbxINT64 aInt64 = pVar->GetCurrency(); in sbxToUnoValue()
|
| /trunk/main/basic/source/runtime/ |
| H A D | methods1.cxx | 271 SbxINT64 nCur; in RTLFUNC()
|