Searched refs:uiIndex (Results 1 - 16 of 16) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Darrimpl.cpp61 void name::RemoveAt(size_t uiIndex, size_t nRemove) \
63 wxCHECK_RET( uiIndex < size(), _WX_ERROR_REMOVE2(name) ); \
66 delete (T*)base_array::operator[](uiIndex + i); \
68 base_array::erase(begin() + uiIndex, begin() + uiIndex + nRemove); \
83 void name::Insert(const T& item, size_t uiIndex, size_t nInsert) \
89 base_array::insert(begin() + uiIndex, nInsert, pItem); \
91 base_array::operator[](uiIndex + i) = new T(item); \
H A Ddynarray.h136 T& Item(size_t uiIndex) const \
137 { wxASSERT( uiIndex < size() ); return (T&)operator[](uiIndex); } \
145 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1) \
146 { insert(begin() + uiIndex, nInsert, lItem); } \
148 void RemoveAt(size_t uiIndex, size_t nRemove = 1) \
149 { erase(begin() + uiIndex, begin() + uiIndex + nRemove); } \
183 T& Item(size_t uiIndex) const \
184 { wxASSERT( uiIndex < m_nCoun
[all...]
H A Darrstr.h151 // get item at position uiIndex
188 void Insert(const wxString& str, size_t uiIndex, size_t nInsert = 1);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/os2/
H A Dchecklst.h59 bool IsChecked(unsigned int uiIndex) const;
60 void Check(unsigned int uiIndex, bool bCheck = true);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/motif/
H A Dchecklst.cpp122 bool wxCheckListBox::IsChecked(unsigned int uiIndex) const
124 return ::IsChecked(wxListBox::GetString(uiIndex));
127 void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck) argument
129 wxString label = wxListBox::GetString(uiIndex);
132 wxListBox::SetString(uiIndex, label);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Ddatstrm.cpp139 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex )
141 buffer[uiIndex] = 0l;
144 buffer[uiIndex] = buffer[uiIndex] * 256l +
153 for ( size_t uiIndex=0; uiIndex!=size; ++uiIndex )
155 buffer[uiIndex]
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/carbon/
H A Dchecklst.h77 bool IsChecked(unsigned int uiIndex) const;
78 void Check(unsigned int uiIndex, bool bCheck = true);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
H A Dchecklst.h69 bool IsChecked(unsigned int uiIndex) const;
70 void Check(unsigned int uiIndex, bool bCheck = true);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/motif/
H A Dchecklst.h59 bool IsChecked(unsigned int uiIndex) const;
60 void Check(unsigned int uiIndex, bool bCheck = true);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dchecklst.h64 virtual bool IsChecked(unsigned int uiIndex) const;
65 virtual void Check(unsigned int uiIndex, bool bCheck = true);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Dchecklst.h64 virtual bool IsChecked(unsigned int uiIndex) const;
65 virtual void Check(unsigned int uiIndex, bool bCheck = true);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/wince/
H A Dchecklst.cpp169 bool wxCheckListBox::IsChecked(unsigned int uiIndex) const
171 wxCHECK_MSG( IsValid( uiIndex ), false,
174 return (ListView_GetCheckState(((HWND)GetHWND()), uiIndex) != 0);
177 void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck) argument
179 wxCHECK_RET( IsValid( uiIndex ),
182 ListView_SetCheckState(((HWND)GetHWND()), uiIndex, bCheck)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/wince/
H A Dchecklst.h56 virtual bool IsChecked(unsigned int uiIndex) const;
57 virtual void Check(unsigned int uiIndex, bool bCheck = true);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dchecklst.cpp364 bool wxCheckListBox::IsChecked(unsigned int uiIndex) const
366 return GetItem(uiIndex)->IsChecked();
369 void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck) argument
371 GetItem(uiIndex)->Check(bCheck);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dchecklst.cpp401 bool wxCheckListBox::IsChecked(unsigned int uiIndex) const
403 wxCHECK_MSG( IsValid(uiIndex), false, _T("bad wxCheckListBox index") );
405 return GetItem(uiIndex)->IsChecked();
408 void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck) argument
410 wxCHECK_RET( IsValid(uiIndex), _T("bad wxCheckListBox index") );
412 GetItem(uiIndex)->Check(bCheck);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/palmos/
H A Dchecklst.cpp262 bool wxCheckListBox::IsChecked(unsigned int uiIndex) const
267 void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck) argument

Completed in 227 milliseconds