Lines Matching refs:Complex
445 class Complex class
451 inline Complex( double fReal, double fImag = 0.0, sal_Unicode cC = '\0' );
452 Complex( const STRING& rComplexAsString ) THROWDEF_RTE_IAE;
455 static sal_Bool ParseString( const STRING& rComplexAsString, Complex& rReturn );
469 void Div( const Complex& rDivisor ) THROWDEF_RTE_IAE;
476 inline void Mult( const Complex& rMult );
477 inline void Sub( const Complex& rMult );
478 inline void Add( const Complex& rAdd );
506 inline const Complex* Get( sal_uInt32 nIndex ) const;
507 inline const Complex* First( void );
508 inline const Complex* Next( void );
513 inline void Append( Complex* pNew );
805 inline Complex::Complex( double fReal, double fImag, sal_Unicode cC ) : in Complex() function in Complex
811 inline double Complex::Real( void ) const in Real()
817 inline double Complex::Imag( void ) const in Imag()
823 inline double Complex::Abs( void ) const in Abs()
829 void Complex::Conjugate( void ) in Conjugate()
835 inline void Complex::Mult( double f ) in Mult()
841 inline void Complex::Mult( const Complex& rM ) in Mult()
849 inline void Complex::Sub( const Complex& rC ) in Sub()
857 inline void Complex::Add( const Complex& rAdd ) in Add()
867 inline const Complex* ComplexList::Get( sal_uInt32 n ) const in Get()
869 return ( const Complex* ) MyList::GetObject( n ); in Get()
873 inline const Complex* ComplexList::First( void ) in First()
875 return ( const Complex* ) MyList::First(); in First()
879 inline const Complex* ComplexList::Next( void ) in Next()
881 return ( const Complex* ) MyList::Next(); in Next()
885 inline void ComplexList::Append( Complex* p ) in Append()