HomeSort by relevance Sort by last modified time
    Searched defs:key_iterator (Results 1 - 3 of 3) sorted by null

  /external/chromium/base/
values.h 317 class BASE_API key_iterator class in class:DictionaryValue
320 explicit key_iterator(ValueMap::const_iterator itr) { itr_ = itr; } function in class:DictionaryValue::key_iterator
321 key_iterator operator++() {
326 bool operator!=(const key_iterator& other) { return itr_ != other.itr_; }
327 bool operator==(const key_iterator& other) { return itr_ == other.itr_; }
333 key_iterator begin_keys() const { return key_iterator(dictionary_.begin()); }
334 key_iterator end_keys() const { return key_iterator(dictionary_.end()); }
  /external/stlport/test/eh/
test_insert.h 83 typedef typename key_list::iterator key_iterator; typedef
96 key_iterator last = EH_STD::unique( keys.begin(), keys.end() );
99 for ( key_iterator tmp = keys.begin(); tmp != last; ++tmp )
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 339 class key_iterator { class in class:clang::OnDiskChainedHashTable
347 key_iterator(const unsigned char* const Ptr, unsigned NumEntries, function in class:clang::OnDiskChainedHashTable::key_iterator
351 key_iterator() function in class:clang::OnDiskChainedHashTable::key_iterator
354 friend bool operator==(const key_iterator &X, const key_iterator &Y) {
357 friend bool operator!=(const key_iterator& X, const key_iterator &Y) {
361 key_iterator& operator++() { // Preincrement
377 key_iterator operator++(int) { // Postincrement
378 key_iterator tmp = *this; ++*this; return tmp
    [all...]

Completed in 67 milliseconds