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

Public Member Functions

 CidCount (intptr_t cid_, intptr_t count_, Function *f_)
 

Static Public Member Functions

static int HighestCountFirst (const CidCount *a, const CidCount *b)
 

Public Attributes

intptr_t cid
 
intptr_t count
 
Functionfunction
 

Detailed Description

Definition at line 17136 of file object.cc.

Constructor & Destructor Documentation

◆ CidCount()

dart::CidCount::CidCount ( intptr_t  cid_,
intptr_t  count_,
Function f_ 
)
inline

Definition at line 17137 of file object.cc.

17138 : cid(cid_), count(count_), function(f_) {}
intptr_t count
Definition: object.cc:17143
intptr_t cid
Definition: object.cc:17142
Function * function
Definition: object.cc:17144

Member Function Documentation

◆ HighestCountFirst()

int dart::CidCount::HighestCountFirst ( const CidCount a,
const CidCount b 
)
static

Definition at line 17147 of file object.cc.

17147 {
17148 if (a->count > b->count) {
17149 return -1;
17150 }
17151 return (a->count < b->count) ? 1 : 0;
17152}
static bool b
struct MyStruct a[10]

Member Data Documentation

◆ cid

intptr_t dart::CidCount::cid

Definition at line 17142 of file object.cc.

◆ count

intptr_t dart::CidCount::count

Definition at line 17143 of file object.cc.

◆ function

Function* dart::CidCount::function

Definition at line 17144 of file object.cc.


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