Flutter Engine
The Flutter Engine
Public Member Functions | List of all members
C Class Reference
Inheritance diagram for C:
A

Public Member Functions

 C ()
 
void setValues (int v) override
 
bool checkValues (int v) override
 
- Public Member Functions inherited from A
 A ()
 
virtual void setValues (int v)
 
virtual bool checkValues (int v)
 
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.

Definition at line 97 of file GrMemoryPoolTest.cpp.

97 {
98 return fInt64 == static_cast<int64_t>(v) &&
100 }
virtual bool checkValues(int v)

◆ setValues()

void C::setValues ( int  v)
inlineoverridevirtual

Reimplemented from A.

Definition at line 93 of file GrMemoryPoolTest.cpp.

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

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