Flutter Engine
The Flutter Engine
Public Member Functions | List of all members
D Class Reference

Inherits C.

Public Member Functions

 D ()
 
void setValues (int v) override
 
bool checkValues (int v) override
 
 ~D () override
 

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 }
#define B

◆ ~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)
inlineoverride

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)
inlineoverride

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: