Home
last modified time | relevance | path

Searched refs:nIndex (Results 1 – 5 of 5) sorted by relevance

/RvlSDK-3.3/include/win32/
Dmytl.h35 T GetItem(int nIndex) in GetItem() argument
37 assert((nIndex >= 0) && (nIndex < GetCount())); in GetItem()
38 return at(nIndex); in GetItem()
70 void Remove(int nIndex, BOOL bDelItem=TRUE)
72 assert((nIndex >= 0) && (nIndex < GetCount()));
73 if ( bDelItem ) delete at(nIndex);
74 erase(begin() + nIndex);
80 int nIndex = IndexOf(pItem); variable
81 assert(nIndex != -1);
82 if ( bDelItem ) delete at(nIndex);
[all …]
/RvlSDK-3.3/build/demos/hio2demo/vc++/multi/
DmultiView.cpp108 int nIndex = in OnMyMessage() local
117 (MULTI_PACKET *)&(GetApp()->m_cInfoList.GetItem(nIndex)->m_stPacket) in OnMyMessage()
158 int nIndex = in OnBnClickedBtnSend() local
160 BOOL bSync = GetApp()->m_cInfoList.GetItem(nIndex)->m_bSync; in OnBnClickedBtnSend()
199 int nIndex = in OnBnClickedRadioSync() local
201 GetApp()->m_cInfoList.GetItem(nIndex)->m_bSync = FALSE; in OnBnClickedRadioSync()
206 int nIndex = in OnBnClickedRadioAsync() local
208 GetApp()->m_cInfoList.GetItem(nIndex)->m_bSync = TRUE; in OnBnClickedRadioAsync()
Dmulti.cpp76 int nIndex = in HioIfEventCallback() local
78 CMultiApp::LPAPPINFO pInfo = pApp->m_cInfoList.GetItem(nIndex); in HioIfEventCallback()
280 int nIndex = m_cInfoList.IndexOf((LPVOID)id, MultiCompID); in Connect() local
281 LPAPPINFO pInfo = m_cInfoList.GetItem(nIndex); in Connect()
/RvlSDK-3.3/build/demos/hio2demo/vc++/HioIf/include/
DHio2IfHost.h96 HIO2DevicePath GetDevicePath(int nIndex) const in GetDevicePath() argument
98 ASSERT((nIndex >= 0) && (nIndex < (int)m_cDevices.size())); in GetDevicePath()
99 return m_cDevices[nIndex]; in GetDevicePath()
/RvlSDK-3.3/build/demos/hio2demo/vc++/HioIf/src/
DHio2IfHost.cpp254 int nIndex, nPcChan = 0; in Open() local
274 nIndex = m_cHioStatus.IndexOf((LPVOID)pathName, Hio2IfCompPcChan); in Open()
275 if ( nIndex != -1 ) in Open()
277 pStatus = m_cHioStatus[nIndex]; in Open()
287 if ( nIndex != -1 ) in Open()
288 id = nIndex; in Open()