Lines Matching defs:observers
20 // A container for a list of observers. Unlike a normal STL vector or list,
23 // or other observers from the list while observers are being notified.
66 // Enumeration of which observers are notified.
68 // Specifies that any observers added during notification are notified.
72 // Specifies that observers added while sending out notification are not
77 // An iterator class that can be used to access the list of observers. See
96 ListType& observers = list_.observers_;
98 size_t max_index = std::min(max_index_, observers.size());
99 while (index_ < max_index && !observers[index_])
101 return index_ < max_index ? observers[index_++] : NULL;
117 << "Observers can only be added once!";