Searched refs:nPos (Results 1 - 18 of 18) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/os2/
H A Dtoolbar.h75 virtual wxToolBarToolBase* InsertControl( size_t nPos
78 virtual wxToolBarToolBase* InsertSeparator(size_t nPos);
79 virtual wxToolBarToolBase* InsertTool( size_t nPos
89 wxToolBarToolBase* InsertTool( size_t nPos
99 return InsertTool( nPos
111 virtual bool DeleteToolByPos(size_t nPos);
142 virtual bool DoInsertTool( size_t nPos
145 virtual bool DoDeleteTool( size_t nPos
210 virtual wxToolBarToolBase *InsertTool (size_t nPos, wxToolBarToolBase* pTool) argument
212 return( wxToolBarBase::InsertTool( nPos
[all...]
H A Dmenu.h59 virtual wxMenuItem* DoInsert( size_t nPos
133 ,size_t nPos = (size_t)-1
207 virtual bool Insert( size_t nPos
211 virtual wxMenu* Replace( size_t nPos
215 virtual wxMenu* Remove(size_t nPos);
226 virtual void EnableTop( size_t nPos
229 virtual void SetLabelTop( size_t nPos
232 virtual wxString GetLabelTop(size_t nPos) const;
H A Dgauge.h61 void SetValue(int nPos);
H A Dslider.h98 ,int nPos
H A Dwindow.h131 ,int nPos
137 ,int nPos
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dmenu.cpp249 size_t nPos )
329 if (nPos == (size_t)-1)
335 rItem.iPosition = (SHORT)nPos;
455 size_t nPos
459 if ( wxMenuBase::DoInsert( nPos
462 ,nPos
476 size_t nPos; local
479 for (nPos = 0; node; nPos++)
829 size_t nPos
[all...]
H A Dmenuitem.cpp288 int nPos = rItems.IndexOf(this); local
290 wxCHECK_RET( nPos != wxNOT_FOUND
305 nStart = nPos;
324 if (n == nPos)
332 if (n != nPos)
H A Dtoolbar.cpp207 size_t nPos
210 bool bOk = wxToolBarBase::DeleteToolByPos(nPos);
220 size_t nPos
224 wxToolBarToolBase* pTool = wxToolBarBase::InsertControl( nPos
236 size_t nPos
239 wxToolBarToolBase* pTool = wxToolBarBase::InsertSeparator(nPos);
250 size_t nPos
261 wxToolBarToolBase* pTool = wxToolBarBase::InsertTool( nPos
279 bool wxToolBar::DoInsertTool( size_t WXUNUSED(nPos),
308 bool wxToolBar::DoDeleteTool( size_t WXUNUSED(nPos),
[all...]
H A Dgauge.cpp286 void wxGauge::SetValue( int nPos )
290 m_nGaugePos = nPos;
H A Dlistbox.cpp554 void wxListBox::DoInsertItems(const wxArrayString& asItems, unsigned int nPos) argument
556 wxCHECK_RET( IsValidInsert(nPos),
565 MPFROMLONG((LONG)(i + nPos)),
H A Dwindow.cpp704 , int nPos
709 ::WinSendMsg(m_hWndScrollBarHorz, SBM_SETPOS, (MPARAM)nPos, (MPARAM)NULL);
711 ::WinSendMsg(m_hWndScrollBarVert, SBM_SETPOS, (MPARAM)nPos, (MPARAM)NULL);
715 int nPos,
764 vInfo.posThumb = (SHORT)nPos;
824 ,(MPARAM)nPos
900 ,(MPARAM)nPos
714 SetScrollbar( int nOrient, int nPos, int nThumbVisible, int nRange, bool WXUNUSED(bRefresh) ) argument
H A Dslider.cpp1079 void wxSlider::SetTickFreq( int n, int WXUNUSED(nPos) )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dscrolbar.cpp138 position = scrollInfo.nPos;
243 info.nPos = viewStart;
260 return scrollInfo.nPos;
287 info.nPos = position;
H A Dwindow.cpp911 return scrollInfo.nPos;
965 info.nPos = pos;
988 info.nPos = pos;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dstring.h272 void InitWith(const wxChar *psz, size_t nPos = 0, size_t nLen = npos);
375 // take nLen chars starting at nPos
376 wxStringBase(const wxStringBase& str, size_t nPos, size_t nLen) argument
381 size_t strLen = str.length() - nPos; nLen = strLen < nLen ? strLen : nLen;
382 InitWith(str.c_str(), nPos, nLen);
490 wxStringBase& insert(size_t nPos, const wxStringBase& str) argument
493 return insert(nPos, str.c_str(), str.length());
496 wxStringBase& insert(size_t nPos, const wxStringBase& str, size_t nStart, size_t n) argument
502 return insert(nPos, str.c_str() + nStart, n);
505 wxStringBase& insert(size_t nPos, cons
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DLexAU3.cxx102 int nPos = 0; local
107 while ( ( (cTemp = szLine[nPos]) != '\0'))
138 nPos++; // skip to next char
476 int nPos = 0; local
479 while (!(nState == 2) && ((cTemp = s[nPos]) != '\0'))
489 nPos++;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dstring.cpp155 // takes nLength elements of psz starting at nPos
156 void wxStringBase::InitWith(const wxChar *psz, size_t nPos, size_t nLength) argument
162 wxASSERT_MSG( nPos <= wxStrlen(psz), _T("index out of bounds") );
164 nLength = wxStrlen(psz + nPos);
175 wxTmemcpy(m_pchData, psz + nPos, nLength);
421 wxStringBase& wxStringBase::insert(size_t nPos, const wxChar *sz, size_t n)
423 wxASSERT( nPos <= length() );
432 memmove(m_pchData + nPos + n, m_pchData + nPos,
433 (length() - nPos) * sizeo
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dwxstring.tex267 // take nLen chars starting at nPos
268 wxString(const wxString& str, size_t nPos, size_t nLen);
313 wxString& insert(size_t nPos, const wxString& str);
315 wxString& insert(size_t nPos, const wxString& str, size_t nStart, size_t n);
318 wxString& insert(size_t nPos, const char *sz, size_t n = npos);
320 wxString& insert(size_t nPos, size_t n, char ch);

Completed in 266 milliseconds