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.cpp12 , m_pNodeTail(NULL) in CFX_PtrList()
21 CNode* pNewNode = NewNode(m_pNodeTail, NULL); in AddTail()
23 if (m_pNodeTail != NULL) { in AddTail()
24 m_pNodeTail->pNext = pNewNode; in AddTail()
28 m_pNodeTail = pNewNode; in AddTail()
38 m_pNodeTail = pNewNode; in AddHead()
54 m_pNodeTail = pNewNode; in InsertAfter()
67 if (pOldNode == m_pNodeTail) { in RemoveAt()
68 m_pNodeTail = pOldNode->pPrev; in RemoveAt()
86 m_pNodeHead = m_pNodeTail = m_pNodeFree = NULL; in RemoveAll()
/external/pdfium/core/include/fxcrt/
Dfx_basic.h1111 return (FX_POSITION)m_pNodeTail; in GetTailPosition()
1174 CNode* m_pNodeTail; variable