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

Constructor & Destructor Documentation

◆ CidCount()

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

Definition at line 17184 of file object.cc.

17185 : cid(cid_), count(count_), function(f_) {}
intptr_t count
Definition object.cc:17190
intptr_t cid
Definition object.cc:17189
Function * function
Definition object.cc:17191

Member Function Documentation

◆ HighestCountFirst()

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

Definition at line 17194 of file object.cc.

17194 {
17195 if (a->count > b->count) {
17196 return -1;
17197 }
17198 return (a->count < b->count) ? 1 : 0;
17199}
static bool b
struct MyStruct a[10]

Member Data Documentation

◆ cid

intptr_t dart::CidCount::cid

Definition at line 17189 of file object.cc.

◆ count

intptr_t dart::CidCount::count

Definition at line 17190 of file object.cc.

◆ function

Function* dart::CidCount::function

Definition at line 17191 of file object.cc.


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