Home | History | Annotate | Download | only in fxcrt

Lines Matching refs:FX_POSITION

17 FX_POSITION CFX_PtrList::AddTail(void* newElement) {
26 return (FX_POSITION)pNewNode;
28 FX_POSITION CFX_PtrList::AddHead(void* newElement) {
37 return (FX_POSITION)pNewNode;
39 FX_POSITION CFX_PtrList::InsertAfter(FX_POSITION position, void* newElement) {
52 return (FX_POSITION)pNewNode;
54 void CFX_PtrList::RemoveAt(FX_POSITION position) {
107 FX_POSITION CFX_PtrList::FindIndex(int nIndex) const {
115 return (FX_POSITION)pNode;
117 FX_POSITION CFX_PtrList::Find(void* searchValue, FX_POSITION startAfter) const {
122 return (FX_POSITION)pNode;