Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
D Class Reference
Inheritance diagram for D:
C A

Public Member Functions

 D ()
 
void setValues (int v) override
 
bool checkValues (int v) override
 
 ~D () override
 
- Public Member Functions inherited from C
 C ()
 
- Public Member Functions inherited from A
 A ()
 
virtual ~A ()
 
void * operator new (size_t size)
 
void operator delete (void *p)
 

Additional Inherited Members

- Static Public Member Functions inherited from A
static ACreate (SkRandom *r)
 
static void SetAllocator (size_t preallocSize, size_t minAllocSize)
 
static void ResetAllocator ()
 
static void ValidatePool ()
 

Detailed Description

Definition at line 109 of file GrMemoryPoolTest.cpp.

Constructor & Destructor Documentation

◆ D()

D::D ( )
inline

Definition at line 111 of file GrMemoryPoolTest.cpp.

111 {
112 fB = new B();
113 }

◆ ~D()

D::~D ( )
inlineoverride

Definition at line 124 of file GrMemoryPoolTest.cpp.

124 {
125 delete fB;
126 }

Member Function Documentation

◆ checkValues()

bool D::checkValues ( int  v)
inlineoverridevirtual

Reimplemented from C.

Definition at line 119 of file GrMemoryPoolTest.cpp.

119 {
120 return fVoidStar == reinterpret_cast<void*>(static_cast<intptr_t>(v)) &&
121 fB->checkValues(v) &&
122 this->INHERITED::checkValues(v);
123 }
bool checkValues(int v) override
bool checkValues(int v) override

◆ setValues()

void D::setValues ( int  v)
inlineoverridevirtual

Reimplemented from C.

Definition at line 114 of file GrMemoryPoolTest.cpp.

114 {
115 fVoidStar = reinterpret_cast<void*>(static_cast<intptr_t>(v));
116 this->INHERITED::setValues(v);
117 fB->setValues(v);
118 }
void setValues(int v) override
void setValues(int v) override

The documentation for this class was generated from the following file: