• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/

Lines Matching refs:wxLongLongWx

24 // define this to compile wxLongLongWx in "test" mode: the results of all
27 // wxLongLongWx class!
70 class WXDLLIMPEXP_BASE wxLongLongWx;
73 #define wxLongLong wxLongLongWx
76 typedef wxLongLongWx wxLongLong;
123 wxLongLongNative(wxLongLongWx ll);
148 wxLongLongNative& operator=(wxLongLongWx ll);
387 wxULongLongNative& operator=(wxLongLongWx ll);
577 class WXDLLIMPEXP_BASE wxLongLongWx
582 wxLongLongWx()
593 wxLongLongWx(long l) { *this = l; }
595 wxLongLongWx(long hi, unsigned long lo)
615 wxLongLongWx& operator=(long l)
629 wxLongLongWx& operator=(int l)
634 wxLongLongWx& operator=(unsigned long l)
648 wxLongLongWx& operator=(unsigned int l)
653 wxLongLongWx& operator=(const class wxULongLongWx &ll);
656 wxLongLongWx& Assign(double d);
666 wxLongLongWx Abs() const { return wxLongLongWx(*this).Abs(); }
667 wxLongLongWx& Abs()
696 wxLongLongWx operator+(const wxLongLongWx& ll) const;
697 wxLongLongWx& operator+=(const wxLongLongWx& ll);
698 wxLongLongWx operator+(long l) const;
699 wxLongLongWx& operator+=(long l);
702 wxLongLongWx& operator++();
705 wxLongLongWx& operator++(int) { return ++(*this); }
708 wxLongLongWx operator-() const;
709 wxLongLongWx& Negate();
712 wxLongLongWx operator-(const wxLongLongWx& ll) const;
713 wxLongLongWx& operator-=(const wxLongLongWx& ll);
716 wxLongLongWx& operator--();
719 wxLongLongWx& operator--(int) { return --(*this); }
723 wxLongLongWx operator<<(int shift) const;
724 wxLongLongWx& operator<<=(int shift);
727 wxLongLongWx operator>>(int shift) const;
728 wxLongLongWx& operator>>=(int shift);
731 wxLongLongWx operator&(const wxLongLongWx& ll) const;
732 wxLongLongWx& operator&=(const wxLongLongWx& ll);
733 wxLongLongWx operator|(const wxLongLongWx& ll) const;
734 wxLongLongWx& operator|=(const wxLongLongWx& ll);
735 wxLongLongWx operator^(const wxLongLongWx& ll) const;
736 wxLongLongWx& operator^=(const wxLongLongWx& ll);
737 wxLongLongWx operator~() const;
740 bool operator==(const wxLongLongWx& ll) const
746 bool operator!=(const wxLongLongWx& ll) const
748 bool operator<(const wxLongLongWx& ll) const;
749 bool operator>(const wxLongLongWx& ll) const;
750 bool operator<=(const wxLongLongWx& ll) const
752 bool operator>=(const wxLongLongWx& ll) const
755 bool operator<(long l) const { return *this < wxLongLongWx(l); }
756 bool operator>(long l) const { return *this > wxLongLongWx(l); }
767 wxLongLongWx operator*(const wxLongLongWx& ll) const;
768 wxLongLongWx& operator*=(const wxLongLongWx& ll);
771 wxLongLongWx operator/(const wxLongLongWx& ll) const;
772 wxLongLongWx& operator/=(const wxLongLongWx& ll);
774 wxLongLongWx operator%(const wxLongLongWx& ll) const;
776 void Divide(const wxLongLongWx& divisor,
777 wxLongLongWx& quotient,
778 wxLongLongWx& remainder) const;
789 wxSTD ostream& operator<<(wxSTD ostream&, const wxLongLongWx&);
793 wxString& operator<<(wxString&, const wxLongLongWx&);
797 class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxLongLongWx&);
799 class wxTextInputStream& operator>>(class wxTextInputStream&, wxLongLongWx&);
852 wxULongLongWx(wxLongLongWx ll)
891 wxULongLongWx& operator=(const class wxLongLongWx &ll) {
933 wxLongLongWx operator-(const wxULongLongWx& ll) const;