• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/

Lines Matching refs:this

6 // Any parts of this program derived from the xMule, lMule or eMule project,
21 // along with this program; if not, write to the Free Software
49 * thread-safe way to get the error description, then this conversion is
55 * conversion type. Basic type conversions may take place to accomplish this
65 * The only exception from this rule is integer (@c d, @c i, @c u) conversion.
82 * because msgfmt will treat this as an error.)
130 * Specialize this member template to teach CFormat how to handle
136 template<typename _Tp> CFormat& operator%(_Tp* value) { return this->operator%<void*>(value); }
139 CFormat& operator%(const wxString& value) { return this->operator%<const wxString&>(value); }
140 CFormat& operator%(const CFormat& value) { return this->operator%<const wxString&>(value); }
181 template<> inline CFormat& CFormat::operator%(char value) { return *this % (wxChar)value; }
182 template<> inline CFormat& CFormat::operator%(signed char value) { return *this % (wxChar)value; }
183 template<> inline CFormat& CFormat::operator%(unsigned char value) { return *this % (wxChar)value; }
184 template<> inline CFormat& CFormat::operator%(bool value) { return *this % (signed long long)value; }
185 template<> inline CFormat& CFormat::operator%(signed short value) { return *this % (signed long long)value; }
186 template<> inline CFormat& CFormat::operator%(unsigned short value) { return *this % (unsigned long long)value; }
187 template<> inline CFormat& CFormat::operator%(signed int value) { return *this % (signed long long)value; }
188 template<> inline CFormat& CFormat::operator%(unsigned int value) { return *this % (unsigned long long)value; }
189 template<> inline CFormat& CFormat::operator%(signed long value) { return *this % (signed long long)value; }
190 template<> inline CFormat& CFormat::operator%(unsigned long value) { return *this % (unsigned long long)value; }
191 template<> inline CFormat& CFormat::operator%(float value) { return *this % (double)value; }
192 template<> inline CFormat& CFormat::operator%(const wxChar* value) { return this->operator%<const wxString&>(wxString(value)); }