Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
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 5531 of file object.h.

Constructor & Destructor Documentation

◆ Entry() [1/3]

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

Definition at line 5532 of file object.h.

5532: raw_value_(), type_() {}

◆ Entry() [2/3]

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

Definition at line 5533 of file object.h.

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

◆ Entry() [3/3]

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

Definition at line 5535 of file object.h.

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

Member Data Documentation

◆ [union]

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

◆ obj_

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

Definition at line 5537 of file object.h.

◆ raw_value_

uword dart::ObjectPool::Entry::raw_value_

Definition at line 5538 of file object.h.

◆ type_

EntryType dart::ObjectPool::Entry::type_

Definition at line 5540 of file object.h.


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