Home
last modified time | relevance | path

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

/RvlSDK-3.1/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.1/build/demos/hio2demo/vc++/multi/
DmultiView.cpp108 int nIndex = in OnMyMessage() local
112 (MULTI_PACKET *)&(GetApp()->m_cInfoList.GetItem(nIndex)->m_stPacket) in OnMyMessage()
152 int nIndex = in OnBnClickedBtnSend() local
154 BOOL bSync = GetApp()->m_cInfoList.GetItem(nIndex)->m_bSync; in OnBnClickedBtnSend()
193 int nIndex = in OnBnClickedRadioSync() local
195 GetApp()->m_cInfoList.GetItem(nIndex)->m_bSync = FALSE; in OnBnClickedRadioSync()
200 int nIndex = in OnBnClickedRadioAsync() local
202 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.1/build/demos/hio2demo/vc++/HioIf/include/
DHio2IfHost.h94 HIO2DevicePath GetDevicePath(int nIndex) const in GetDevicePath() argument
96 ASSERT((nIndex >= 0) && (nIndex < (int)m_cDevices.size())); in GetDevicePath()
97 return m_cDevices[nIndex]; in GetDevicePath()
/RvlSDK-3.1/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()