Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
dart::SlowFromTo Class Reference

Public Member Functions

 SlowFromTo (const GrowableObjectArray &storage)
 
ObjectPtr At (intptr_t index)
 
void Add (const Object &key, const Object &value)
 
intptr_t Length ()
 

Detailed Description

Definition at line 369 of file object_graph_copy.cc.

Constructor & Destructor Documentation

◆ SlowFromTo()

dart::SlowFromTo::SlowFromTo ( const GrowableObjectArray storage)
inlineexplicit

Definition at line 371 of file object_graph_copy.cc.

371: storage_(storage) {}

Member Function Documentation

◆ Add()

void dart::SlowFromTo::Add ( const Object key,
const Object value 
)
inline

Definition at line 374 of file object_graph_copy.cc.

374 {
375 storage_.Add(key);
376 storage_.Add(value);
377 }
void Add(const Object &value, Heap::Space space=Heap::kNew) const
Definition object.cc:25070

◆ At()

ObjectPtr dart::SlowFromTo::At ( intptr_t  index)
inline

Definition at line 373 of file object_graph_copy.cc.

373{ return storage_.At(index); }
ObjectPtr At(intptr_t index) const
Definition object.h:11059

◆ Length()

intptr_t dart::SlowFromTo::Length ( )
inline

Definition at line 378 of file object_graph_copy.cc.

378{ return storage_.Length(); }
intptr_t Length() const
Definition object.h:11046

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