Home
last modified time | relevance | path

Searched refs:uiIndex (Results 1 – 25 of 162) sorted by relevance

1234567

/dports/games/scorched3d/scorched-dep-win32/include/wx/wx/
H A Ddynarray.h99 T& Item(size_t uiIndex) const \
100 { wxASSERT( uiIndex < m_nCount ); return m_pItems[uiIndex]; } \
101 T& operator[](size_t uiIndex) const { return Item(uiIndex); } \
108 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1); \
110 void RemoveAt(size_t uiIndex, size_t nRemove = 1); \
161 T& operator[](size_t uiIndex) const \
162 { return (T&)(base::Item(uiIndex)); } \
163 T& Item(size_t uiIndex) const \
164 { return (T&)(base::Item(uiIndex)); } \
173 void Insert(T Item, size_t uiIndex, size_t nInsert = 1) \
[all …]
H A Darrimpl.cpp66 void name::RemoveAt(size_t uiIndex, size_t nRemove) \
68 wxCHECK_RET( uiIndex < Count(), _WX_ERROR_REMOVE2(name) ); \
71 delete (T*)wxBaseArrayPtrVoid::Item(uiIndex + i); \
73 wxBaseArrayPtrVoid::RemoveAt(uiIndex, nRemove); \
88 void name::Insert(const T& item, size_t uiIndex, size_t nInsert) \
94 wxBaseArrayPtrVoid::Insert(pItem, uiIndex, nInsert); \
96 wxBaseArrayPtrVoid::Item(uiIndex + i) = new T(item); \
/dports/lang/zig/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dobjectarray.h61 UINT uiIndex,
92 UINT uiIndex,
111 #define IObjectArray_GetAt(This,uiIndex,riid,ppv) (This)->lpVtbl->GetAt(This,uiIndex,riid,ppv)
128 return This->lpVtbl->GetAt(This,uiIndex,riid,ppv);
156 UINT uiIndex) = 0;
188 UINT uiIndex,
203 UINT uiIndex);
223 #define IObjectCollection_GetAt(This,uiIndex,riid,ppv) (This)->lpVtbl->GetAt(This,uiIndex,riid,ppv)
227 #define IObjectCollection_RemoveObjectAt(This,uiIndex) (This)->lpVtbl->RemoveObjectAt(This,uiIndex)
245 return This->lpVtbl->GetAt(This,uiIndex,riid,ppv);
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/any-windows-any/
H A Dobjectarray.h61 UINT uiIndex,
92 UINT uiIndex,
111 #define IObjectArray_GetAt(This,uiIndex,riid,ppv) (This)->lpVtbl->GetAt(This,uiIndex,riid,ppv)
128 return This->lpVtbl->GetAt(This,uiIndex,riid,ppv);
156 UINT uiIndex) = 0;
188 UINT uiIndex,
203 UINT uiIndex);
223 #define IObjectCollection_GetAt(This,uiIndex,riid,ppv) (This)->lpVtbl->GetAt(This,uiIndex,riid,ppv)
227 #define IObjectCollection_RemoveObjectAt(This,uiIndex) (This)->lpVtbl->RemoveObjectAt(This,uiIndex)
245 return This->lpVtbl->GetAt(This,uiIndex,riid,ppv);
[all …]
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/include/wx/
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_nCount ); return m_pItems[uiIndex]; } \
185 T& operator[](size_t uiIndex) const { return Item(uiIndex); } \
192 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1); \
[all …]
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); \
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/include/wx/
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_nCount ); return m_pItems[uiIndex]; } \
185 T& operator[](size_t uiIndex) const { return Item(uiIndex); } \
192 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1); \
[all …]
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); \
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/include/wx/
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_nCount ); return m_pItems[uiIndex]; } \
185 T& operator[](size_t uiIndex) const { return Item(uiIndex); } \
192 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1); \
[all …]
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); \
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/include/wx/
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_nCount ); return m_pItems[uiIndex]; } \
185 T& operator[](size_t uiIndex) const { return Item(uiIndex); } \
192 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1); \
[all …]
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); \
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/include/wx/
H A Darrimpl.cpp60 void name::RemoveAt(size_t uiIndex, size_t nRemove) \
62 wxCHECK_RET( uiIndex < size(), _WX_ERROR_REMOVE2(name) ); \
65 delete (T*)base_array::operator[](uiIndex + i); \
67 base_array::erase(begin() + uiIndex, begin() + uiIndex + nRemove); \
82 void name::Insert(const T& item, size_t uiIndex, size_t nInsert) \
88 base_array::insert(begin() + uiIndex, nInsert, pItem); \
90 base_array::operator[](uiIndex + i) = new T(item); \
H A Ddynarray.h143 T& Item(size_t uiIndex) const \
144 { wxASSERT( uiIndex < size() ); return (T&)operator[](uiIndex); } \
189 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1) \
190 { insert(begin() + uiIndex, nInsert, lItem); } \
197 void RemoveAt(size_t uiIndex, size_t nRemove = 1) \
198 { erase(begin() + uiIndex, begin() + uiIndex + nRemove); } \
232 T& Item(size_t uiIndex) const \
233 { wxASSERT( uiIndex < m_nCount ); return m_pItems[uiIndex]; } \
234 T& operator[](size_t uiIndex) const { return Item(uiIndex); } \
241 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1); \
[all …]
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/include/wx/
H A Darrimpl.cpp60 void name::RemoveAt(size_t uiIndex, size_t nRemove) \
62 wxCHECK_RET( uiIndex < size(), _WX_ERROR_REMOVE2(name) ); \
65 delete (T*)base_array::operator[](uiIndex + i); \
67 base_array::erase(begin() + uiIndex, begin() + uiIndex + nRemove); \
82 void name::Insert(const T& item, size_t uiIndex, size_t nInsert) \
88 base_array::insert(begin() + uiIndex, nInsert, pItem); \
90 base_array::operator[](uiIndex + i) = new T(item); \
H A Ddynarray.h143 T& Item(size_t uiIndex) const \
144 { wxASSERT( uiIndex < size() ); return (T&)operator[](uiIndex); } \
189 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1) \
190 { insert(begin() + uiIndex, nInsert, lItem); } \
197 void RemoveAt(size_t uiIndex, size_t nRemove = 1) \
198 { erase(begin() + uiIndex, begin() + uiIndex + nRemove); } \
232 T& Item(size_t uiIndex) const \
233 { wxASSERT( uiIndex < m_nCount ); return m_pItems[uiIndex]; } \
234 T& operator[](size_t uiIndex) const { return Item(uiIndex); } \
241 void Insert(T lItem, size_t uiIndex, size_t nInsert = 1); \
[all …]
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/src/common/
H A Ddatstrm.cpp139 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoReadLL() local
141 buffer[uiIndex] = 0l; in DoReadLL()
144 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
153 for ( size_t uiIndex=0; uiIndex!=size; ++uiIndex ) in DoReadLL() local
155 buffer[uiIndex] = 0l; in DoReadLL()
157 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
173 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
175 DataType i64 = buffer[uiIndex]; in DoWriteLL()
188 for ( size_t uiIndex=0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
190 DataType i64 = buffer[uiIndex]; in DoWriteLL()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/src/common/
H A Ddatstrm.cpp139 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoReadLL() local
141 buffer[uiIndex] = 0l; in DoReadLL()
144 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
153 for ( size_t uiIndex=0; uiIndex!=size; ++uiIndex ) in DoReadLL() local
155 buffer[uiIndex] = 0l; in DoReadLL()
157 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
173 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
175 DataType i64 = buffer[uiIndex]; in DoWriteLL()
188 for ( size_t uiIndex=0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
190 DataType i64 = buffer[uiIndex]; in DoWriteLL()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/src/common/
H A Ddatstrm.cpp139 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoReadLL() local
141 buffer[uiIndex] = 0l; in DoReadLL()
144 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
153 for ( size_t uiIndex=0; uiIndex!=size; ++uiIndex ) in DoReadLL() local
155 buffer[uiIndex] = 0l; in DoReadLL()
157 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
173 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
175 DataType i64 = buffer[uiIndex]; in DoWriteLL()
188 for ( size_t uiIndex=0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
190 DataType i64 = buffer[uiIndex]; in DoWriteLL()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/src/common/
H A Ddatstrm.cpp139 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoReadLL() local
141 buffer[uiIndex] = 0l; in DoReadLL()
144 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
153 for ( size_t uiIndex=0; uiIndex!=size; ++uiIndex ) in DoReadLL() local
155 buffer[uiIndex] = 0l; in DoReadLL()
157 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
173 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
175 DataType i64 = buffer[uiIndex]; in DoWriteLL()
188 for ( size_t uiIndex=0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
190 DataType i64 = buffer[uiIndex]; in DoWriteLL()
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/common/
H A Ddatstrm.cpp212 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoReadLL() local
214 buffer[uiIndex] = 0l; in DoReadLL()
217 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
226 for ( size_t uiIndex=0; uiIndex!=size; ++uiIndex ) in DoReadLL() local
228 buffer[uiIndex] = 0l; in DoReadLL()
230 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
246 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
248 DataType i64 = buffer[uiIndex]; in DoWriteLL()
261 for ( size_t uiIndex=0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
263 DataType i64 = buffer[uiIndex]; in DoWriteLL()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/common/
H A Ddatstrm.cpp215 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoReadLL() local
217 buffer[uiIndex] = 0l; in DoReadLL()
220 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
229 for ( size_t uiIndex=0; uiIndex!=size; ++uiIndex ) in DoReadLL() local
231 buffer[uiIndex] = 0l; in DoReadLL()
233 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
249 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
251 DataType i64 = buffer[uiIndex]; in DoWriteLL()
264 for ( size_t uiIndex=0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
266 DataType i64 = buffer[uiIndex]; in DoWriteLL()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/common/
H A Ddatstrm.cpp215 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoReadLL() local
217 buffer[uiIndex] = 0l; in DoReadLL()
220 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
229 for ( size_t uiIndex=0; uiIndex!=size; ++uiIndex ) in DoReadLL() local
231 buffer[uiIndex] = 0l; in DoReadLL()
233 buffer[uiIndex] = buffer[uiIndex] * 256l + in DoReadLL()
249 for ( size_t uiIndex = 0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
251 DataType i64 = buffer[uiIndex]; in DoWriteLL()
264 for ( size_t uiIndex=0; uiIndex != size; ++uiIndex ) in DoWriteLL() local
266 DataType i64 = buffer[uiIndex]; in DoWriteLL()
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/include/wx/msw/
H A Dchecklst.h58 virtual bool IsChecked(unsigned int uiIndex) const;
59 virtual void Check(unsigned int uiIndex, bool bCheck = true);
60 virtual void Toggle(unsigned int uiIndex);
73 void SendEvent(unsigned int uiIndex) in SendEvent() argument
76 event.SetInt(uiIndex); in SendEvent()
78 event.SetString(GetString(uiIndex)); in SendEvent()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/include/wx/msw/
H A Dchecklst.h58 virtual bool IsChecked(unsigned int uiIndex) const;
59 virtual void Check(unsigned int uiIndex, bool bCheck = true);
60 virtual void Toggle(unsigned int uiIndex);
73 void SendEvent(unsigned int uiIndex) in SendEvent() argument
76 event.SetInt(uiIndex); in SendEvent()
78 event.SetString(GetString(uiIndex)); in SendEvent()

1234567