Home | History | Annotate | Download | only in cf

Lines Matching defs:SchedulePair

46 class SchedulePair : public RefCounted<SchedulePair> {
48 static PassRefPtr<SchedulePair> create(CFRunLoopRef runLoop, CFStringRef mode) { return adoptRef(new SchedulePair(runLoop, mode)); }
51 static PassRefPtr<SchedulePair> create(NSRunLoop* runLoop, CFStringRef mode) { return adoptRef(new SchedulePair(runLoop, mode)); }
58 bool operator==(const SchedulePair& other) const;
61 SchedulePair(CFRunLoopRef, CFStringRef);
64 SchedulePair(NSRunLoop*, CFStringRef);
73 static unsigned hash(const RefPtr<SchedulePair>& pair)
79 static bool equal(const RefPtr<SchedulePair>& a, const RefPtr<SchedulePair>& b) { return a == b; }
84 typedef HashSet<RefPtr<SchedulePair>, SchedulePairHash> SchedulePairHashSet;