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

Static Public Member Functions

static bool ReportStats ()
 
static const char * Name ()
 
static bool IsMatch (const Object &a, const Object &b)
 
static uword Hash (const Object &obj)
 

Detailed Description

Definition at line 460 of file isolate_reload.cc.

Member Function Documentation

◆ Hash()

static uword dart::ScriptUrlSetTraits::Hash ( const Object obj)
inlinestatic

Definition at line 473 of file isolate_reload.cc.

473{ return String::Cast(obj).Hash(); }

◆ IsMatch()

static bool dart::ScriptUrlSetTraits::IsMatch ( const Object a,
const Object b 
)
inlinestatic

Definition at line 465 of file isolate_reload.cc.

465 {
466 if (!a.IsString() || !b.IsString()) {
467 return false;
468 }
469
470 return String::Cast(a).Equals(String::Cast(b));
471 }
static bool b
struct MyStruct a[10]

◆ Name()

static const char * dart::ScriptUrlSetTraits::Name ( )
inlinestatic

Definition at line 463 of file isolate_reload.cc.

463{ return "ScriptUrlSetTraits"; }

◆ ReportStats()

static bool dart::ScriptUrlSetTraits::ReportStats ( )
inlinestatic

Definition at line 462 of file isolate_reload.cc.

462{ return false; }

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