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

Public Member Functions

 C ()
 
void setValues (int v) override
 
bool checkValues (int v) override
 
- 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 90 of file GrMemoryPoolTest.cpp.

Constructor & Destructor Documentation

◆ C()

C::C ( )
inline

Definition at line 92 of file GrMemoryPoolTest.cpp.

92{}

Member Function Documentation

◆ checkValues()

bool C::checkValues ( int  v)
inlineoverridevirtual

Reimplemented from A.

Reimplemented in D.

Definition at line 97 of file GrMemoryPoolTest.cpp.

97 {
98 return fInt64 == static_cast<int64_t>(v) &&
99 this->INHERITED::checkValues(v);
100 }

◆ setValues()

void C::setValues ( int  v)
inlineoverridevirtual

Reimplemented from A.

Reimplemented in D.

Definition at line 93 of file GrMemoryPoolTest.cpp.

93 {
94 fInt64 = static_cast<int64_t>(v);
95 this->INHERITED::setValues(v);
96 }

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