• 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:wxULongLongNative

90     class WXDLLIMPEXP_FWD_BASE wxULongLongNative;
92 typedef wxULongLongNative wxULongLong;
138 wxLongLongNative& operator=(const wxULongLongNative &ll);
344 class WXDLLIMPEXP_BASE wxULongLongNative
349 wxULongLongNative() : m_ll(0) { }
351 wxULongLongNative(wxULongLong_t ll) : m_ll(ll) { }
353 wxULongLongNative(wxUint32 hi, wxUint32 lo) : m_ll(0)
361 wxULongLongNative(const class wxULongLongWx &ll);
371 wxULongLongNative& operator=(wxULongLong_t ll)
373 wxULongLongNative& operator=(wxLongLong_t ll)
376 wxULongLongNative& operator=(int l)
378 wxULongLongNative& operator=(long l)
380 wxULongLongNative& operator=(unsigned int l)
382 wxULongLongNative& operator=(unsigned long l)
384 wxULongLongNative& operator=(const wxLongLongNative &ll)
387 wxULongLongNative& operator=(wxLongLongWx ll);
388 wxULongLongNative& operator=(const class wxULongLongWx &ll);
391 // assignment operators from wxULongLongNative is ok
422 wxULongLongNative operator+(const wxULongLongNative& ll) const
423 { return wxULongLongNative(m_ll + ll.m_ll); }
424 wxULongLongNative& operator+=(const wxULongLongNative& ll)
427 wxULongLongNative operator+(const wxULongLong_t ll) const
428 { return wxULongLongNative(m_ll + ll); }
429 wxULongLongNative& operator+=(const wxULongLong_t ll)
433 wxULongLongNative& operator++()
437 wxULongLongNative operator++(int)
438 { wxULongLongNative value(*this); m_ll++; return value; }
441 wxULongLongNative operator-(const wxULongLongNative& ll) const
442 { return wxULongLongNative(m_ll - ll.m_ll); }
443 wxULongLongNative& operator-=(const wxULongLongNative& ll)
446 wxULongLongNative operator-(const wxULongLong_t ll) const
447 { return wxULongLongNative(m_ll - ll); }
448 wxULongLongNative& operator-=(const wxULongLong_t ll)
452 wxULongLongNative& operator--()
456 wxULongLongNative operator--(int)
457 { wxULongLongNative value(*this); m_ll--; return value; }
461 wxULongLongNative operator<<(int shift) const
462 { return wxULongLongNative(m_ll << shift); }
463 wxULongLongNative& operator<<=(int shift)
467 wxULongLongNative operator>>(int shift) const
468 { return wxULongLongNative(m_ll >> shift); }
469 wxULongLongNative& operator>>=(int shift)
473 wxULongLongNative operator&(const wxULongLongNative& ll) const
474 { return wxULongLongNative(m_ll & ll.m_ll); }
475 wxULongLongNative& operator&=(const wxULongLongNative& ll)
478 wxULongLongNative operator|(const wxULongLongNative& ll) const
479 { return wxULongLongNative(m_ll | ll.m_ll); }
480 wxULongLongNative& operator|=(const wxULongLongNative& ll)
483 wxULongLongNative operator^(const wxULongLongNative& ll) const
484 { return wxULongLongNative(m_ll ^ ll.m_ll); }
485 wxULongLongNative& operator^=(const wxULongLongNative& ll)
489 wxULongLongNative operator*(const wxULongLongNative& ll) const
490 { return wxULongLongNative(m_ll * ll.m_ll); }
491 wxULongLongNative operator*(unsigned long l) const
492 { return wxULongLongNative(m_ll * l); }
493 wxULongLongNative& operator*=(const wxULongLongNative& ll)
495 wxULongLongNative& operator*=(unsigned long l)
498 wxULongLongNative operator/(const wxULongLongNative& ll) const
499 { return wxULongLongNative(m_ll / ll.m_ll); }
500 wxULongLongNative operator/(unsigned long l) const
501 { return wxULongLongNative(m_ll / l); }
502 wxULongLongNative& operator/=(const wxULongLongNative& ll)
504 wxULongLongNative& operator/=(unsigned long l)
507 wxULongLongNative operator%(const wxULongLongNative& ll) const
508 { return wxULongLongNative(m_ll % ll.m_ll); }
509 wxULongLongNative operator%(unsigned long l) const
510 { return wxULongLongNative(m_ll % l); }
513 bool operator==(const wxULongLongNative& ll) const
517 bool operator!=(const wxULongLongNative& ll) const
521 bool operator<(const wxULongLongNative& ll) const
525 bool operator>(const wxULongLongNative& ll) const
529 bool operator<=(const wxULongLongNative& ll) const
533 bool operator>=(const wxULongLongNative& ll) const
549 wxSTD ostream& operator<<(wxSTD ostream&, const wxULongLongNative&);
553 wxString& operator<<(wxString&, const wxULongLongNative&);
557 class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxULongLongNative&);
559 class wxTextInputStream& operator>>(class wxTextInputStream&, wxULongLongNative&);
567 wxLongLongNative& wxLongLongNative::operator=(const wxULongLongNative &ll)