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

26 // wxLongLongNative -- this is extremely useful to find the bugs in
89 class WXDLLIMPEXP_FWD_BASE wxLongLongNative;
91 typedef wxLongLongNative wxLongLong;
107 class WXDLLIMPEXP_BASE wxLongLongNative
112 wxLongLongNative() : m_ll(0) { }
114 wxLongLongNative(wxLongLong_t ll) : m_ll(ll) { }
116 wxLongLongNative(wxInt32 hi, wxUint32 lo)
123 wxLongLongNative(wxLongLongWx ll);
133 wxLongLongNative& operator=(wxLongLong_t ll)
135 wxLongLongNative& operator=(wxULongLong_t ll)
137 #endif // !wxLongLongNative
138 wxLongLongNative& operator=(const wxULongLongNative &ll);
139 wxLongLongNative& operator=(int l)
141 wxLongLongNative& operator=(long l)
143 wxLongLongNative& operator=(unsigned int l)
145 wxLongLongNative& operator=(unsigned long l)
148 wxLongLongNative& operator=(wxLongLongWx ll);
149 wxLongLongNative& operator=(const class wxULongLongWx &ll);
156 wxLongLongNative& Assign(double d)
159 // assignment operators from wxLongLongNative is ok
170 wxLongLongNative Abs() const { return wxLongLongNative(*this).Abs(); }
171 wxLongLongNative& Abs() { if ( m_ll < 0 ) m_ll = -m_ll; return *this; }
194 wxLongLongNative operator+(const wxLongLongNative& ll) const
195 { return wxLongLongNative(m_ll + ll.m_ll); }
196 wxLongLongNative& operator+=(const wxLongLongNative& ll)
199 wxLongLongNative operator+(const wxLongLong_t ll) const
200 { return wxLongLongNative(m_ll + ll); }
201 wxLongLongNative& operator+=(const wxLongLong_t ll)
205 wxLongLongNative& operator++()
209 wxLongLongNative operator++(int)
210 { wxLongLongNative value(*this); m_ll++; return value; }
213 wxLongLongNative operator-() const
214 { return wxLongLongNative(-m_ll); }
215 wxLongLongNative& Negate() { m_ll = -m_ll; return *this; }
218 wxLongLongNative operator-(const wxLongLongNative& ll) const
219 { return wxLongLongNative(m_ll - ll.m_ll); }
220 wxLongLongNative& operator-=(const wxLongLongNative& ll)
223 wxLongLongNative operator-(const wxLongLong_t ll) const
224 { return wxLongLongNative(m_ll - ll); }
225 wxLongLongNative& operator-=(const wxLongLong_t ll)
229 wxLongLongNative& operator--()
233 wxLongLongNative operator--(int)
234 { wxLongLongNative value(*this); m_ll--; return value; }
238 wxLongLongNative operator<<(int shift) const
239 { return wxLongLongNative(m_ll << shift); }
240 wxLongLongNative& operator<<=(int shift)
244 wxLongLongNative operator>>(int shift) const
245 { return wxLongLongNative(m_ll >> shift); }
246 wxLongLongNative& operator>>=(int shift)
250 wxLongLongNative operator&(const wxLongLongNative& ll) const
251 { return wxLongLongNative(m_ll & ll.m_ll); }
252 wxLongLongNative& operator&=(const wxLongLongNative& ll)
255 wxLongLongNative operator|(const wxLongLongNative& ll) const
256 { return wxLongLongNative(m_ll | ll.m_ll); }
257 wxLongLongNative& operator|=(const wxLongLongNative& ll)
260 wxLongLongNative operator^(const wxLongLongNative& ll) const
261 { return wxLongLongNative(m_ll ^ ll.m_ll); }
262 wxLongLongNative& operator^=(const wxLongLongNative& ll)
266 wxLongLongNative operator*(const wxLongLongNative& ll) const
267 { return wxLongLongNative(m_ll * ll.m_ll); }
268 wxLongLongNative operator*(long l) const
269 { return wxLongLongNative(m_ll * l); }
270 wxLongLongNative& operator*=(const wxLongLongNative& ll)
272 wxLongLongNative& operator*=(long l)
275 wxLongLongNative operator/(const wxLongLongNative& ll) const
276 { return wxLongLongNative(m_ll / ll.m_ll); }
277 wxLongLongNative operator/(long l) const
278 { return wxLongLongNative(m_ll / l); }
279 wxLongLongNative& operator/=(const wxLongLongNative& ll)
281 wxLongLongNative& operator/=(long l)
284 wxLongLongNative operator%(const wxLongLongNative& ll) const
285 { return wxLongLongNative(m_ll % ll.m_ll); }
286 wxLongLongNative operator%(long l) const
287 { return wxLongLongNative(m_ll % l); }
290 bool operator==(const wxLongLongNative& ll) const
294 bool operator!=(const wxLongLongNative& ll) const
298 bool operator<(const wxLongLongNative& ll) const
302 bool operator>(const wxLongLongNative& ll) const
306 bool operator<=(const wxLongLongNative& ll) const
310 bool operator>=(const wxLongLongNative& ll) const
326 wxSTD ostream& operator<<(wxSTD ostream&, const wxLongLongNative&);
330 wxString& operator<<(wxString&, const wxLongLongNative&);
334 class wxTextOutputStream& operator<<(class wxTextOutputStream&, const wxLongLongNative&);
336 class wxTextInputStream& operator>>(class wxTextInputStream&, wxLongLongNative&);
375 #endif // !wxLongLongNative
384 wxULongLongNative& operator=(const wxLongLongNative &ll)
567 wxLongLongNative& wxLongLongNative::operator=(const wxULongLongNative &ll)
743 bool operator==(const wxLongLongNative& ll) const