Searched refs:other_it (Results 1 – 6 of 6) sorted by relevance
43 auto other_it = other.bits_.begin(); in Or() local46 while (this_it != this->bits_.end() && other_it != other.bits_.end()) { in Or()47 auto temp = *this_it | *other_it; in Or()53 ++other_it; in Or()56 if (other_it != other.bits_.end()) { in Or()58 this->bits_.insert(this->bits_.end(), other_it, other.bits_.end()); in Or()
284 for (Map<MapKey, MapValueRef>::const_iterator other_it = in MergeFrom() local286 other_it != other_field.map_.end(); ++other_it) { in MergeFrom()287 Map<MapKey, MapValueRef>::iterator iter = map->find(other_it->first); in MergeFrom()290 map_val = &map_[other_it->first]; in MergeFrom()301 map_val->SetInt32Value(other_it->second.GetInt32Value()); in MergeFrom()305 map_val->SetInt64Value(other_it->second.GetInt64Value()); in MergeFrom()309 map_val->SetUInt32Value(other_it->second.GetUInt32Value()); in MergeFrom()313 map_val->SetUInt64Value(other_it->second.GetUInt64Value()); in MergeFrom()317 map_val->SetFloatValue(other_it->second.GetFloatValue()); in MergeFrom()321 map_val->SetDoubleValue(other_it->second.GetDoubleValue()); in MergeFrom()[all …]
94 auto other_it = map->find(other_name); in ParseInputs() local95 if (other_it == map->end()) { in ParseInputs()102 GenNode* other_node = other_it->second.get(); in ParseInputs()
47 ptrdiff_t operator-(const FirstTokenIterator& other_it) const { in operator -()48 return index_ - other_it.index_; in operator -()