OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CFX_BaseStack
(Results
1 - 2
of
2
) sorted by null
/external/pdfium/xfa/src/fgas/include/
fx_utl.h
28
class
CFX_BaseStack
;
394
class
CFX_BaseStack
: public CFX_Target {
396
CFX_BaseStack
(int32_t iChunkSize, int32_t iBlockSize);
397
~
CFX_BaseStack
();
407
class CFX_StackTemplate : public
CFX_BaseStack
{
410
:
CFX_BaseStack
(iChunkSize, sizeof(baseType)) {}
412
int32_t index =
CFX_BaseStack
::GetSize();
413
*(baseType*)
CFX_BaseStack
::Push() = element;
416
void Pop() {
CFX_BaseStack
::Pop(); }
418
return (baseType*)
CFX_BaseStack
::GetTopElement();
[
all
...]
/external/pdfium/xfa/src/fgas/src/crt/
fx_utils.cpp
401
CFX_BaseStack
::
CFX_BaseStack
(int32_t iChunkSize, int32_t iBlockSize) {
404
CFX_BaseStack
::~
CFX_BaseStack
() {
407
uint8_t*
CFX_BaseStack
::Push() {
410
void
CFX_BaseStack
::Pop() {
417
uint8_t*
CFX_BaseStack
::GetTopElement() const {
424
int32_t
CFX_BaseStack
::GetSize() const {
427
uint8_t*
CFX_BaseStack
::GetAt(int32_t index) const {
430
void
CFX_BaseStack
::RemoveAll(FX_BOOL bLeaveMemory) {
[
all
...]
Completed in 360 milliseconds