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

69 typedef int (wxCMPFUNC_CONV *CMPFUNC)(const void* pItem1, const void* pItem2);
88 typedef int (wxCMPFUNC_CONV *CMPFUNC)(T* pItem1, T* pItem2);
90 wxArray_SortFunction(CMPFUNC f) : m_f(f) { }
94 CMPFUNC m_f;
101 typedef F CMPFUNC;
103 wxSortedArray_SortFunction(CMPFUNC f) : m_f(f) { }
107 CMPFUNC m_f;
119 typedef predicate::CMPFUNC SCMPFUNC; \
121 typedef wxArray_SortFunction<T>::CMPFUNC CMPFUNC; \
140 int Index(T lItem, CMPFUNC fnCompare) const; \
141 size_t IndexForInsert(T lItem, CMPFUNC fnCompare) const; \
144 size_t Add(T lItem, CMPFUNC fnCompare); \
151 void Sort(CMPFUNC fCmp) \
163 typedef CMPFUNC SCMPFUNC; /* for compatibility wuth wxUSE_STL */ \
188 int Index(T lItem, CMPFUNC fnCompare) const; \
189 size_t IndexForInsert(T lItem, CMPFUNC fnCompare) const; \
191 size_t Add(T lItem, CMPFUNC fnCompare); \
196 void Sort(CMPFUNC fnCompare); \
281 typedef int (CMPFUNC_CONV *CMPFUNC##T)(T *pItem1, T *pItem2); \
308 void Sort(CMPFUNC##T fCmp) { base::Sort((CMPFUNC)fCmp); } \
322 typedef int (CMPFUNC_CONV *CMPFUNC##T)(T *pItem1, T *pItem2); \
357 void Sort(CMPFUNC##T fCmp) { base::Sort((CMPFUNC)fCmp); } \
519 { return base::Index(lItem, (CMPFUNC)m_fnCompare); } \
522 { return base::IndexForInsert(lItem, (CMPFUNC)m_fnCompare); } \
528 { return base::Add(lItem, (CMPFUNC)m_fnCompare); } \
548 typedef int (CMPFUNC_CONV *CMPFUNC##T)(T **pItem1, T **pItem2); \
551 typedef int (CMPFUNC_CONV *CMPFUNC##base)(void **pItem1, void **pItem2); \
597 void Sort(CMPFUNC##T fCmp) { base::Sort((CMPFUNC##base)fCmp); } \