Flutter Engine
The Flutter Engine
Public Member Functions | Public Attributes | List of all members
dart::ObjectPool::Entry Struct Reference

#include <object.h>

Public Member Functions

 Entry ()
 
 Entry (const Object *obj)
 
 Entry (uword value, EntryType info)
 

Public Attributes

union {
   const Object *   obj_
 
   uword   raw_value_
 
}; 
 
EntryType type_
 

Detailed Description

Definition at line 5560 of file object.h.

Constructor & Destructor Documentation

◆ Entry() [1/3]

dart::ObjectPool::Entry::Entry ( )
inline

Definition at line 5561 of file object.h.

5561: raw_value_(), type_() {}

◆ Entry() [2/3]

dart::ObjectPool::Entry::Entry ( const Object obj)
inlineexplicit

Definition at line 5562 of file object.h.

5563 : obj_(obj), type_(EntryType::kTaggedObject) {}
const Object * obj_
Definition: object.h:5566

◆ Entry() [3/3]

dart::ObjectPool::Entry::Entry ( uword  value,
EntryType  info 
)
inline

Definition at line 5564 of file object.h.

5564: raw_value_(value), type_(info) {}
static void info(const char *fmt,...) SK_PRINTF_LIKE(1
Definition: DM.cpp:213
uint8_t value

Member Data Documentation

◆ 

union { ... } dart::ObjectPool::Entry::@175

◆ obj_

const Object* dart::ObjectPool::Entry::obj_

Definition at line 5566 of file object.h.

◆ raw_value_

uword dart::ObjectPool::Entry::raw_value_

Definition at line 5567 of file object.h.

◆ type_

EntryType dart::ObjectPool::Entry::type_

Definition at line 5569 of file object.h.


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