Home | History | Annotate | Download | only in dom_storage

Lines Matching refs:values_

39   return values_.size();
43 if (index >= values_.size())
58 DOMStorageValuesMap::const_iterator found = values_.find(key);
59 if (found == values_.end())
67 DOMStorageValuesMap::const_iterator found = values_.find(key);
68 if (found == values_.end())
83 values_[key] = base::NullableString16(value, false);
92 DOMStorageValuesMap::iterator found = values_.find(key);
93 if (found == values_.end())
96 values_.erase(found);
104 values_.swap(*values);
105 bytes_used_ = CountBytes(values_);
111 copy->values_ = values_;
118 key_iterator_ = values_.begin();