Home
last modified time | relevance | path

Searched refs:m_pNodeTail (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fxcrt/
Dfx_basic_list.cpp11 , m_pNodeTail(NULL) in CFX_PtrList()
20 CNode* pNewNode = NewNode(m_pNodeTail, NULL); in AddTail()
22 if (m_pNodeTail != NULL) { in AddTail()
23 m_pNodeTail->pNext = pNewNode; in AddTail()
27 m_pNodeTail = pNewNode; in AddTail()
37 m_pNodeTail = pNewNode; in AddHead()
53 m_pNodeTail = pNewNode; in InsertAfter()
66 if (pOldNode == m_pNodeTail) { in RemoveAt()
67 m_pNodeTail = pOldNode->pPrev; in RemoveAt()
85 m_pNodeHead = m_pNodeTail = m_pNodeFree = NULL; in RemoveAll()
/external/pdfium/core/include/fxcrt/
Dfx_basic.h1040 return (FX_POSITION)m_pNodeTail; in GetTailPosition()
1101 CNode* m_pNodeTail; variable