Searched refs:nIndex (Results 1 - 10 of 10) sorted by relevance

/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/src/
H A Duniv.h23 const void *GetData(int nIndex)const;
24 void *GetData(int nIndex);
26 void Grow(int nIndex);
28 void InsertAt(int nIndex, int nCount);
29 void RemoveAt(int nIndex, int nCount);
45 void *GetAt(int nIndex)const;
46 void SetAt(int nIndex, const void *newElement);
47 void * &ElementAt(int nIndex);
51 void InsertAt(int nIndex, void *newElement, int nCount = 1);
52 void RemoveAt(int nIndex, in
[all...]
H A Dstd.h35 T GetAt(int nIndex)const {
36 return _vector[nIndex];
38 T &ElementAt(int nIndex) { argument
39 return _vector[nIndex];
42 void SetAt(int nIndex, const T &newElement) { argument
43 _vector[nIndex] = newElement;
52 void InsertAt(int nIndex, const T &newElement, int nCount = 1) { argument
53 _vector.insert(&_vector[nIndex], nCount, newElement);
56 void RemoveAt(int nIndex, int nCount = 1) { argument
57 _vector.erase(&_vector[nIndex],
[all...]
H A Duniv.cpp91 void c4_BaseArray::Grow(int nIndex) { argument
92 if (nIndex > _size)
93 SetLength(nIndex);
96 void c4_BaseArray::InsertAt(int nIndex, int nCount) { argument
99 int to = nIndex + nCount;
101 d4_memmove(GetData(to), GetData(nIndex), _size - to);
104 void c4_BaseArray::RemoveAt(int nIndex, int nCount) { argument
105 int from = nIndex + nCount;
107 d4_memmove(GetData(nIndex), GetData(from), _size - from);
122 void c4_DWordArray::InsertAt(int nIndex, t4_i3 argument
129 RemoveAt(int nIndex, int nCount) argument
143 InsertAt(int nIndex, void *newElement, int nCount) argument
150 RemoveAt(int nIndex, int nCount) argument
173 SetAt(int nIndex, const char *newElement) argument
187 InsertAt(int nIndex, const char *newElement, int nCount) argument
194 RemoveAt(int nIndex, int nCount) argument
[all...]
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSWindows/ControlPanel/
H A DBrowsingPage.cpp106 int nIndex; local
156 nIndex = m_browseListCtrl.InsertItem( m_browseListCtrl.GetItemCount(), L"");
157 m_browseListCtrl.SetItemText( nIndex, 1, subKeyName );
158 m_browseListCtrl.SetCheck( nIndex, enabled );
282 int nIndex; local
284 nIndex = m_browseListCtrl.InsertItem( m_browseListCtrl.GetItemCount(), L"");
285 m_browseListCtrl.SetItemText( nIndex, 1, dlg.m_text );
286 m_browseListCtrl.SetCheck( nIndex, 1 );
/macosx-10.9.5/mDNSResponder-522.92.1/Clients/PrinterSetupWizard/
H A DThirdPage.cpp175 int nIndex; local
187 nIndex = m_manufacturerListCtrl.FindItem(&info);
189 if (nIndex != -1)
191 m_manufacturerListCtrl.SetItemState(nIndex, LVIS_SELECTED, LVIS_SELECTED);
195 AutoScroll(m_manufacturerListCtrl, nIndex);
204 nIndex = m_modelListCtrl.FindItem(&info);
206 if (nIndex != -1)
208 m_modelListCtrl.SetItemState(nIndex, LVIS_SELECTED, LVIS_SELECTED);
209 AutoScroll( m_modelListCtrl, nIndex );
316 CThirdPage::AutoScroll( CListCtrl & list, int nIndex )
1051 int nIndex; local
1384 int nIndex; local
[all...]
H A DThirdPage.h125 void AutoScroll(CListCtrl & list, int nIndex);
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSWindows/DNSServiceBrowser/Windows/Sources/
H A DChooserDialog.h112 afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
H A DChooserDialog.cpp488 void ChooserDialog::OnInitMenuPopup( CMenu *pPopupMenu, UINT nIndex, BOOL bSysMenu ) argument
490 CDialog::OnInitMenuPopup( pPopupMenu, nIndex, bSysMenu );
492 switch( nIndex )
/macosx-10.9.5/iodbc-42.5/iodbc/iodbc/
H A Dherr.c745 get_nth_error(HERR herr, int nIndex) argument
748 while (err && err->idx != nIndex)
/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.c114216 int nIndex; /* Size of aIndex[] */ member in struct:Fts3Table
115094 int nIndex = 1; /* Number of entries in array */ local
115161 int nIndex; /* Size of aIndex[] array */ local
[all...]

Completed in 435 milliseconds