Searched refs:m_pItems (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Ddynarray.cpp115 m_pItems = (T *)NULL; \
125 m_pItems = new T[m_nSize]; \
127 if ( m_pItems ) { \
128 memcpy(m_pItems, src.m_pItems, m_nCount*sizeof(T)); \
135 m_pItems = (T *) NULL; \
141 wxDELETEA(m_pItems); \
147 m_pItems = new T[m_nSize]; \
149 if ( m_pItems ) { \
150 memcpy(m_pItems, sr
[all...]
H A Dstring.cpp2193 m_pItems = (wxChar **) NULL;
2243 m_pItems = new wxChar *[m_nSize];
2259 memcpy(pNew, m_pItems, m_nCount*sizeof(wxChar *));
2262 wxDELETEA(m_pItems);
2264 m_pItems = pNew;
2272 STRING(m_pItems[n])->GetStringData()->Unlock();
2292 wxDELETEA(m_pItems);
2300 wxDELETEA(m_pItems);
2317 memcpy(pNew, m_pItems, m_nCount*sizeof(wxChar *));
2318 delete [] m_pItems;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Darrstr.h157 return *(wxString *)&(m_pItems[nIndex]);
286 iterator begin() { return (wxString *)&(m_pItems[0]); }
287 const_iterator begin() const { return (wxString *)&(m_pItems[0]); }
331 wxChar **m_pItems; // pointer to data member in class:wxArrayString
H A Ddynarray.h184 { wxASSERT( uiIndex < m_nCount ); return m_pItems[uiIndex]; } \
232 iterator begin() { return m_pItems; } \
233 iterator end() { return m_pItems + m_nCount; } \
234 const_iterator begin() const { return m_pItems; } \
235 const_iterator end() const { return m_pItems + m_nCount; } \
252 T *m_pItems; \

Completed in 68 milliseconds