Home
last modified time | relevance | path

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

/external/pdfium/xfa/fgas/crt/
Dfgas_utils.h137 class CFX_BaseStack {
139 CFX_BaseStack(int32_t iChunkSize, int32_t iBlockSize);
140 ~CFX_BaseStack();
152 class CFX_StackTemplate : public CFX_BaseStack {
155 : CFX_BaseStack(iChunkSize, sizeof(baseType)) {} in CFX_StackTemplate()
158 int32_t index = CFX_BaseStack::GetSize(); in Push()
159 *(baseType*)CFX_BaseStack::Push() = element; in Push()
162 void Pop() { CFX_BaseStack::Pop(); } in Pop()
164 return (baseType*)CFX_BaseStack::GetTopElement(); in GetTopElement()
166 int32_t GetSize() const { return CFX_BaseStack::GetSize(); } in GetSize()
[all …]
Dfgas_utils.cpp370 CFX_BaseStack::CFX_BaseStack(int32_t iChunkSize, int32_t iBlockSize) { in CFX_BaseStack() function in CFX_BaseStack
373 CFX_BaseStack::~CFX_BaseStack() { in ~CFX_BaseStack()
376 uint8_t* CFX_BaseStack::Push() { in Push()
379 void CFX_BaseStack::Pop() { in Pop()
386 uint8_t* CFX_BaseStack::GetTopElement() const { in GetTopElement()
393 int32_t CFX_BaseStack::GetSize() const { in GetSize()
396 uint8_t* CFX_BaseStack::GetAt(int32_t index) const { in GetAt()
399 void CFX_BaseStack::RemoveAll(bool bLeaveMemory) { in RemoveAll()