MCPcopy Create free account
hub / github.com/cztomczak/cefpython / GetNext

Method GetNext

src/include/base/cef_callback_list.h:183–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181 }
182
183 CallbackType* GetNext() {
184 while ((list_iter_ != list_->callbacks_.end()) && list_iter_->is_null())
185 ++list_iter_;
186
187 CallbackType* cb = NULL;
188 if (list_iter_ != list_->callbacks_.end()) {
189 cb = &(*list_iter_);
190 ++list_iter_;
191 }
192 return cb;
193 }
194
195 private:
196 CallbackListBase<CallbackType>* list_;

Callers 8

NotifyMethod · 0.80
NotifyMethod · 0.80
NotifyMethod · 0.80
NotifyMethod · 0.80
NotifyMethod · 0.80
NotifyMethod · 0.80
NotifyMethod · 0.80
NotifyMethod · 0.80

Calls 1

is_nullMethod · 0.45

Tested by

no test coverage detected