HomeSort by relevance Sort by last modified time
    Searched full:it_other (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/components/policy/core/common/
policy_bundle.cc 49 const_iterator it_other = other.begin(); local
52 while (it_this != end_this && it_other != end_other) {
53 if (it_this->first == it_other->first) {
55 it_this->second->MergeFrom(*it_other->second);
57 ++it_other;
58 } else if (it_this->first < it_other->first) {
61 } else if (it_other->first < it_this->first) {
63 PolicyMap*& policy = policy_bundle_[it_other->first];
65 policy = it_other->second->DeepCopy().release();
66 ++it_other;
86 const_iterator it_other = other.begin(); local
    [all...]

Completed in 89 milliseconds