Searched defs:itr_ (Results 1 - 1 of 1) sorted by relevance

/external/chromium/base/
H A Dvalues.h320 explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; }
322 ++itr_;
325 const std::string& operator*() { return itr_->first; }
326 bool operator!=(const key_iterator& other) { return itr_ != other.itr_; }
327 bool operator==(const key_iterator& other) { return itr_ == other.itr_; }
330 ValueMap::const_iterator itr_; member in class:DictionaryValue::key_iterator

Completed in 39 milliseconds