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

130 	 * Specialize this member template to teach CFormat how to handle
133 template<typename _Tp> CFormat& operator%(_Tp value);
136 template<typename _Tp> CFormat& operator%(_Tp* value) { return this->operator%<void*>(value); }
167 template<typename _Tp>
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)); }