other              33 ash/ime/input_method_menu_item.cc bool InputMethodMenuItem::operator==(const InputMethodMenuItem& other) const {
other              34 ash/ime/input_method_menu_item.cc   return key == other.key &&
other              35 ash/ime/input_method_menu_item.cc       label == other.label &&
other              36 ash/ime/input_method_menu_item.cc       is_selection_item == other.is_selection_item &&
other              37 ash/ime/input_method_menu_item.cc       is_selection_item_checked == other.is_selection_item_checked;
other              40 ash/ime/input_method_menu_item.cc bool InputMethodMenuItem::operator!=(const InputMethodMenuItem& other) const {
other              41 ash/ime/input_method_menu_item.cc   return !(*this == other);
other              25 ash/ime/input_method_menu_item.h   bool operator==(const InputMethodMenuItem& other) const;
other              26 ash/ime/input_method_menu_item.h   bool operator!=(const InputMethodMenuItem& other) const;
other             256 ash/shelf/shelf_layout_manager.h     bool Equals(const State& other) const {
other             257 ash/shelf/shelf_layout_manager.h       return other.visibility_state == visibility_state &&
other             259 ash/shelf/shelf_layout_manager.h            other.auto_hide_state == auto_hide_state) &&
other             260 ash/shelf/shelf_layout_manager.h           other.window_state == window_state &&
other             261 ash/shelf/shelf_layout_manager.h           other.is_screen_locked == is_screen_locked;
other             337 ash/wm/dock/docked_window_layout_manager.cc   bool compare_bounds(const gfx::Rect dragged, const gfx::Rect other) {
other             338 ash/wm/dock/docked_window_layout_manager.cc     if (dragged.CenterPoint().y() < other.CenterPoint().y())
other             339 ash/wm/dock/docked_window_layout_manager.cc       return dragged.CenterPoint().y() < other.y() - delta_;
other             340 ash/wm/dock/docked_window_layout_manager.cc     return dragged.CenterPoint().y() < other.bottom() + delta_;
other              50 ash/wm/maximize_mode/maximize_mode_controller.cc                                  const gfx::Vector3dF& other) {
other              51 ash/wm/maximize_mode/maximize_mode_controller.cc   return acos(gfx::DotProduct(base, other) /
other              52 ash/wm/maximize_mode/maximize_mode_controller.cc               base.Length() / other.Length()) * kRadiansToDegrees;
other              58 ash/wm/maximize_mode/maximize_mode_controller.cc                                             const gfx::Vector3dF& other,
other              60 ash/wm/maximize_mode/maximize_mode_controller.cc   float angle = AngleBetweenVectorsInDegrees(base, other);
other              62 ash/wm/maximize_mode/maximize_mode_controller.cc   cross.Cross(other);
other             142 ash/wm/workspace/multi_window_resize_controller.cc     const ResizeWindows& other) const {
other             143 ash/wm/workspace/multi_window_resize_controller.cc   return window1 == other.window1 &&
other             144 ash/wm/workspace/multi_window_resize_controller.cc       window2 == other.window2 &&
other             145 ash/wm/workspace/multi_window_resize_controller.cc       direction == other.direction;
other             325 ash/wm/workspace/multi_window_resize_controller.cc     Window* other = *i;
other             326 ash/wm/workspace/multi_window_resize_controller.cc     if (other == window || !other->IsVisible())
other             330 ash/wm/workspace/multi_window_resize_controller.cc         if (other->bounds().y() == bottom &&
other             331 ash/wm/workspace/multi_window_resize_controller.cc             Intersects(other->bounds().x(), other->bounds().right(),
other             333 ash/wm/workspace/multi_window_resize_controller.cc           return other;
other             337 ash/wm/workspace/multi_window_resize_controller.cc         if (other->bounds().x() == right &&
other             338 ash/wm/workspace/multi_window_resize_controller.cc             Intersects(other->bounds().y(), other->bounds().bottom(),
other             340 ash/wm/workspace/multi_window_resize_controller.cc           return other;
other              68 ash/wm/workspace/multi_window_resize_controller.h     bool Equals(const ResizeWindows& other) const;
other              58 base/android/jni_helper.cc void JavaObjectWeakGlobalRef::Assign(const JavaObjectWeakGlobalRef& other) {
other              59 base/android/jni_helper.cc   if (&other == this)
other              66 base/android/jni_helper.cc   obj_ = other.obj_ ? env->NewWeakGlobalRef(other.obj_) : NULL;
other              89 base/android/scoped_java_ref.h   ScopedJavaLocalRef(const ScopedJavaLocalRef<T>& other)
other              90 base/android/scoped_java_ref.h       : env_(other.env_) {
other              91 base/android/scoped_java_ref.h     this->SetNewLocalRef(env_, other.obj());
other              95 base/android/scoped_java_ref.h   explicit ScopedJavaLocalRef(const U& other)
other              97 base/android/scoped_java_ref.h     this->Reset(other);
other             110 base/android/scoped_java_ref.h   void operator=(const ScopedJavaLocalRef<T>& other) {
other             111 base/android/scoped_java_ref.h     this->Reset(other);
other             119 base/android/scoped_java_ref.h   void Reset(const ScopedJavaLocalRef<U>& other) {
other             123 base/android/scoped_java_ref.h     this->Reset(other.env_, other.obj());
other             127 base/android/scoped_java_ref.h   void Reset(const U& other) {
other             130 base/android/scoped_java_ref.h     this->Reset(env_, other.obj());
other             160 base/android/scoped_java_ref.h   explicit ScopedJavaGlobalRef(const ScopedJavaGlobalRef<T>& other) {
other             161 base/android/scoped_java_ref.h     this->Reset(other);
other             165 base/android/scoped_java_ref.h   explicit ScopedJavaGlobalRef(const U& other) {
other             166 base/android/scoped_java_ref.h     this->Reset(other);
other             178 base/android/scoped_java_ref.h   void Reset(const U& other) {
other             179 base/android/scoped_java_ref.h     this->Reset(NULL, other.obj());
other             337 base/bind_helpers.h   OwnedWrapper(const OwnedWrapper& other) {
other             338 base/bind_helpers.h     ptr_ = other.ptr_;
other             339 base/bind_helpers.h     other.ptr_ = NULL;
other             371 base/bind_helpers.h   PassedWrapper(const PassedWrapper& other)
other             372 base/bind_helpers.h       : is_valid_(other.is_valid_), scoper_(other.scoper_.Pass()) {
other             102 base/bind_unittest.cc   CopyCounter(const CopyCounter& other)
other             103 base/bind_unittest.cc       : copies_(other.copies_),
other             104 base/bind_unittest.cc         assigns_(other.assigns_) {
other             109 base/bind_unittest.cc   explicit CopyCounter(const DerivedCopyCounter& other)
other             110 base/bind_unittest.cc       : copies_(other.copies_),
other             111 base/bind_unittest.cc         assigns_(other.assigns_) {
other             393 base/callback.h   bool Equals(const Callback& other) const {
other             394 base/callback.h     return CallbackBase::Equals(other);
other             433 base/callback.h   bool Equals(const Callback& other) const {
other             434 base/callback.h     return CallbackBase::Equals(other);
other             474 base/callback.h   bool Equals(const Callback& other) const {
other             475 base/callback.h     return CallbackBase::Equals(other);
other             518 base/callback.h   bool Equals(const Callback& other) const {
other             519 base/callback.h     return CallbackBase::Equals(other);
other             565 base/callback.h   bool Equals(const Callback& other) const {
other             566 base/callback.h     return CallbackBase::Equals(other);
other             616 base/callback.h   bool Equals(const Callback& other) const {
other             617 base/callback.h     return CallbackBase::Equals(other);
other             670 base/callback.h   bool Equals(const Callback& other) const {
other             671 base/callback.h     return CallbackBase::Equals(other);
other             727 base/callback.h   bool Equals(const Callback& other) const {
other             728 base/callback.h     return CallbackBase::Equals(other);
other              23 base/callback_internal.cc bool CallbackBase::Equals(const CallbackBase& other) const {
other              24 base/callback_internal.cc   return bind_state_.get() == other.bind_state_.get() &&
other              25 base/callback_internal.cc          polymorphic_invoke_ == other.polymorphic_invoke_;
other              53 base/callback_internal.h   bool Equals(const CallbackBase& other) const;
other             405 base/command_line.cc void CommandLine::AppendArguments(const CommandLine& other,
other             408 base/command_line.cc     SetProgram(other.GetProgram());
other             409 base/command_line.cc   AppendSwitchesAndArguments(*this, other.argv());
other             156 base/command_line.h   void AppendArguments(const CommandLine& other, bool include_program);
other              22 base/containers/mru_cache_unittest.cc   explicit CachedItem(const CachedItem& other) : value(other.value) {
other              37 base/containers/scoped_ptr_hash_map.h   void swap(ScopedPtrHashMap<Key, Value>& other) {
other              38 base/containers/scoped_ptr_hash_map.h     data_.swap(other.data_);
other             276 base/containers/small_map.h     inline bool operator==(const iterator& other) const {
other             278 base/containers/small_map.h         return array_iter_ == other.array_iter_;
other             280 base/containers/small_map.h         return other.array_iter_ == NULL && hash_iter_ == other.hash_iter_;
other             284 base/containers/small_map.h     inline bool operator!=(const iterator& other) const {
other             285 base/containers/small_map.h       return !(*this == other);
other             288 base/containers/small_map.h     bool operator==(const const_iterator& other) const;
other             289 base/containers/small_map.h     bool operator!=(const const_iterator& other) const;
other             314 base/containers/small_map.h     inline const_iterator(const iterator& other)
other             315 base/containers/small_map.h       : array_iter_(other.array_iter_), hash_iter_(other.hash_iter_) {}
other             361 base/containers/small_map.h     inline bool operator==(const const_iterator& other) const {
other             363 base/containers/small_map.h         return array_iter_ == other.array_iter_;
other             365 base/containers/small_map.h         return other.array_iter_ == NULL && hash_iter_ == other.hash_iter_;
other             369 base/containers/small_map.h     inline bool operator!=(const const_iterator& other) const {
other             370 base/containers/small_map.h       return !(*this == other);
other             639 base/containers/small_map.h     const const_iterator& other) const {
other             640 base/containers/small_map.h   return other == *this;
other             646 base/containers/small_map.h     const const_iterator& other) const {
other             647 base/containers/small_map.h   return other != *this;
other              89 base/containers/stack_container.h   StackAllocator(const StackAllocator<U, other_capacity>& other)
other             235 base/containers/stack_container.h   StackVector(const StackVector<T, stack_capacity>& other)
other             239 base/containers/stack_container.h     this->container().assign(other->begin(), other->end());
other             243 base/containers/stack_container.h       const StackVector<T, stack_capacity>& other) {
other             244 base/containers/stack_container.h     this->container().assign(other->begin(), other->end());
other              70 base/containers/stack_container_unittest.cc   std::vector<int, StackAllocator<int, stack_size> > other(vect.container());
other              71 base/containers/stack_container_unittest.cc   EXPECT_EQ(stack_buffer, &other.front());
other              74 base/containers/stack_container_unittest.cc     EXPECT_EQ(i, other[i]);
other             503 base/debug/trace_event_impl.cc void TraceEvent::CopyFrom(const TraceEvent& other) {
other             504 base/debug/trace_event_impl.cc   timestamp_ = other.timestamp_;
other             505 base/debug/trace_event_impl.cc   thread_timestamp_ = other.thread_timestamp_;
other             506 base/debug/trace_event_impl.cc   duration_ = other.duration_;
other             507 base/debug/trace_event_impl.cc   id_ = other.id_;
other             508 base/debug/trace_event_impl.cc   category_group_enabled_ = other.category_group_enabled_;
other             509 base/debug/trace_event_impl.cc   name_ = other.name_;
other             510 base/debug/trace_event_impl.cc   thread_id_ = other.thread_id_;
other             511 base/debug/trace_event_impl.cc   phase_ = other.phase_;
other             512 base/debug/trace_event_impl.cc   flags_ = other.flags_;
other             513 base/debug/trace_event_impl.cc   parameter_copy_storage_ = other.parameter_copy_storage_;
other             516 base/debug/trace_event_impl.cc     arg_names_[i] = other.arg_names_[i];
other             517 base/debug/trace_event_impl.cc     arg_types_[i] = other.arg_types_[i];
other             518 base/debug/trace_event_impl.cc     arg_values_[i] = other.arg_values_[i];
other             519 base/debug/trace_event_impl.cc     convertable_values_[i] = other.convertable_values_[i];
other             106 base/debug/trace_event_impl.h   void CopyFrom(const TraceEvent& other);
other              28 base/file_descriptor_posix.h   bool operator==(const FileDescriptor& other) const {
other              29 base/file_descriptor_posix.h     return (fd == other.fd && auto_close == other.auto_close);
other              32 base/file_descriptor_posix.h   bool operator!=(const FileDescriptor& other) const {
other              33 base/file_descriptor_posix.h     return !operator==(other);
other              37 base/file_descriptor_posix.h   bool operator<(const FileDescriptor& other) const {
other              38 base/file_descriptor_posix.h     return other.fd < fd;
other              55 base/files/file.cc File::File(RValue other)
other              56 base/files/file.cc     : file_(other.object->TakePlatformFile()),
other              57 base/files/file.cc       error_details_(other.object->error_details()),
other              58 base/files/file.cc       created_(other.object->created()),
other              59 base/files/file.cc       async_(other.object->async_) {
other              65 base/files/file.cc File& File::operator=(RValue other) {
other              66 base/files/file.cc   if (this != other.object) {
other              68 base/files/file.cc     SetPlatformFile(other.object->TakePlatformFile());
other              69 base/files/file.cc     error_details_ = other.object->error_details();
other              70 base/files/file.cc     created_ = other.object->created();
other              71 base/files/file.cc     async_ = other.object->async_;
other             169 base/files/file.h   File(RValue other);
other             174 base/files/file.h   File& operator=(RValue other);
other              40 base/json/json_parser.cc   virtual void Swap(DictionaryValue* other) OVERRIDE {
other              46 base/json/json_parser.cc     copy->Swap(other);
other              90 base/json/json_parser.cc   virtual void Swap(ListValue* other) OVERRIDE {
other              96 base/json/json_parser.cc     copy->Swap(other);
other             151 base/json/json_parser.cc   virtual bool Equals(const Value* other) const OVERRIDE {
other             153 base/json/json_parser.cc     return other->IsType(TYPE_STRING) && other->GetAsString(&other_string) &&
other             290 base/json/json_parser.cc void JSONParser::StringBuilder::Swap(StringBuilder* other) {
other             291 base/json/json_parser.cc   std::swap(other->string_, string_);
other             292 base/json/json_parser.cc   std::swap(other->pos_, pos_);
other             293 base/json/json_parser.cc   std::swap(other->length_, length_);
other             108 base/json/json_parser.h     void Swap(StringBuilder* other);
other              36 base/location.h   bool operator < (const Location& other) const {
other              37 base/location.h     if (line_number_ != other.line_number_)
other              38 base/location.h       return line_number_ < other.line_number_;
other              39 base/location.h     if (file_name_ != other.file_name_)
other              40 base/location.h       return file_name_ < other.file_name_;
other              41 base/location.h     return function_name_ < other.function_name_;
other             267 base/memory/discardable_memory_allocator_android.cc     bool operator<(const FreeChunk& other) const {
other             268 base/memory/discardable_memory_allocator_android.cc       return size < other.size;
other              14 base/memory/ref_counted_memory.cc     const scoped_refptr<RefCountedMemory>& other) const {
other              15 base/memory/ref_counted_memory.cc   return other.get() &&
other              16 base/memory/ref_counted_memory.cc          size() == other->size() &&
other              17 base/memory/ref_counted_memory.cc          (memcmp(front(), other->front(), size()) == 0);
other              31 base/memory/ref_counted_memory.h   bool Equals(const scoped_refptr<RefCountedMemory>& other) const;
other             117 base/memory/scoped_ptr.h   template <typename U> DefaultDeleter(const DefaultDeleter<U>& other) {
other             200 base/memory/scoped_ptr.h   scoped_ptr_impl(scoped_ptr_impl<U, V>* other)
other             201 base/memory/scoped_ptr.h       : data_(other->release(), other->get_deleter()) {
other             209 base/memory/scoped_ptr.h   void TakeState(scoped_ptr_impl<U, V>* other) {
other             212 base/memory/scoped_ptr.h     reset(other->release());
other             213 base/memory/scoped_ptr.h     get_deleter() = other->get_deleter();
other             280 base/memory/scoped_ptr.h     Data(T* ptr_in, const D& other) : D(other), ptr(ptr_in) {}
other             341 base/memory/scoped_ptr.h   scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
other              38 base/memory/scoped_vector.h   ScopedVector(RValue other) { swap(*other.object); }
other              76 base/memory/scoped_vector.h   void swap(std::vector<T*>& other) { v_.swap(other); }
other              77 base/memory/scoped_vector.h   void swap(ScopedVector<T>& other) { v_.swap(other.v_); }
other             200 base/memory/weak_ptr.h   WeakPtr(const WeakPtr<U>& other) : WeakPtrBase(other), ptr_(other.ptr_) {
other              78 base/memory/weak_ptr_unittest.cc   void CreateArrowFromArrow(Arrow** arrow, const Arrow* other) {
other              83 base/memory/weak_ptr_unittest.cc                    arrow, other, &completion));
other             133 base/memory/weak_ptr_unittest.cc                                      const Arrow* other,
other             136 base/memory/weak_ptr_unittest.cc     **arrow = *other;
other             398 base/message_loop/message_loop_test.cc   bool operator == (const TaskItem& other) const {
other             399 base/message_loop/message_loop_test.cc     return type == other.type && cookie == other.cookie && start == other.start;
other             172 base/message_loop/message_loop_unittest.cc   bool operator == (const TaskItem& other) const {
other             173 base/message_loop/message_loop_unittest.cc     return type == other.type && cookie == other.cookie && start == other.start;
other             127 base/metrics/bucket_ranges.cc bool BucketRanges::Equals(const BucketRanges* other) const {
other             128 base/metrics/bucket_ranges.cc   if (checksum_ != other->checksum_)
other             130 base/metrics/bucket_ranges.cc   if (ranges_.size() != other->ranges_.size())
other             133 base/metrics/bucket_ranges.cc     if (ranges_[index] != other->ranges_[index])
other              55 base/metrics/bucket_ranges.h   bool Equals(const BucketRanges* other) const;
other              65 base/metrics/histogram_samples.cc void HistogramSamples::Add(const HistogramSamples& other) {
other              66 base/metrics/histogram_samples.cc   sum_ += other.sum();
other              70 base/metrics/histogram_samples.cc       old_redundant_count + other.redundant_count());
other              71 base/metrics/histogram_samples.cc   bool success = AddSubtractImpl(other.Iterator().get(), ADD);
other              91 base/metrics/histogram_samples.cc void HistogramSamples::Subtract(const HistogramSamples& other) {
other              92 base/metrics/histogram_samples.cc   sum_ -= other.sum();
other              96 base/metrics/histogram_samples.cc                           old_redundant_count - other.redundant_count());
other              97 base/metrics/histogram_samples.cc   bool success = AddSubtractImpl(other.Iterator().get(), SUBTRACT);
other              30 base/metrics/histogram_samples.h   virtual void Add(const HistogramSamples& other);
other              35 base/metrics/histogram_samples.h   virtual void Subtract(const HistogramSamples& other);
other              40 base/pending_task.cc bool PendingTask::operator<(const PendingTask& other) const {
other              45 base/pending_task.cc   if (delayed_run_time < other.delayed_run_time)
other              48 base/pending_task.cc   if (delayed_run_time > other.delayed_run_time)
other              53 base/pending_task.cc   return (sequence_num - other.sequence_num) > 0;
other              33 base/pending_task.h   bool operator<(const PendingTask& other) const;
other             203 base/pickle.cc Pickle::Pickle(const Pickle& other)
other             205 base/pickle.cc       header_size_(other.header_size_),
other             207 base/pickle.cc       write_offset_(other.write_offset_) {
other             208 base/pickle.cc   size_t payload_size = header_size_ + other.header_->payload_size;
other             210 base/pickle.cc   memcpy(header_, other.header_, payload_size);
other             218 base/pickle.cc Pickle& Pickle::operator=(const Pickle& other) {
other             219 base/pickle.cc   if (this == &other) {
other             227 base/pickle.cc   if (header_size_ != other.header_size_) {
other             230 base/pickle.cc     header_size_ = other.header_size_;
other             232 base/pickle.cc   Resize(other.header_->payload_size);
other             233 base/pickle.cc   memcpy(header_, other.header_,
other             234 base/pickle.cc          other.header_size_ + other.header_->payload_size);
other             235 base/pickle.cc   write_offset_ = other.write_offset_;
other             120 base/pickle.h    Pickle(const Pickle& other);
other             130 base/pickle.h    Pickle& operator=(const Pickle& other);
other              30 base/posix/file_descriptor_shuffle_unittest.cc   bool operator==(const Action& other) const {
other              31 base/posix/file_descriptor_shuffle_unittest.cc     return other.type == type &&
other              32 base/posix/file_descriptor_shuffle_unittest.cc            other.fd1 == fd1 &&
other              33 base/posix/file_descriptor_shuffle_unittest.cc            other.fd2 == fd2;
other              73 base/prefs/pref_value_map.cc void PrefValueMap::Swap(PrefValueMap* other) {
other              74 base/prefs/pref_value_map.cc   prefs_.swap(other->prefs_);
other             124 base/prefs/pref_value_map.cc     const PrefValueMap* other,
other             130 base/prefs/pref_value_map.cc   Map::const_iterator other_pref(other->prefs_.begin());
other             131 base/prefs/pref_value_map.cc   while (this_pref != prefs_.end() && other_pref != other->prefs_.end()) {
other             150 base/prefs/pref_value_map.cc   for ( ; other_pref != other->prefs_.end(); ++other_pref)
other              46 base/prefs/pref_value_map.h   void Swap(PrefValueMap* other);
other              77 base/prefs/pref_value_map.h   void GetDifferingKeys(const PrefValueMap* other,
other              18 base/profiler/tracked_time.cc Duration& Duration::operator+=(const Duration& other) {
other              19 base/profiler/tracked_time.cc   ms_ += other.ms_;
other              23 base/profiler/tracked_time.cc Duration Duration::operator+(const Duration& other) const {
other              24 base/profiler/tracked_time.cc   return Duration(ms_ + other.ms_);
other              27 base/profiler/tracked_time.cc bool Duration::operator==(const Duration& other) const {
other              28 base/profiler/tracked_time.cc   return ms_ == other.ms_;
other              31 base/profiler/tracked_time.cc bool Duration::operator!=(const Duration& other) const {
other              32 base/profiler/tracked_time.cc   return ms_ != other.ms_;
other              35 base/profiler/tracked_time.cc bool Duration::operator>(const Duration& other) const {
other              36 base/profiler/tracked_time.cc   return ms_ > other.ms_;
other              65 base/profiler/tracked_time.cc Duration TrackedTime::operator-(const TrackedTime& other) const {
other              66 base/profiler/tracked_time.cc   return Duration(ms_ - other.ms_);
other              69 base/profiler/tracked_time.cc TrackedTime TrackedTime::operator+(const Duration& other) const {
other              70 base/profiler/tracked_time.cc   return TrackedTime(ms_ + other.ms_);
other              30 base/profiler/tracked_time.h   Duration& operator+=(const Duration& other);
other              31 base/profiler/tracked_time.h   Duration operator+(const Duration& other) const;
other              33 base/profiler/tracked_time.h   bool operator==(const Duration& other) const;
other              34 base/profiler/tracked_time.h   bool operator!=(const Duration& other) const;
other              35 base/profiler/tracked_time.h   bool operator>(const Duration& other) const;
other              55 base/profiler/tracked_time.h   Duration operator-(const TrackedTime& other) const;
other              56 base/profiler/tracked_time.h   TrackedTime operator+(const Duration& other) const;
other              65 base/scoped_generic.h     Data(const T& in, const Traits& other) : Traits(other), generic(in) {}
other             103 base/scoped_generic.h   void swap(ScopedGeneric& other) {
other             108 base/scoped_generic.h     swap(static_cast<Traits&>(data_), static_cast<Traits&>(other.data_));
other             109 base/scoped_generic.h     swap(data_.generic, other.data_.generic);
other             154 base/synchronization/condition_variable_win.cc     void PushBack(Event* other);
other             169 base/synchronization/condition_variable_win.cc     bool ValidateAsDistinct(Event* other) const;
other             398 base/synchronization/condition_variable_win.cc void WinXPCondVar::Event::PushBack(Event* other) {
other             400 base/synchronization/condition_variable_win.cc   DCHECK(other->ValidateAsItem());
other             401 base/synchronization/condition_variable_win.cc   DCHECK(other->IsSingleton());
other             403 base/synchronization/condition_variable_win.cc   other->prev_ = prev_;
other             404 base/synchronization/condition_variable_win.cc   other->next_ = this;
other             406 base/synchronization/condition_variable_win.cc   prev_->next_ = other;
other             407 base/synchronization/condition_variable_win.cc   prev_ = other;
other             408 base/synchronization/condition_variable_win.cc   DCHECK(ValidateAsDistinct(other));
other             451 base/synchronization/condition_variable_win.cc bool WinXPCondVar::Event::ValidateAsDistinct(Event* other) const {
other             452 base/synchronization/condition_variable_win.cc   return ValidateLinks() && other->ValidateLinks() && (this != other);
other              27 base/test/test_pending_task.cc bool TestPendingTask::ShouldRunBefore(const TestPendingTask& other) const {
other              28 base/test/test_pending_task.cc   if (nestability != other.nestability)
other              30 base/test/test_pending_task.cc   return GetTimeToRun() < other.GetTimeToRun();
other              47 base/test/test_pending_task.h   bool ShouldRunBefore(const TestPendingTask& other) const;
other             771 base/test/trace_event_analyzer.cc     const TraceEvent* other = raw_events_[i].other_event;
other             775 base/test/trace_event_analyzer.cc     while (other && encounters.find(other) == encounters.end()) {
other             776 base/test/trace_event_analyzer.cc       encounters.insert(other);
other             778 base/test/trace_event_analyzer.cc           other->arg_numbers.begin(),
other             779 base/test/trace_event_analyzer.cc           other->arg_numbers.end());
other             781 base/test/trace_event_analyzer.cc           other->arg_strings.begin(),
other             782 base/test/trace_event_analyzer.cc           other->arg_strings.end());
other             783 base/test/trace_event_analyzer.cc       other = other->other_event;
other             128 base/test/trace_event_analyzer_unittest.cc   TraceEvent other;
other             129 base/test/trace_event_analyzer_unittest.cc   other.thread.process_id = 5;
other             130 base/test/trace_event_analyzer_unittest.cc   other.thread.thread_id = 6;
other             131 base/test/trace_event_analyzer_unittest.cc   other.timestamp = 2.5;
other             132 base/test/trace_event_analyzer_unittest.cc   other.phase = TRACE_EVENT_PHASE_END;
other             133 base/test/trace_event_analyzer_unittest.cc   other.category = "category2";
other             134 base/test/trace_event_analyzer_unittest.cc   other.name = "name2";
other             135 base/test/trace_event_analyzer_unittest.cc   other.id = "2";
other             136 base/test/trace_event_analyzer_unittest.cc   other.arg_numbers["num2"] = 8.0;
other             137 base/test/trace_event_analyzer_unittest.cc   other.arg_strings["str2"] = "the string 2";
other             139 base/test/trace_event_analyzer_unittest.cc   event.other_event = &other;
other             158 base/test/trace_event_analyzer_unittest.cc   Query other_pid = Query::OtherPidIs(other.thread.process_id);
other             159 base/test/trace_event_analyzer_unittest.cc   Query other_tid = Query::OtherTidIs(other.thread.thread_id);
other             160 base/test/trace_event_analyzer_unittest.cc   Query other_time = Query::OtherTimeIs(other.timestamp);
other             161 base/test/trace_event_analyzer_unittest.cc   Query other_phase = Query::OtherPhaseIs(other.phase);
other             162 base/test/trace_event_analyzer_unittest.cc   Query other_category = Query::OtherCategoryIs(other.category);
other             163 base/test/trace_event_analyzer_unittest.cc   Query other_name = Query::OtherNameIs(other.name);
other             164 base/test/trace_event_analyzer_unittest.cc   Query other_id = Query::OtherIdIs(other.id);
other             168 base/test/trace_event_analyzer_unittest.cc       (Query::OtherArg("num2") == Query::Double(other.arg_numbers["num2"]));
other             170 base/test/trace_event_analyzer_unittest.cc       (Query::OtherArg("str2") == Query::String(other.arg_strings["str2"]));
other             199 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_pid.Evaluate(other));
other             200 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_tid.Evaluate(other));
other             201 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_time.Evaluate(other));
other             202 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_duration.Evaluate(other));
other             203 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_phase.Evaluate(other));
other             204 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_category.Evaluate(other));
other             205 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_name.Evaluate(other));
other             206 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_id.Evaluate(other));
other             207 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_has_arg1.Evaluate(other));
other             208 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_has_arg2.Evaluate(other));
other             209 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_arg1.Evaluate(other));
other             210 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_arg2.Evaluate(other));
other             211 base/test/trace_event_analyzer_unittest.cc   EXPECT_FALSE(event_has_other.Evaluate(other));
other              56 base/threading/platform_thread.h   bool is_equal(const PlatformThreadHandle& other) const {
other              57 base/threading/platform_thread.h     return handle_ == other.handle_;
other             128 base/threading/sequenced_worker_pool.h     bool Equals(const SequenceToken& other) const {
other             129 base/threading/sequenced_worker_pool.h       return id_ == other.id_;
other             119 base/time/time.h   TimeDelta& operator=(TimeDelta other) {
other             120 base/time/time.h     delta_ = other.delta_;
other             125 base/time/time.h   TimeDelta operator+(TimeDelta other) const {
other             126 base/time/time.h     return TimeDelta(delta_ + other.delta_);
other             128 base/time/time.h   TimeDelta operator-(TimeDelta other) const {
other             129 base/time/time.h     return TimeDelta(delta_ - other.delta_);
other             132 base/time/time.h   TimeDelta& operator+=(TimeDelta other) {
other             133 base/time/time.h     delta_ += other.delta_;
other             136 base/time/time.h   TimeDelta& operator-=(TimeDelta other) {
other             137 base/time/time.h     delta_ -= other.delta_;
other             169 base/time/time.h   bool operator==(TimeDelta other) const {
other             170 base/time/time.h     return delta_ == other.delta_;
other             172 base/time/time.h   bool operator!=(TimeDelta other) const {
other             173 base/time/time.h     return delta_ != other.delta_;
other             175 base/time/time.h   bool operator<(TimeDelta other) const {
other             176 base/time/time.h     return delta_ < other.delta_;
other             178 base/time/time.h   bool operator<=(TimeDelta other) const {
other             179 base/time/time.h     return delta_ <= other.delta_;
other             181 base/time/time.h   bool operator>(TimeDelta other) const {
other             182 base/time/time.h     return delta_ > other.delta_;
other             184 base/time/time.h   bool operator>=(TimeDelta other) const {
other             185 base/time/time.h     return delta_ >= other.delta_;
other             412 base/time/time.h   Time& operator=(Time other) {
other             413 base/time/time.h     us_ = other.us_;
other             418 base/time/time.h   TimeDelta operator-(Time other) const {
other             419 base/time/time.h     return TimeDelta(us_ - other.us_);
other             441 base/time/time.h   bool operator==(Time other) const {
other             442 base/time/time.h     return us_ == other.us_;
other             444 base/time/time.h   bool operator!=(Time other) const {
other             445 base/time/time.h     return us_ != other.us_;
other             447 base/time/time.h   bool operator<(Time other) const {
other             448 base/time/time.h     return us_ < other.us_;
other             450 base/time/time.h   bool operator<=(Time other) const {
other             451 base/time/time.h     return us_ <= other.us_;
other             453 base/time/time.h   bool operator>(Time other) const {
other             454 base/time/time.h     return us_ > other.us_;
other             456 base/time/time.h   bool operator>=(Time other) const {
other             457 base/time/time.h     return us_ >= other.us_;
other             650 base/time/time.h   TimeTicks& operator=(TimeTicks other) {
other             651 base/time/time.h     ticks_ = other.ticks_;
other             656 base/time/time.h   TimeDelta operator-(TimeTicks other) const {
other             657 base/time/time.h     return TimeDelta(ticks_ - other.ticks_);
other             679 base/time/time.h   bool operator==(TimeTicks other) const {
other             680 base/time/time.h     return ticks_ == other.ticks_;
other             682 base/time/time.h   bool operator!=(TimeTicks other) const {
other             683 base/time/time.h     return ticks_ != other.ticks_;
other             685 base/time/time.h   bool operator<(TimeTicks other) const {
other             686 base/time/time.h     return ticks_ < other.ticks_;
other             688 base/time/time.h   bool operator<=(TimeTicks other) const {
other             689 base/time/time.h     return ticks_ <= other.ticks_;
other             691 base/time/time.h   bool operator>(TimeTicks other) const {
other             692 base/time/time.h     return ticks_ > other.ticks_;
other             694 base/time/time.h   bool operator>=(TimeTicks other) const {
other             695 base/time/time.h     return ticks_ >= other.ticks_;
other             164 base/values.cc bool Value::Equals(const Value* other) const {
other             168 base/values.cc   return other->IsType(TYPE_NULL);
other             246 base/values.cc bool FundamentalValue::Equals(const Value* other) const {
other             247 base/values.cc   if (other->GetType() != GetType())
other             253 base/values.cc       return GetAsBoolean(&lhs) && other->GetAsBoolean(&rhs) && lhs == rhs;
other             257 base/values.cc       return GetAsInteger(&lhs) && other->GetAsInteger(&rhs) && lhs == rhs;
other             261 base/values.cc       return GetAsDouble(&lhs) && other->GetAsDouble(&rhs) && lhs == rhs;
other             315 base/values.cc bool StringValue::Equals(const Value* other) const {
other             316 base/values.cc   if (other->GetType() != GetType())
other             319 base/values.cc   return GetAsString(&lhs) && other->GetAsString(&rhs) && lhs == rhs;
other             351 base/values.cc bool BinaryValue::Equals(const Value* other) const {
other             352 base/values.cc   if (other->GetType() != GetType())
other             354 base/values.cc   const BinaryValue* other_binary = static_cast<const BinaryValue*>(other);
other             815 base/values.cc void DictionaryValue::Swap(DictionaryValue* other) {
other             816 base/values.cc   dictionary_.swap(other->dictionary_);
other             837 base/values.cc bool DictionaryValue::Equals(const Value* other) const {
other             838 base/values.cc   if (other->GetType() != GetType())
other             842 base/values.cc       static_cast<const DictionaryValue*>(other);
other            1104 base/values.cc void ListValue::Swap(ListValue* other) {
other            1105 base/values.cc   list_.swap(other->list_);
other            1129 base/values.cc bool ListValue::Equals(const Value* other) const {
other            1130 base/values.cc   if (other->GetType() != GetType())
other            1134 base/values.cc       static_cast<const ListValue*>(other);
other             109 base/values.h    virtual bool Equals(const Value* other) const;
other             140 base/values.h    virtual bool Equals(const Value* other) const OVERRIDE;
other             169 base/values.h    virtual bool Equals(const Value* other) const OVERRIDE;
other             199 base/values.h    virtual bool Equals(const Value* other) const OVERRIDE;
other             351 base/values.h    virtual void Swap(DictionaryValue* other);
other             373 base/values.h    virtual bool Equals(const Value* other) const OVERRIDE;
other             476 base/values.h    virtual void Swap(ListValue* other);
other             489 base/values.h    virtual bool Equals(const Value* other) const OVERRIDE;
other             160 base/version.cc int Version::CompareTo(const Version& other) const {
other             162 base/version.cc   DCHECK(other.IsValid());
other             163 base/version.cc   return CompareVersionComponents(components_, other.components_);
other              46 base/version.h   bool Equals(const Version& other) const;
other              49 base/version.h   int CompareTo(const Version& other) const;
other              73 base/win/enum_variant.cc   EnumVariant* other = new EnumVariant(count_);
other              75 base/win/enum_variant.cc     memcpy(other->ItemAt(0), &items_[0], count_ * sizeof(VARIANT));
other              76 base/win/enum_variant.cc   other->Skip(current_index_);
other              77 base/win/enum_variant.cc   other->AddRef();
other              78 base/win/enum_variant.cc   *out_cloned_object = other;
other              38 base/win/iunknown_impl_unittest.cc   IUnknown* other = NULL;
other              40 base/win/iunknown_impl_unittest.cc       IID_IDispatch, reinterpret_cast<void**>(&other)));
other              42 base/win/iunknown_impl_unittest.cc       IID_IUnknown, reinterpret_cast<void**>(&other)));
other              43 base/win/iunknown_impl_unittest.cc   other->Release();
other             123 base/win/scoped_comptr.h   bool IsSameObject(IUnknown* other) {
other             124 base/win/scoped_comptr.h     if (!other && !ptr_)
other             127 base/win/scoped_comptr.h     if (!other || !ptr_)
other             134 base/win/scoped_comptr.h     other->QueryInterface(other_identity.Receive());
other              44 base/win/scoped_handle.cc     Info other = result.first->second;
other              45 base/win/scoped_handle.cc     debug::Alias(&other);
other              58 base/win/scoped_handle.cc   Info other = i->second;
other              59 base/win/scoped_handle.cc   if (other.owner != owner) {
other              60 base/win/scoped_handle.cc     debug::Alias(&other);
other              47 base/win/scoped_handle.h   GenericScopedHandle(RValue other) : handle_(Traits::NullHandle()) {
other              48 base/win/scoped_handle.h     Set(other.object->Take());
other              60 base/win/scoped_handle.h   GenericScopedHandle& operator=(RValue other) {
other              61 base/win/scoped_handle.h     if (this != other.object) {
other              62 base/win/scoped_handle.h       Set(other.object->Take());
other              71 base/win/scoped_process_information.cc     const ScopedProcessInformation& other) {
other              73 base/win/scoped_process_information.cc   DCHECK(other.IsValid()) << "source ScopedProcessInformation must be valid";
other              75 base/win/scoped_process_information.cc   if (CheckAndDuplicateHandle(other.process_handle(), &process_handle_) &&
other              76 base/win/scoped_process_information.cc       CheckAndDuplicateHandle(other.thread_handle(), &thread_handle_)) {
other              77 base/win/scoped_process_information.cc     process_id_ = other.process_id();
other              78 base/win/scoped_process_information.cc     thread_id_ = other.thread_id();
other              37 base/win/scoped_process_information.h   bool DuplicateFrom(const ScopedProcessInformation& other);
other             233 cc/animation/animation.cc void Animation::PushPropertiesTo(Animation* other) const {
other             237 cc/animation/animation.cc       other->run_state_ == Animation::Paused) {
other             238 cc/animation/animation.cc     other->run_state_ = run_state_;
other             239 cc/animation/animation.cc     other->pause_time_ = pause_time_;
other             240 cc/animation/animation.cc     other->total_paused_time_ = total_paused_time_;
other             126 cc/animation/animation.h   void PushPropertiesTo(Animation* other) const;
other              20 cc/animation/transform_operations.cc TransformOperations::TransformOperations(const TransformOperations& other) {
other              21 cc/animation/transform_operations.cc   operations_ = other.operations_;
other              22 cc/animation/transform_operations.cc   decomposed_transform_dirty_ = other.decomposed_transform_dirty_;
other              25 cc/animation/transform_operations.cc         new gfx::DecomposedTransform(*other.decomposed_transform_.get()));
other             176 cc/animation/transform_operations.cc bool TransformOperations::MatchesTypes(const TransformOperations& other) const {
other             177 cc/animation/transform_operations.cc   if (IsIdentity() || other.IsIdentity())
other             180 cc/animation/transform_operations.cc   if (operations_.size() != other.operations_.size())
other             184 cc/animation/transform_operations.cc     if (operations_[i].type != other.operations_[i].type
other             186 cc/animation/transform_operations.cc       && !other.operations_[i].IsIdentity())
other             194 cc/animation/transform_operations.cc     const TransformOperations& other) const {
other             196 cc/animation/transform_operations.cc   return BlendInternal(other, 0.5, &dummy);
other              34 cc/animation/transform_operations.h   TransformOperations(const TransformOperations& other);
other              76 cc/animation/transform_operations.h   bool MatchesTypes(const TransformOperations& other) const;
other              81 cc/animation/transform_operations.h   bool CanBlendWith(const TransformOperations& other) const;
other              52 cc/base/region.h   bool Equals(const Region& other) const {
other              53 cc/base/region.h     return skregion_ == other.skregion_;
other              36 cc/base/scoped_ptr_deque.h     explicit iterator(const typename std::deque<T*>::iterator& other)
other              37 cc/base/scoped_ptr_deque.h         : std::deque<T*>::iterator(other) {}
other              36 cc/base/scoped_ptr_vector.h     iterator(const typename std::vector<T*>::iterator& other) // NOLINT
other              37 cc/base/scoped_ptr_vector.h         : std::vector<T*>::iterator(other) {}
other             133 cc/base/scoped_ptr_vector.h                        ScopedPtrVector<T>& other) {
other             135 cc/base/scoped_ptr_vector.h     for (ScopedPtrVector<T>::iterator it = other.begin();
other             136 cc/base/scoped_ptr_vector.h          it != other.end();
other             138 cc/base/scoped_ptr_vector.h       tmp_data.push_back(other.take(it).release());
other             150 cc/base/scoped_ptr_vector.h   void swap(ScopedPtrVector<T>& other) {
other             151 cc/base/scoped_ptr_vector.h     data_.swap(other.data_);
other              26 cc/debug/rendering_stats.cc void MainThreadRenderingStats::Add(const MainThreadRenderingStats& other) {
other              27 cc/debug/rendering_stats.cc   frame_count += other.frame_count;
other              28 cc/debug/rendering_stats.cc   paint_time += other.paint_time;
other              29 cc/debug/rendering_stats.cc   painted_pixel_count += other.painted_pixel_count;
other              30 cc/debug/rendering_stats.cc   record_time += other.record_time;
other              31 cc/debug/rendering_stats.cc   recorded_pixel_count += other.recorded_pixel_count;
other              47 cc/debug/rendering_stats.cc void ImplThreadRenderingStats::Add(const ImplThreadRenderingStats& other) {
other              48 cc/debug/rendering_stats.cc   frame_count += other.frame_count;
other              49 cc/debug/rendering_stats.cc   rasterize_time += other.rasterize_time;
other              50 cc/debug/rendering_stats.cc   analysis_time += other.analysis_time;
other              51 cc/debug/rendering_stats.cc   rasterized_pixel_count += other.rasterized_pixel_count;
other              54 cc/debug/rendering_stats.cc void RenderingStats::Add(const RenderingStats& other) {
other              55 cc/debug/rendering_stats.cc   main_stats.Add(other.main_stats);
other              56 cc/debug/rendering_stats.cc   impl_stats.Add(other.impl_stats);
other              27 cc/debug/rendering_stats.h   void Add(const MainThreadRenderingStats& other);
other              41 cc/debug/rendering_stats.h   void Add(const ImplThreadRenderingStats& other);
other              49 cc/debug/rendering_stats.h   void Add(const RenderingStats& other);
other             167 cc/layers/layer_impl.cc     scoped_refptr<base::debug::ConvertableToTraceFormat> other) {
other             168 cc/layers/layer_impl.cc   debug_info_ = other;
other             524 cc/layers/layer_impl.h       scoped_refptr<base::debug::ConvertableToTraceFormat> other);
other             123 cc/layers/layer_iterator.h   bool operator==(const LayerIterator& other) const {
other             125 cc/layers/layer_iterator.h            other.target_render_surface_layer_index_ &&
other             126 cc/layers/layer_iterator.h            current_layer_index_ == other.current_layer_index_;
other             128 cc/layers/layer_iterator.h   bool operator!=(const LayerIteratorType& other) const {
other             129 cc/layers/layer_iterator.h     return !(*this == other);
other              16 cc/layers/layer_position_constraint.cc     const LayerPositionConstraint& other) const {
other              17 cc/layers/layer_position_constraint.cc   if (!is_fixed_position_ && !other.is_fixed_position_)
other              19 cc/layers/layer_position_constraint.cc   return is_fixed_position_ == other.is_fixed_position_ &&
other              20 cc/layers/layer_position_constraint.cc           is_fixed_to_right_edge_ == other.is_fixed_to_right_edge_ &&
other              21 cc/layers/layer_position_constraint.cc           is_fixed_to_bottom_edge_ == other.is_fixed_to_bottom_edge_;
other              25 cc/layers/layer_position_constraint.cc     const LayerPositionConstraint& other) const {
other              26 cc/layers/layer_position_constraint.cc   return !(*this == other);
other             610 cc/layers/picture_layer_impl.cc void PictureLayerImpl::SyncFromActiveLayer(const PictureLayerImpl* other) {
other             611 cc/layers/picture_layer_impl.cc   DCHECK(!other->needs_post_commit_initialization_);
other             612 cc/layers/picture_layer_impl.cc   DCHECK(other->tilings_);
other             614 cc/layers/picture_layer_impl.cc   UpdateLCDTextStatus(other->is_using_lcd_text_);
other             621 cc/layers/picture_layer_impl.cc   raster_page_scale_ = other->raster_page_scale_;
other             622 cc/layers/picture_layer_impl.cc   raster_device_scale_ = other->raster_device_scale_;
other             623 cc/layers/picture_layer_impl.cc   raster_source_scale_ = other->raster_source_scale_;
other             624 cc/layers/picture_layer_impl.cc   raster_contents_scale_ = other->raster_contents_scale_;
other             625 cc/layers/picture_layer_impl.cc   low_res_raster_contents_scale_ = other->low_res_raster_contents_scale_;
other             635 cc/layers/picture_layer_impl.cc       bool previously_had = other->pile_->HasRecordingAt(x, y);
other             646 cc/layers/picture_layer_impl.cc   difference_region.Subtract(gfx::Rect(other->bounds()));
other             653 cc/layers/picture_layer_impl.cc     Region tiling_invalidation = other->invalidation_;
other             655 cc/layers/picture_layer_impl.cc     tilings_->SyncTilings(*other->tilings_,
other             124 cc/layers/picture_layer_impl.h   void SyncFromActiveLayer(const PictureLayerImpl* other);
other              64 cc/layers/video_layer_impl.cc   VideoLayerImpl* other = static_cast<VideoLayerImpl*>(layer);
other              65 cc/layers/video_layer_impl.cc   other->SetProviderClientImpl(provider_client_impl_);
other              15 cc/output/filter_operation.cc bool FilterOperation::operator==(const FilterOperation& other) const {
other              16 cc/output/filter_operation.cc   if (type_ != other.type_)
other              19 cc/output/filter_operation.cc     return !memcmp(matrix_, other.matrix_, sizeof(matrix_));
other              21 cc/output/filter_operation.cc     return amount_ == other.amount_ &&
other              22 cc/output/filter_operation.cc            drop_shadow_offset_ == other.drop_shadow_offset_ &&
other              23 cc/output/filter_operation.cc            drop_shadow_color_ == other.drop_shadow_color_;
other              26 cc/output/filter_operation.cc     return image_filter_.get() == other.image_filter_.get();
other              27 cc/output/filter_operation.cc   return amount_ == other.amount_;
other              88 cc/output/filter_operation.cc FilterOperation::FilterOperation(const FilterOperation& other)
other              89 cc/output/filter_operation.cc     : type_(other.type_),
other              90 cc/output/filter_operation.cc       amount_(other.amount_),
other              91 cc/output/filter_operation.cc       drop_shadow_offset_(other.drop_shadow_offset_),
other              92 cc/output/filter_operation.cc       drop_shadow_color_(other.drop_shadow_color_),
other              93 cc/output/filter_operation.cc       image_filter_(other.image_filter_),
other              94 cc/output/filter_operation.cc       zoom_inset_(other.zoom_inset_) {
other              95 cc/output/filter_operation.cc   memcpy(matrix_, other.matrix_, sizeof(matrix_));
other              43 cc/output/filter_operation.h   FilterOperation(const FilterOperation& other);
other             139 cc/output/filter_operation.h   bool operator==(const FilterOperation& other) const;
other             141 cc/output/filter_operation.h   bool operator!=(const FilterOperation& other) const {
other             142 cc/output/filter_operation.h     return !(*this == other);
other              16 cc/output/filter_operations.cc FilterOperations::FilterOperations(const FilterOperations& other)
other              17 cc/output/filter_operations.cc     : operations_(other.operations_) {}
other              21 cc/output/filter_operations.cc FilterOperations& FilterOperations::operator=(const FilterOperations& other) {
other              22 cc/output/filter_operations.cc   operations_ = other.operations_;
other              26 cc/output/filter_operations.cc bool FilterOperations::operator==(const FilterOperations& other) const {
other              27 cc/output/filter_operations.cc   if (other.size() != size())
other              30 cc/output/filter_operations.cc     if (other.at(i) != at(i))
other              25 cc/output/filter_operations.h   FilterOperations(const FilterOperations& other);
other              29 cc/output/filter_operations.h   FilterOperations& operator=(const FilterOperations& other);
other              31 cc/output/filter_operations.h   bool operator==(const FilterOperations& other) const;
other              33 cc/output/filter_operations.h   bool operator!=(const FilterOperations& other) const {
other              34 cc/output/filter_operations.h     return !(*this == other);
other              35 cc/output/managed_memory_policy.cc bool ManagedMemoryPolicy::operator==(const ManagedMemoryPolicy& other) const {
other              36 cc/output/managed_memory_policy.cc   return bytes_limit_when_visible == other.bytes_limit_when_visible &&
other              37 cc/output/managed_memory_policy.cc          priority_cutoff_when_visible == other.priority_cutoff_when_visible &&
other              38 cc/output/managed_memory_policy.cc          num_resources_limit == other.num_resources_limit;
other              41 cc/output/managed_memory_policy.cc bool ManagedMemoryPolicy::operator!=(const ManagedMemoryPolicy& other) const {
other              42 cc/output/managed_memory_policy.cc   return !(*this == other);
other              25 cc/quads/draw_quad.cc template<typename T> T* TypedCopy(const cc::DrawQuad* other) {
other              26 cc/quads/draw_quad.cc   return new T(*T::MaterialCast(other));
other              53 cc/quads/render_pass.h     bool operator==(const Id& other) const {
other              54 cc/quads/render_pass.h       return layer_id == other.layer_id && index == other.index;
other              56 cc/quads/render_pass.h     bool operator!=(const Id& other) const {
other              57 cc/quads/render_pass.h       return !(*this == other);
other              59 cc/quads/render_pass.h     bool operator<(const Id& other) const {
other              60 cc/quads/render_pass.h       return layer_id < other.layer_id ||
other              61 cc/quads/render_pass.h           (layer_id == other.layer_id && index < other.index);
other              40 cc/resources/picture_layer_tiling_set.cc     const PictureLayerTilingSet& other,
other              50 cc/resources/picture_layer_tiling_set.cc   tilings_.reserve(other.tilings_.size());
other              55 cc/resources/picture_layer_tiling_set.cc     if (scale >= minimum_contents_scale && !!other.TilingAtScale(scale))
other              64 cc/resources/picture_layer_tiling_set.cc   for (size_t i = 0; i < other.tilings_.size(); ++i) {
other              65 cc/resources/picture_layer_tiling_set.cc     float contents_scale = other.tilings_[i]->contents_scale();
other              69 cc/resources/picture_layer_tiling_set.cc       this_tiling->set_resolution(other.tilings_[i]->resolution());
other              87 cc/resources/picture_layer_tiling_set.cc     new_tiling->set_resolution(other.tilings_[i]->resolution());
other              29 cc/resources/picture_layer_tiling_set.h      const PictureLayerTilingSet& other,
other              56 cc/resources/picture_pile_base.cc PicturePileBase::PicturePileBase(const PicturePileBase* other)
other              57 cc/resources/picture_pile_base.cc     : picture_map_(other->picture_map_),
other              58 cc/resources/picture_pile_base.cc       tiling_(other->tiling_),
other              59 cc/resources/picture_pile_base.cc       recorded_viewport_(other->recorded_viewport_),
other              60 cc/resources/picture_pile_base.cc       min_contents_scale_(other->min_contents_scale_),
other              61 cc/resources/picture_pile_base.cc       tile_grid_info_(other->tile_grid_info_),
other              62 cc/resources/picture_pile_base.cc       background_color_(other->background_color_),
other              64 cc/resources/picture_pile_base.cc           other->slow_down_raster_scale_factor_for_debug_),
other              65 cc/resources/picture_pile_base.cc       contents_opaque_(other->contents_opaque_),
other              66 cc/resources/picture_pile_base.cc       contents_fill_bounds_completely_(other->contents_fill_bounds_completely_),
other              67 cc/resources/picture_pile_base.cc       show_debug_picture_borders_(other->show_debug_picture_borders_),
other              68 cc/resources/picture_pile_base.cc       clear_canvas_with_debug_color_(other->clear_canvas_with_debug_color_),
other              69 cc/resources/picture_pile_base.cc       has_any_recordings_(other->has_any_recordings_) {}
other              71 cc/resources/picture_pile_base.cc PicturePileBase::PicturePileBase(const PicturePileBase* other,
other              73 cc/resources/picture_pile_base.cc     : tiling_(other->tiling_),
other              74 cc/resources/picture_pile_base.cc       recorded_viewport_(other->recorded_viewport_),
other              75 cc/resources/picture_pile_base.cc       min_contents_scale_(other->min_contents_scale_),
other              76 cc/resources/picture_pile_base.cc       tile_grid_info_(other->tile_grid_info_),
other              77 cc/resources/picture_pile_base.cc       background_color_(other->background_color_),
other              79 cc/resources/picture_pile_base.cc           other->slow_down_raster_scale_factor_for_debug_),
other              80 cc/resources/picture_pile_base.cc       contents_opaque_(other->contents_opaque_),
other              81 cc/resources/picture_pile_base.cc       contents_fill_bounds_completely_(other->contents_fill_bounds_completely_),
other              82 cc/resources/picture_pile_base.cc       show_debug_picture_borders_(other->show_debug_picture_borders_),
other              83 cc/resources/picture_pile_base.cc       clear_canvas_with_debug_color_(other->clear_canvas_with_debug_color_),
other              84 cc/resources/picture_pile_base.cc       has_any_recordings_(other->has_any_recordings_) {
other              85 cc/resources/picture_pile_base.cc   for (PictureMap::const_iterator it = other->picture_map_.begin();
other              86 cc/resources/picture_pile_base.cc        it != other->picture_map_.end();
other              29 cc/resources/picture_pile_base.h   explicit PicturePileBase(const PicturePileBase* other);
other              30 cc/resources/picture_pile_base.h   PicturePileBase(const PicturePileBase* other, unsigned thread_index);
other              39 cc/resources/picture_pile_impl.cc     const PicturePileBase* other) {
other              40 cc/resources/picture_pile_impl.cc   return make_scoped_refptr(new PicturePileImpl(other));
other              44 cc/resources/picture_pile_impl.cc     const PicturePileImpl* other, unsigned thread_index) {
other              45 cc/resources/picture_pile_impl.cc   return make_scoped_refptr(new PicturePileImpl(other, thread_index));
other              52 cc/resources/picture_pile_impl.cc PicturePileImpl::PicturePileImpl(const PicturePileBase* other)
other              53 cc/resources/picture_pile_impl.cc     : PicturePileBase(other),
other              59 cc/resources/picture_pile_impl.cc     const PicturePileImpl* other, unsigned thread_index)
other              60 cc/resources/picture_pile_impl.cc     : PicturePileBase(other, thread_index),
other              27 cc/resources/picture_pile_impl.h       const PicturePileBase* other);
other             112 cc/resources/picture_pile_impl.h   explicit PicturePileImpl(const PicturePileBase* other);
other             126 cc/resources/picture_pile_impl.h       const PicturePileImpl* other, unsigned thread_index);
other             128 cc/resources/picture_pile_impl.h   PicturePileImpl(const PicturePileImpl* other, unsigned thread_index);
other             240 cc/resources/raster_worker_pool.cc void RasterTaskQueue::Swap(RasterTaskQueue* other) {
other             241 cc/resources/raster_worker_pool.cc   items.swap(other->items);
other             243 cc/resources/raster_worker_pool.cc             other->required_for_activation_count);
other             122 cc/resources/raster_worker_pool.h   void Swap(RasterTaskQueue* other);
other             116 cc/resources/task_graph_runner.cc void TaskGraph::Swap(TaskGraph* other) {
other             117 cc/resources/task_graph_runner.cc   nodes.swap(other->nodes);
other             118 cc/resources/task_graph_runner.cc   edges.swap(other->edges);
other              76 cc/resources/task_graph_runner.h   void Swap(TaskGraph* other);
other              38 cc/resources/texture_mailbox.cc bool TextureMailbox::Equals(const TextureMailbox& other) const {
other              39 cc/resources/texture_mailbox.cc   if (other.IsTexture()) {
other              41 cc/resources/texture_mailbox.cc                                   other.mailbox_holder_.mailbox.name,
other              43 cc/resources/texture_mailbox.cc   } else if (other.IsSharedMemory()) {
other              45 cc/resources/texture_mailbox.cc            shared_memory_->handle() == other.shared_memory_->handle();
other              48 cc/resources/texture_mailbox.cc   DCHECK(!other.IsValid());
other              88 cc/resources/tile_priority.h   bool operator ==(const TilePriority& other) const {
other              89 cc/resources/tile_priority.h     return resolution == other.resolution &&
other              90 cc/resources/tile_priority.h            priority_bin == other.priority_bin &&
other              91 cc/resources/tile_priority.h            distance_to_visible == other.distance_to_visible &&
other              92 cc/resources/tile_priority.h            required_for_activation == other.required_for_activation;
other              95 cc/resources/tile_priority.h   bool operator !=(const TilePriority& other) const {
other              96 cc/resources/tile_priority.h     return !(*this == other);
other              99 cc/resources/tile_priority.h   bool IsHigherPriorityThan(const TilePriority& other) const {
other             100 cc/resources/tile_priority.h     return priority_bin > other.priority_bin ||
other             101 cc/resources/tile_priority.h            (priority_bin == other.priority_bin &&
other             102 cc/resources/tile_priority.h             distance_to_visible > other.distance_to_visible);
other             162 cc/resources/tile_priority.h   bool operator==(const GlobalStateThatImpactsTilePriority& other) const {
other             163 cc/resources/tile_priority.h     return memory_limit_policy == other.memory_limit_policy &&
other             164 cc/resources/tile_priority.h            soft_memory_limit_in_bytes == other.soft_memory_limit_in_bytes &&
other             165 cc/resources/tile_priority.h            hard_memory_limit_in_bytes == other.hard_memory_limit_in_bytes &&
other             166 cc/resources/tile_priority.h            unused_memory_limit_in_bytes == other.unused_memory_limit_in_bytes &&
other             167 cc/resources/tile_priority.h            num_resources_limit == other.num_resources_limit &&
other             168 cc/resources/tile_priority.h            tree_priority == other.tree_priority;
other             170 cc/resources/tile_priority.h   bool operator!=(const GlobalStateThatImpactsTilePriority& other) const {
other             171 cc/resources/tile_priority.h     return !(*this == other);
other             372 cc/test/test_gles2_interface.cc void TestGLES2Interface::LoseContextCHROMIUM(GLenum current, GLenum other) {
other             373 cc/test/test_gles2_interface.cc   test_context_->loseContextCHROMIUM(current, other);
other             168 cc/test/test_gles2_interface.h   virtual void LoseContextCHROMIUM(GLenum current, GLenum other) OVERRIDE;
other             442 cc/test/test_web_graphics_context_3d.cc                                                    GLenum other) {
other             450 cc/test/test_web_graphics_context_3d.cc     shared_contexts_[i]->loseContextCHROMIUM(current, other);
other             175 cc/test/test_web_graphics_context_3d.h   virtual void loseContextCHROMIUM(GLenum current, GLenum other);
other              72 cc/trees/damage_tracker.h     bool operator < (const RectMapData& other) const {
other              73 cc/trees/damage_tracker.h       return layer_id_ < other.layer_id_;
other              68 chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarLayout.java         public LayoutParams(LayoutParams other) {
other              69 chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarLayout.java             super(other);
other              70 chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarLayout.java             isGroupedWithNextView = other.isGroupedWithNextView;
other              71 chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarLayout.java             align = other.align;
other              72 chrome/android/java/src/org/chromium/chrome/browser/infobar/InfoBarLayout.java             isInMainRow = other.isInMainRow;
other              69 chrome/android/java/src/org/chromium/chrome/browser/infobar/TranslateOptions.java     public TranslateOptions(TranslateOptions other) {
other              70 chrome/android/java/src/org/chromium/chrome/browser/infobar/TranslateOptions.java         this(other.mSourceLanguageIndex, other.mTargetLanguageIndex, other.mAllLanguages,
other              71 chrome/android/java/src/org/chromium/chrome/browser/infobar/TranslateOptions.java                 other.mOptions[NEVER_LANGUAGE], other.mOptions[NEVER_DOMAIN],
other              72 chrome/android/java/src/org/chromium/chrome/browser/infobar/TranslateOptions.java                 other.mOptions[ALWAYS_LANGUAGE], other.mTriggeredFromMenu,
other              73 chrome/android/java/src/org/chromium/chrome/browser/infobar/TranslateOptions.java                 other.mOriginalOptions);
other             308 chrome/browser/autocomplete/autocomplete_result.cc void AutocompleteResult::Swap(AutocompleteResult* other) {
other             311 chrome/browser/autocomplete/autocomplete_result.cc       other->default_match_ - other->begin();
other             312 chrome/browser/autocomplete/autocomplete_result.cc   matches_.swap(other->matches_);
other             314 chrome/browser/autocomplete/autocomplete_result.cc   other->default_match_ = other->begin() + default_match_offset;
other             315 chrome/browser/autocomplete/autocomplete_result.cc   alternate_nav_url_.Swap(&(other->alternate_nav_url_));
other             138 chrome/browser/autocomplete/autocomplete_result.h   void Swap(AutocompleteResult* other);
other             367 chrome/browser/bookmarks/bookmark_codec_unittest.cc   const BookmarkNode* other = decoded_model.other_node();
other             368 chrome/browser/bookmarks/bookmark_codec_unittest.cc   ASSERT_EQ(1, other->child_count());
other             370 chrome/browser/bookmarks/bookmark_codec_unittest.cc   child = other->GetChild(0);
other             954 chrome/browser/bookmarks/bookmark_model_unittest.cc     TestNode other;
other             955 chrome/browser/bookmarks/bookmark_model_unittest.cc     PopulateNodeFromString(data[i].other_contents, &other);
other             956 chrome/browser/bookmarks/bookmark_model_unittest.cc     PopulateBookmarkNode(&other, bb_model_, bb_model_->other_node());
other             966 chrome/browser/bookmarks/bookmark_model_unittest.cc     VerifyModelMatchesNode(&other, bb_model_->other_node());
other             138 chrome/browser/browsing_data/browsing_data_database_helper.cc     const PendingDatabaseInfo& other) const {
other             139 chrome/browser/browsing_data/browsing_data_database_helper.cc   if (origin == other.origin)
other             140 chrome/browser/browsing_data/browsing_data_database_helper.cc     return name < other.name;
other             141 chrome/browser/browsing_data/browsing_data_database_helper.cc   return origin < other.origin;
other             109 chrome/browser/browsing_data/browsing_data_database_helper.h     bool operator<(const PendingDatabaseInfo& other) const;
other             102 chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc     const PendingIndexedDBInfo& other) const {
other             103 chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc   if (origin == other.origin)
other             104 chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc     return name < other.name;
other             105 chrome/browser/browsing_data/browsing_data_indexed_db_helper.cc   return origin < other.origin;
other              91 chrome/browser/browsing_data/browsing_data_indexed_db_helper.h     bool operator<(const PendingIndexedDBInfo& other) const;
other             105 chrome/browser/chromeos/boot_times_loader.h     bool operator<(const TimeMarker& other) const {
other             106 chrome/browser/chromeos/boot_times_loader.h       return time_ < other.time_;
other             160 chrome/browser/chromeos/login/user.cc void UserContext::CopyFrom(const UserContext& other) {
other             161 chrome/browser/chromeos/login/user.cc   username = other.username;
other             162 chrome/browser/chromeos/login/user.cc   password = other.password;
other             163 chrome/browser/chromeos/login/user.cc   key_label = other.key_label;
other             164 chrome/browser/chromeos/login/user.cc   need_password_hashing = other.need_password_hashing;
other             165 chrome/browser/chromeos/login/user.cc   auth_code = other.auth_code;
other             166 chrome/browser/chromeos/login/user.cc   username_hash = other.username_hash;
other             167 chrome/browser/chromeos/login/user.cc   using_oauth = other.using_oauth;
other             168 chrome/browser/chromeos/login/user.cc   auth_flow = other.auth_flow;
other              54 chrome/browser/chromeos/login/user.h   void CopyFrom(const UserContext& other);
other              44 chrome/browser/chromeos/login/wallpaper_manager.h   bool operator==(const WallpaperInfo& other) {
other              45 chrome/browser/chromeos/login/wallpaper_manager.h     return (file == other.file) && (layout == other.layout) &&
other              46 chrome/browser/chromeos/login/wallpaper_manager.h         (type == other.type);
other             280 chrome/browser/chromeos/system/input_device_settings.cc TouchpadSettings& TouchpadSettings::operator=(const TouchpadSettings& other) {
other             281 chrome/browser/chromeos/system/input_device_settings.cc   if (&other != this) {
other             282 chrome/browser/chromeos/system/input_device_settings.cc     sensitivity_ = other.sensitivity_;
other             283 chrome/browser/chromeos/system/input_device_settings.cc     tap_to_click_ = other.tap_to_click_;
other             284 chrome/browser/chromeos/system/input_device_settings.cc     three_finger_click_ = other.three_finger_click_;
other             285 chrome/browser/chromeos/system/input_device_settings.cc     tap_dragging_ = other.tap_dragging_;
other             286 chrome/browser/chromeos/system/input_device_settings.cc     natural_scroll_ = other.natural_scroll_;
other             369 chrome/browser/chromeos/system/input_device_settings.cc MouseSettings& MouseSettings::operator=(const MouseSettings& other) {
other             370 chrome/browser/chromeos/system/input_device_settings.cc   if (&other != this) {
other             371 chrome/browser/chromeos/system/input_device_settings.cc     sensitivity_ = other.sensitivity_;
other             372 chrome/browser/chromeos/system/input_device_settings.cc     primary_button_right_ = other.primary_button_right_;
other              30 chrome/browser/chromeos/system/input_device_settings.h   Optional& operator=(const Optional& other) {
other              31 chrome/browser/chromeos/system/input_device_settings.h     if (&other != this) {
other              32 chrome/browser/chromeos/system/input_device_settings.h       value_ = other.value_;
other              33 chrome/browser/chromeos/system/input_device_settings.h       is_set_ = other.is_set_;
other              85 chrome/browser/chromeos/system/input_device_settings.h   TouchpadSettings& operator=(const TouchpadSettings& other);
other             125 chrome/browser/chromeos/system/input_device_settings.h   MouseSettings& operator=(const MouseSettings& other);
other             273 chrome/browser/common/cancelable_request.h     bool operator<(const PendingRequest& other) const {
other             274 chrome/browser/common/cancelable_request.h       if (provider != other.provider)
other             275 chrome/browser/common/cancelable_request.h         return provider < other.provider;
other             276 chrome/browser/common/cancelable_request.h       return handle < other.handle;
other              66 chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc     const OriginIdentifierValueMap::EntryMapKey& other) const {
other              67 chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc   if (content_type != other.content_type)
other              68 chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc     return content_type < other.content_type;
other              69 chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc   return (resource_identifier < other.resource_identifier);
other              80 chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc     const OriginIdentifierValueMap::PatternPair& other) const {
other              84 chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc   if (primary_pattern > other.primary_pattern)
other              86 chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc   else if (other.primary_pattern > primary_pattern)
other              88 chrome/browser/content_settings/content_settings_origin_identifier_value_map.cc   return (secondary_pattern > other.secondary_pattern);
other              34 chrome/browser/content_settings/content_settings_origin_identifier_value_map.h     bool operator<(const OriginIdentifierValueMap::EntryMapKey& other) const;
other              42 chrome/browser/content_settings/content_settings_origin_identifier_value_map.h     bool operator<(const OriginIdentifierValueMap::PatternPair& other) const;
other              23 chrome/browser/content_settings/permission_request_id.cc bool PermissionRequestID::Equals(const PermissionRequestID& other) const {
other              24 chrome/browser/content_settings/permission_request_id.cc   return IsForSameTabAs(other) && (bridge_id_ == other.bridge_id_);
other              28 chrome/browser/content_settings/permission_request_id.cc     const PermissionRequestID& other) const {
other              29 chrome/browser/content_settings/permission_request_id.cc   return (render_process_id_ == other.render_process_id_) &&
other              30 chrome/browser/content_settings/permission_request_id.cc       (render_view_id_ == other.render_view_id_);
other              24 chrome/browser/content_settings/permission_request_id.h   bool Equals(const PermissionRequestID& other) const;
other              25 chrome/browser/content_settings/permission_request_id.h   bool IsForSameTabAs(const PermissionRequestID& other) const;
other              76 chrome/browser/extensions/activity_log/activity_actions.cc   if (other())
other              77 chrome/browser/extensions/activity_log/activity_actions.cc     clone->set_other(make_scoped_ptr(other()->DeepCopy()));
other             100 chrome/browser/extensions/activity_log/activity_actions.cc void Action::set_other(scoped_ptr<base::DictionaryValue> other) {
other             101 chrome/browser/extensions/activity_log/activity_actions.cc   other_.reset(other.release());
other             185 chrome/browser/extensions/activity_log/activity_actions.cc   if (other()) {
other             189 chrome/browser/extensions/activity_log/activity_actions.cc     if (other()->GetBooleanWithoutPathExpansion(constants::kActionPrerender,
other             194 chrome/browser/extensions/activity_log/activity_actions.cc     if (other()->GetDictionaryWithoutPathExpansion(constants::kActionWebRequest,
other             200 chrome/browser/extensions/activity_log/activity_actions.cc     if (other()->GetStringWithoutPathExpansion(constants::kActionExtra, &extra))
other             203 chrome/browser/extensions/activity_log/activity_actions.cc     if (other()->GetIntegerWithoutPathExpansion(constants::kActionDomVerb,
other             233 chrome/browser/extensions/activity_log/activity_actions.cc     result->other.reset(other_field.release());
other             346 chrome/browser/extensions/activity_log/activity_actions.cc   if (!lhs->other() && rhs->other())
other             348 chrome/browser/extensions/activity_log/activity_actions.cc   if (lhs->other() && !rhs->other())
other             350 chrome/browser/extensions/activity_log/activity_actions.cc   if (lhs->other() && rhs->other()) {
other             351 chrome/browser/extensions/activity_log/activity_actions.cc     std::string lhs_other = ActivityLogPolicy::Util::Serialize(lhs->other());
other             352 chrome/browser/extensions/activity_log/activity_actions.cc     std::string rhs_other = ActivityLogPolicy::Util::Serialize(rhs->other());
other             100 chrome/browser/extensions/activity_log/activity_actions.h   const base::DictionaryValue* other() const { return other_.get(); }
other             101 chrome/browser/extensions/activity_log/activity_actions.h   void set_other(scoped_ptr<base::DictionaryValue> other);
other             552 chrome/browser/extensions/activity_log/activity_log.cc       action->other()) {
other             553 chrome/browser/extensions/activity_log/activity_log.cc     base::DictionaryValue* other = action->mutable_other();
other             555 chrome/browser/extensions/activity_log/activity_log.cc     if (other->GetInteger(constants::kActionDomVerb, &dom_verb) &&
other             557 chrome/browser/extensions/activity_log/activity_log.cc       other->SetInteger(constants::kActionDomVerb, DomActionType::XHR);
other              58 chrome/browser/extensions/activity_log/activity_log_browsertest.cc               ActivityLogPolicy::Util::Serialize(last->other()));
other              57 chrome/browser/extensions/activity_log/activity_log_policy_unittest.cc       ActivityLogPolicy::Util::Serialize(action->other()));
other             119 chrome/browser/extensions/activity_log/activity_log_unittest.cc               ActivityLogPolicy::Util::Serialize(last->other()));
other             127 chrome/browser/extensions/activity_log/activity_log_unittest.cc     const base::DictionaryValue* other = NULL;
other             139 chrome/browser/extensions/activity_log/activity_log_unittest.cc     other = action->other();
other             140 chrome/browser/extensions/activity_log/activity_log_unittest.cc     ASSERT_TRUE(other);
other             141 chrome/browser/extensions/activity_log/activity_log_unittest.cc     ASSERT_TRUE(other->GetInteger(activity_log_constants::kActionDomVerb,
other             167 chrome/browser/extensions/activity_log/activity_log_unittest.cc     const base::DictionaryValue* other = NULL;
other             180 chrome/browser/extensions/activity_log/activity_log_unittest.cc       other = action->other();
other             181 chrome/browser/extensions/activity_log/activity_log_unittest.cc       ASSERT_TRUE(other);
other             183 chrome/browser/extensions/activity_log/activity_log_unittest.cc           other->GetInteger(activity_log_constants::kActionDomVerb, &dom_verb));
other             350 chrome/browser/extensions/activity_log/counting_policy.cc     if (action.other()) {
other             351 chrome/browser/extensions/activity_log/counting_policy.cc       if (!string_table_.StringToInt(db, Util::Serialize(action.other()), &id))
other             104 chrome/browser/extensions/activity_log/fullstream_ui_policy.cc     if (action.other()) {
other             105 chrome/browser/extensions/activity_log/fullstream_ui_policy.cc       statement.BindString(8, Util::Serialize(action.other()));
other              96 chrome/browser/extensions/activity_log/uma_policy.cc   if (!action->other() ||
other              97 chrome/browser/extensions/activity_log/uma_policy.cc       !action->other()->GetIntegerWithoutPathExpansion(
other              66 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   scoped_ptr<ExtensionActivity::Other> other(result->other.Pass());
other              67 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   ASSERT_EQ(ExtensionActivity::Other::DOM_VERB_INSERTED, other->dom_verb);
other              68 chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc   ASSERT_TRUE(other->prerender.get());
other              28 chrome/browser/extensions/api/declarative/deduping_factory_unittest.cc   virtual bool Equals(const BaseClass* other) const = 0;
other              41 chrome/browser/extensions/api/declarative/deduping_factory_unittest.cc   virtual bool Equals(const BaseClass* other) const OVERRIDE {
other              42 chrome/browser/extensions/api/declarative/deduping_factory_unittest.cc     return other->type() == type() &&
other              43 chrome/browser/extensions/api/declarative/deduping_factory_unittest.cc            static_cast<const Foo*>(other)->parameter_ == parameter_;
other              47 chrome/browser/extensions/api/declarative/rules_registry.h     bool operator<(const WebViewKey& other) const {
other              48 chrome/browser/extensions/api/declarative/rules_registry.h       return embedder_process_id < other.embedder_process_id ||
other              49 chrome/browser/extensions/api/declarative/rules_registry.h           ((embedder_process_id == other.embedder_process_id) &&
other              50 chrome/browser/extensions/api/declarative/rules_registry.h            (webview_instance_id < other.webview_instance_id));
other              49 chrome/browser/extensions/api/declarative/rules_registry_service.h     bool operator<(const RulesRegistryKey& other) const {
other              50 chrome/browser/extensions/api/declarative/rules_registry_service.h       return (event_name < other.event_name) ||
other              51 chrome/browser/extensions/api/declarative/rules_registry_service.h           ((event_name == other.event_name) &&
other              52 chrome/browser/extensions/api/declarative/rules_registry_service.h           (webview_key < other.webview_key));
other             468 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc bool WebRequestAction::Equals(const WebRequestAction* other) const {
other             469 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   return type() == other->type();
other             593 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc bool WebRequestRedirectAction::Equals(const WebRequestAction* other) const {
other             594 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   return WebRequestAction::Equals(other) &&
other             596 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc              static_cast<const WebRequestRedirectAction*>(other)->redirect_url_;
other             746 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc     const WebRequestAction* other) const {
other             747 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   if (!WebRequestAction::Equals(other))
other             750 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc       static_cast<const WebRequestRedirectByRegExAction*>(other);
other             797 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc     const WebRequestAction* other) const {
other             798 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   if (!WebRequestAction::Equals(other))
other             801 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc       static_cast<const WebRequestSetRequestHeaderAction*>(other);
other             837 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc     const WebRequestAction* other) const {
other             838 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   if (!WebRequestAction::Equals(other))
other             841 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc       static_cast<const WebRequestRemoveRequestHeaderAction*>(other);
other             878 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc     const WebRequestAction* other) const {
other             879 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   if (!WebRequestAction::Equals(other))
other             882 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc       static_cast<const WebRequestAddResponseHeaderAction*>(other);
other             930 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc     const WebRequestAction* other) const {
other             931 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   if (!WebRequestAction::Equals(other))
other             934 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc       static_cast<const WebRequestRemoveResponseHeaderAction*>(other);
other             987 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc bool WebRequestIgnoreRulesAction::Equals(const WebRequestAction* other) const {
other             988 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   if (!WebRequestAction::Equals(other))
other             991 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc       static_cast<const WebRequestIgnoreRulesAction*>(other);
other            1025 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc     const WebRequestAction* other) const {
other            1026 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   if (!WebRequestAction::Equals(other))
other            1029 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc       static_cast<const WebRequestRequestCookieAction*>(other);
other            1078 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc     const WebRequestAction* other) const {
other            1079 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   if (!WebRequestAction::Equals(other))
other            1082 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc       static_cast<const WebRequestResponseCookieAction*>(other);
other            1131 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc     const WebRequestAction* other) const {
other            1132 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc   if (!WebRequestAction::Equals(other))
other            1135 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.cc       static_cast<const WebRequestSendMessageToExtensionAction*>(other);
other             104 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const;
other             207 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             270 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             293 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             314 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             335 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             358 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             381 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             408 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             432 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             453 chrome/browser/extensions/api/declarative_webrequest/webrequest_action.h   virtual bool Equals(const WebRequestAction* other) const OVERRIDE;
other             105 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc     const WebRequestConditionAttribute* other) const {
other             106 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc   return GetType() == other->GetType();
other             196 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc     const WebRequestConditionAttribute* other) const {
other             197 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc   if (!WebRequestConditionAttribute::Equals(other))
other             200 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc       static_cast<const WebRequestConditionAttributeResourceType*>(other);
other             284 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc     const WebRequestConditionAttribute* other) const {
other             285 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc   if (!WebRequestConditionAttribute::Equals(other))
other             288 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc       static_cast<const WebRequestConditionAttributeContentType*>(other);
other             630 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc     const WebRequestConditionAttribute* other) const {
other             708 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc     const WebRequestConditionAttribute* other) const {
other             775 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc     const WebRequestConditionAttribute* other) const {
other             776 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc   if (!WebRequestConditionAttribute::Equals(other))
other             779 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc       static_cast<const WebRequestConditionAttributeThirdParty*>(other);
other             869 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc     const WebRequestConditionAttribute* other) const {
other             870 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc   if (!WebRequestConditionAttribute::Equals(other))
other             873 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.cc       static_cast<const WebRequestConditionAttributeStages*>(other);
other              70 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.h   virtual bool Equals(const WebRequestConditionAttribute* other) const;
other             104 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.h   virtual bool Equals(const WebRequestConditionAttribute* other) const OVERRIDE;
other             134 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.h   virtual bool Equals(const WebRequestConditionAttribute* other) const OVERRIDE;
other             169 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.h   virtual bool Equals(const WebRequestConditionAttribute* other) const OVERRIDE;
other             203 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.h   virtual bool Equals(const WebRequestConditionAttribute* other) const OVERRIDE;
other             233 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.h   virtual bool Equals(const WebRequestConditionAttribute* other) const OVERRIDE;
other             262 chrome/browser/extensions/api/declarative_webrequest/webrequest_condition_attribute.h   virtual bool Equals(const WebRequestConditionAttribute* other) const OVERRIDE;
other             250 chrome/browser/extensions/api/desktop_capture/desktop_capture_api.cc     const RequestId& other) const {
other             251 chrome/browser/extensions/api/desktop_capture/desktop_capture_api.cc   if (process_id != other.process_id) {
other             252 chrome/browser/extensions/api/desktop_capture/desktop_capture_api.cc     return process_id < other.process_id;
other             254 chrome/browser/extensions/api/desktop_capture/desktop_capture_api.cc     return request_id < other.request_id;
other             105 chrome/browser/extensions/api/desktop_capture/desktop_capture_api.h     bool operator<(const RequestId& other) const;
other             112 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc     bool Satisfies(const Event& other) const {
other             113 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc       return other.SatisfiedBy(*this);
other             116 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc     bool SatisfiedBy(const Event& other) const {
other             117 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc       if ((profile_ != other.profile_) ||
other             118 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc           (event_name_ != other.event_name_))
other             124 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc           other.args_.get()) {
other             130 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc             !other.args_->GetAsList(&right_list) ||
other             146 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc                  other.args_.get()) {
other             149 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc                 other.args_->GetAsInteger(&other_id) &&
other             152 chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc       return json_args_ == other.json_args_;
other              22 chrome/browser/extensions/api/mdns/dns_sd_delegate.h   bool operator==(const DnsSdService& other) const {
other              23 chrome/browser/extensions/api/mdns/dns_sd_delegate.h     return service_name == other.service_name &&
other              24 chrome/browser/extensions/api/mdns/dns_sd_delegate.h            service_host_port == other.service_host_port &&
other              25 chrome/browser/extensions/api/mdns/dns_sd_delegate.h            ip_address == other.ip_address &&
other              26 chrome/browser/extensions/api/mdns/dns_sd_delegate.h            service_data == other.service_data;
other              29 chrome/browser/extensions/api/mdns/dns_sd_delegate.h   bool operator!=(const DnsSdService& other) const {
other              30 chrome/browser/extensions/api/mdns/dns_sd_delegate.h     return !(*this == other);
other              21 chrome/browser/extensions/api/mdns/dns_sd_registry.cc   bool operator()(const DnsSdService& other) const {
other              22 chrome/browser/extensions/api/mdns/dns_sd_registry.cc     return service_.service_name == other.service_name;
other              42 chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc     const FrameNavigationState::FrameID& other) const {
other              43 chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc   return frame_num < other.frame_num ||
other              44 chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc       (frame_num == other.frame_num &&
other              45 chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc        render_view_host < other.render_view_host);
other              49 chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc     const FrameNavigationState::FrameID& other) const {
other              50 chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc   return frame_num == other.frame_num &&
other              51 chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc       render_view_host == other.render_view_host;
other              55 chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc     const FrameNavigationState::FrameID& other) const {
other              56 chrome/browser/extensions/api/web_navigation/frame_navigation_state.cc   return !(*this == other);
other              30 chrome/browser/extensions/api/web_navigation/frame_navigation_state.h     bool operator<(const FrameID& other) const;
other              31 chrome/browser/extensions/api/web_navigation/frame_navigation_state.h     bool operator==(const FrameID& other) const;
other              32 chrome/browser/extensions/api/web_navigation/frame_navigation_state.h     bool operator!=(const FrameID& other) const;
other            2440 chrome/browser/extensions/api/web_request/web_request_api.cc   bool other = false;
other            2453 chrome/browser/extensions/api/web_request/web_request_api.cc         other = true;
other            2458 chrome/browser/extensions/api/web_request/web_request_api.cc   host->Send(new ExtensionMsg_UsingWebRequestAPI(adblock, adblock_plus, other));
other              49 chrome/browser/extensions/extension_warning_set.cc ExtensionWarning::ExtensionWarning(const ExtensionWarning& other)
other              50 chrome/browser/extensions/extension_warning_set.cc   : type_(other.type_),
other              51 chrome/browser/extensions/extension_warning_set.cc     extension_id_(other.extension_id_),
other              52 chrome/browser/extensions/extension_warning_set.cc     message_id_(other.message_id_),
other              53 chrome/browser/extensions/extension_warning_set.cc     message_parameters_(other.message_parameters_) {}
other              58 chrome/browser/extensions/extension_warning_set.cc ExtensionWarning& ExtensionWarning::operator=(const ExtensionWarning& other) {
other              59 chrome/browser/extensions/extension_warning_set.cc   type_ = other.type_;
other              60 chrome/browser/extensions/extension_warning_set.cc   extension_id_ = other.extension_id_;
other              61 chrome/browser/extensions/extension_warning_set.cc   message_id_ = other.message_id_;
other              62 chrome/browser/extensions/extension_warning_set.cc   message_parameters_ = other.message_parameters_;
other              52 chrome/browser/extensions/extension_warning_set.h   ExtensionWarning(const ExtensionWarning& other);
other              54 chrome/browser/extensions/extension_warning_set.h   ExtensionWarning& operator=(const ExtensionWarning& other);
other             907 chrome/browser/extensions/menu_manager.cc bool MenuItem::ExtensionKey::operator==(const ExtensionKey& other) const {
other             908 chrome/browser/extensions/menu_manager.cc   return extension_id == other.extension_id &&
other             909 chrome/browser/extensions/menu_manager.cc          webview_instance_id == other.webview_instance_id;
other             912 chrome/browser/extensions/menu_manager.cc bool MenuItem::ExtensionKey::operator<(const ExtensionKey& other) const {
other             913 chrome/browser/extensions/menu_manager.cc   if (extension_id != other.extension_id)
other             914 chrome/browser/extensions/menu_manager.cc     return extension_id < other.extension_id;
other             916 chrome/browser/extensions/menu_manager.cc   return webview_instance_id < other.webview_instance_id;
other             919 chrome/browser/extensions/menu_manager.cc bool MenuItem::ExtensionKey::operator!=(const ExtensionKey& other) const {
other             920 chrome/browser/extensions/menu_manager.cc   return !(*this == other);
other             935 chrome/browser/extensions/menu_manager.cc bool MenuItem::Id::operator==(const Id& other) const {
other             936 chrome/browser/extensions/menu_manager.cc   return (incognito == other.incognito &&
other             937 chrome/browser/extensions/menu_manager.cc           extension_key == other.extension_key && uid == other.uid &&
other             938 chrome/browser/extensions/menu_manager.cc           string_uid == other.string_uid);
other             941 chrome/browser/extensions/menu_manager.cc bool MenuItem::Id::operator!=(const Id& other) const {
other             942 chrome/browser/extensions/menu_manager.cc   return !(*this == other);
other             945 chrome/browser/extensions/menu_manager.cc bool MenuItem::Id::operator<(const Id& other) const {
other             946 chrome/browser/extensions/menu_manager.cc   if (incognito < other.incognito)
other             948 chrome/browser/extensions/menu_manager.cc   if (incognito == other.incognito) {
other             949 chrome/browser/extensions/menu_manager.cc     if (extension_key < other.extension_key)
other             951 chrome/browser/extensions/menu_manager.cc     if (extension_key == other.extension_key) {
other             952 chrome/browser/extensions/menu_manager.cc       if (uid < other.uid)
other             954 chrome/browser/extensions/menu_manager.cc       if (uid == other.uid)
other             955 chrome/browser/extensions/menu_manager.cc         return string_uid < other.string_uid;
other              57 chrome/browser/extensions/menu_manager.h     bool operator==(const ExtensionKey& other) const;
other              58 chrome/browser/extensions/menu_manager.h     bool operator!=(const ExtensionKey& other) const;
other              59 chrome/browser/extensions/menu_manager.h     bool operator<(const ExtensionKey& other) const;
other              73 chrome/browser/extensions/menu_manager.h     bool operator==(const Id& other) const;
other              74 chrome/browser/extensions/menu_manager.h     bool operator!=(const Id& other) const;
other              75 chrome/browser/extensions/menu_manager.h     bool operator<(const Id& other) const;
other             111 chrome/browser/extensions/menu_manager.h     ContextList(const ContextList& other) : value_(other.value_) {}
other             113 chrome/browser/extensions/menu_manager.h     void operator=(const ContextList& other) {
other             114 chrome/browser/extensions/menu_manager.h       value_ = other.value_;
other             117 chrome/browser/extensions/menu_manager.h     bool operator==(const ContextList& other) const {
other             118 chrome/browser/extensions/menu_manager.h       return value_ == other.value_;
other             121 chrome/browser/extensions/menu_manager.h     bool operator!=(const ContextList& other) const {
other             122 chrome/browser/extensions/menu_manager.h       return !(*this == other);
other              46 chrome/browser/extensions/pending_extension_info.cc int PendingExtensionInfo::CompareTo(const PendingExtensionInfo& other) const {
other              47 chrome/browser/extensions/pending_extension_info.cc   DCHECK_EQ(id_, other.id_);
other              48 chrome/browser/extensions/pending_extension_info.cc   if (version_.IsValid() && other.version_.IsValid()) {
other              49 chrome/browser/extensions/pending_extension_info.cc     int comparison = version_.CompareTo(other.version_);
other              58 chrome/browser/extensions/pending_extension_info.cc   if (install_source_ == other.install_source_) {
other              67 chrome/browser/extensions/pending_extension_info.cc           install_source_, other.install_source_);
other              74 chrome/browser/extensions/pending_extension_info.h   int CompareTo(const PendingExtensionInfo& other) const;
other             158 chrome/browser/extensions/updater/manifest_fetch_data.cc void ManifestFetchData::Merge(const ManifestFetchData& other) {
other             159 chrome/browser/extensions/updater/manifest_fetch_data.cc   DCHECK(full_url() == other.full_url());
other             160 chrome/browser/extensions/updater/manifest_fetch_data.cc   request_ids_.insert(other.request_ids_.begin(), other.request_ids_.end());
other              76 chrome/browser/extensions/updater/manifest_fetch_data.h   void Merge(const ManifestFetchData& other);
other              36 chrome/browser/history/history_types.cc URLRow& URLRow::operator=(const URLRow& other) {
other              37 chrome/browser/history/history_types.cc   id_ = other.id_;
other              38 chrome/browser/history/history_types.cc   url_ = other.url_;
other              39 chrome/browser/history/history_types.cc   title_ = other.title_;
other              40 chrome/browser/history/history_types.cc   visit_count_ = other.visit_count_;
other              41 chrome/browser/history/history_types.cc   typed_count_ = other.typed_count_;
other              42 chrome/browser/history/history_types.cc   last_visit_ = other.last_visit_;
other              43 chrome/browser/history/history_types.cc   hidden_ = other.hidden_;
other              47 chrome/browser/history/history_types.cc void URLRow::Swap(URLRow* other) {
other              48 chrome/browser/history/history_types.cc   std::swap(id_, other->id_);
other              49 chrome/browser/history/history_types.cc   url_.Swap(&other->url_);
other              50 chrome/browser/history/history_types.cc   title_.swap(other->title_);
other              51 chrome/browser/history/history_types.cc   std::swap(visit_count_, other->visit_count_);
other              52 chrome/browser/history/history_types.cc   std::swap(typed_count_, other->typed_count_);
other              53 chrome/browser/history/history_types.cc   std::swap(last_visit_, other->last_visit_);
other              54 chrome/browser/history/history_types.cc   std::swap(hidden_, other->hidden_);
other             116 chrome/browser/history/history_types.cc void URLResult::SwapResult(URLResult* other) {
other             117 chrome/browser/history/history_types.cc   URLRow::Swap(other);
other             118 chrome/browser/history/history_types.cc   std::swap(visit_time_, other->visit_time_);
other             119 chrome/browser/history/history_types.cc   snippet_.Swap(&other->snippet_);
other             120 chrome/browser/history/history_types.cc   title_match_positions_.swap(other->title_match_positions_);
other             121 chrome/browser/history/history_types.cc   std::swap(blocked_visit_, other->blocked_visit_);
other             153 chrome/browser/history/history_types.cc void QueryResults::Swap(QueryResults* other) {
other             154 chrome/browser/history/history_types.cc   std::swap(first_time_searched_, other->first_time_searched_);
other             155 chrome/browser/history/history_types.cc   std::swap(reached_beginning_, other->reached_beginning_);
other             156 chrome/browser/history/history_types.cc   results_.swap(other->results_);
other             157 chrome/browser/history/history_types.cc   url_to_results_.swap(other->url_to_results_);
other              76 chrome/browser/history/history_types.h   URLRow& operator=(const URLRow& other);
other             153 chrome/browser/history/history_types.h   void Swap(URLRow* other);
other             255 chrome/browser/history/history_types.h   bool operator<(const VisitRow& other) {
other             256 chrome/browser/history/history_types.h     return visit_time < other.visit_time;
other             308 chrome/browser/history/history_types.h   void SwapResult(URLResult* other);
other             388 chrome/browser/history/history_types.h   void Swap(QueryResults* other);
other             526 chrome/browser/history/history_types.h   bool operator==(const MostVisitedURL& other) {
other             527 chrome/browser/history/history_types.h     return url == other.url;
other             294 chrome/browser/history/snippet.cc void Snippet::Swap(Snippet* other) {
other             295 chrome/browser/history/snippet.cc   text_.swap(other->text_);
other             296 chrome/browser/history/snippet.cc   matches_.swap(other->matches_);
other              59 chrome/browser/history/snippet.h   void Swap(Snippet* other);
other             144 chrome/browser/icon_manager.cc bool IconManager::CacheKey::operator<(const CacheKey &other) const {
other             145 chrome/browser/icon_manager.cc   if (group != other.group)
other             146 chrome/browser/icon_manager.cc     return group < other.group;
other             147 chrome/browser/icon_manager.cc   return size < other.size;
other              98 chrome/browser/icon_manager.h     bool operator<(const CacheKey &other) const;
other              70 chrome/browser/media_galleries/media_file_system_registry_unittest.cc     bool operator<(const FSInfo& other) const;
other             111 chrome/browser/media_galleries/media_file_system_registry_unittest.cc bool TestMediaFileSystemContext::FSInfo::operator<(const FSInfo& other) const {
other             112 chrome/browser/media_galleries/media_file_system_registry_unittest.cc   if (device_id != other.device_id)
other             113 chrome/browser/media_galleries/media_file_system_registry_unittest.cc     return device_id < other.device_id;
other             114 chrome/browser/media_galleries/media_file_system_registry_unittest.cc   if (path.value() != other.path.value())
other             115 chrome/browser/media_galleries/media_file_system_registry_unittest.cc     return path.value() < other.path.value();
other             116 chrome/browser/media_galleries/media_file_system_registry_unittest.cc   return fs_name < other.fs_name;
other              22 chrome/browser/native_window_notification_source.h   explicit Source(const content::NotificationSource& other)
other              23 chrome/browser/native_window_notification_source.h       : content::NotificationSource(other) {}
other             272 chrome/browser/net/chrome_url_request_context.cc void ChromeURLRequestContext::CopyFrom(ChromeURLRequestContext* other) {
other             273 chrome/browser/net/chrome_url_request_context.cc   URLRequestContext::CopyFrom(other);
other              37 chrome/browser/net/chrome_url_request_context.h   void CopyFrom(ChromeURLRequestContext* other);
other             296 chrome/browser/net/pref_proxy_config_tracker_impl_unittest.cc   CommandLineTestParams& operator=(const CommandLineTestParams& other) {
other             297 chrome/browser/net/pref_proxy_config_tracker_impl_unittest.cc     description = other.description;
other             299 chrome/browser/net/pref_proxy_config_tracker_impl_unittest.cc       switches[i] = other.switches[i];
other             300 chrome/browser/net/pref_proxy_config_tracker_impl_unittest.cc     is_null = other.is_null;
other             301 chrome/browser/net/pref_proxy_config_tracker_impl_unittest.cc     auto_detect = other.auto_detect;
other             302 chrome/browser/net/pref_proxy_config_tracker_impl_unittest.cc     pac_url = other.pac_url;
other             303 chrome/browser/net/pref_proxy_config_tracker_impl_unittest.cc     proxy_rules = other.proxy_rules;
other             318 chrome/browser/notifications/sync_notifier/synced_notification.cc     const SyncedNotification& other) const {
other             319 chrome/browser/notifications/sync_notifier/synced_notification.cc   if (GetTitle() == other.GetTitle() &&
other             320 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetHeading() == other.GetHeading() &&
other             321 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetDescription() == other.GetDescription() &&
other             322 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetAnnotation() == other.GetAnnotation() &&
other             323 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetAppId() == other.GetAppId() &&
other             324 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetKey() == other.GetKey() &&
other             325 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetOriginUrl() == other.GetOriginUrl() &&
other             326 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetAppIconUrl() == other.GetAppIconUrl() &&
other             327 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetImageUrl() == other.GetImageUrl() &&
other             328 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetText() == other.GetText() &&
other             330 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetCreationTime() == other.GetCreationTime() &&
other             331 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetPriority() == other.GetPriority() &&
other             332 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetDefaultDestinationTitle() == other.GetDefaultDestinationTitle() &&
other             333 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetDefaultDestinationIconUrl() == other.GetDefaultDestinationIconUrl() &&
other             334 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetNotificationCount() == other.GetNotificationCount() &&
other             335 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetButtonCount() == other.GetButtonCount() &&
other             336 chrome/browser/notifications/sync_notifier/synced_notification.cc       GetProfilePictureCount() == other.GetProfilePictureCount()) {
other             343 chrome/browser/notifications/sync_notifier/synced_notification.cc           other.GetContainedNotificationTitle(ii))
other             346 chrome/browser/notifications/sync_notifier/synced_notification.cc           other.GetContainedNotificationMessage(ii))
other             353 chrome/browser/notifications/sync_notifier/synced_notification.cc       if (GetButtonTitle(jj) != other.GetButtonTitle(jj))
other             355 chrome/browser/notifications/sync_notifier/synced_notification.cc       if (GetButtonIconUrl(jj) != other.GetButtonIconUrl(jj))
other             362 chrome/browser/notifications/sync_notifier/synced_notification.cc       if (GetProfilePictureUrl(kk) != other.GetProfilePictureUrl(kk))
other              76 chrome/browser/notifications/sync_notifier/synced_notification.h   bool EqualsIgnoringReadState(const SyncedNotification& other) const;
other              88 chrome/browser/performance_monitor/database_unittest.cc   explicit TestingClock(const TestingClock& other)
other              89 chrome/browser/performance_monitor/database_unittest.cc       : counter_(other.counter_) {
other             129 chrome/browser/prerender/prerender_handle.cc     PrerenderHandle* other) const {
other             130 chrome/browser/prerender/prerender_handle.cc   return other && other->prerender_data_.get() && prerender_data_.get()
other             131 chrome/browser/prerender/prerender_handle.cc       && prerender_data_.get() == other->prerender_data_.get();
other              88 chrome/browser/prerender/prerender_handle.h   bool RepresentingSamePrerenderAs(PrerenderHandle* other) const;
other              64 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc MATCHER_P(PartiallyEqualVerdict, other, "") {
other              65 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc   return (other.url() == arg.url() &&
other              66 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc           other.client_score() == arg.client_score() &&
other              67 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc           other.is_phishing() == arg.is_phishing());
other              70 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc MATCHER_P(PartiallyEqualMalwareVerdict, other, "") {
other              71 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc   if (other.url() != arg.url() ||
other              72 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc       other.referrer_url() != arg.referrer_url() ||
other              73 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc       other.bad_ip_url_info_size() != arg.bad_ip_url_info_size())
other              76 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc   for (int i = 0; i < other.bad_ip_url_info_size(); ++i) {
other              77 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc     if (other.bad_ip_url_info(i).ip() != arg.bad_ip_url_info(i).ip() ||
other              78 chrome/browser/safe_browsing/client_side_detection_host_unittest.cc         other.bad_ip_url_info(i).url() != arg.bad_ip_url_info(i).url())
other            1142 chrome/browser/search_engines/template_url.cc bool TemplateURL::HasSameKeywordAs(const TemplateURL& other) const {
other            1143 chrome/browser/search_engines/template_url.cc   return (data_.keyword() == other.data_.keyword()) ||
other            1145 chrome/browser/search_engines/template_url.cc        other.IsGoogleSearchURLWithReplaceableKeyword());
other            1281 chrome/browser/search_engines/template_url.cc void TemplateURL::CopyFrom(const TemplateURL& other) {
other            1282 chrome/browser/search_engines/template_url.cc   if (this == &other)
other            1285 chrome/browser/search_engines/template_url.cc   profile_ = other.profile_;
other            1286 chrome/browser/search_engines/template_url.cc   data_ = other.data_;
other            1290 chrome/browser/search_engines/template_url.cc   SetPrepopulateId(other.data_.prepopulate_id);
other             651 chrome/browser/search_engines/template_url.h   bool HasSameKeywordAs(const TemplateURL& other) const;
other             733 chrome/browser/search_engines/template_url.h   void CopyFrom(const TemplateURL& other);
other            1145 chrome/browser/search_engines/template_url_service_sync_unittest.cc   TemplateURL* other =
other            1147 chrome/browser/search_engines/template_url_service_sync_unittest.cc   model()->Add(other);
other            1163 chrome/browser/search_engines/template_url_service_sync_unittest.cc   const std::string local_other_guid = other->sync_guid();
other             177 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc     const SpellcheckCustomDictionary::Change& other)
other             178 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc     : to_add_(other.to_add()),
other             179 chrome/browser/spellchecker/spellcheck_custom_dictionary.cc       to_remove_(other.to_remove()) {
other              34 chrome/browser/spellchecker/spellcheck_custom_dictionary.h     Change(const Change& other);
other              79 chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc SpellcheckHunspellDictionary::DictionaryFile::DictionaryFile(RValue other)
other              80 chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc     : path(other.object->path),
other              81 chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc       file(other.object->file.Pass()) {
other              85 chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc SpellcheckHunspellDictionary::DictionaryFile::operator=(RValue other) {
other              86 chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc   if (this != other.object) {
other              87 chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc     path = other.object->path;
other              88 chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc     file = other.object->file.Pass();
other              97 chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h     DictionaryFile(RValue other);
other              98 chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h     DictionaryFile& operator=(RValue other);
other             121 chrome/browser/sync/glue/device_info.cc bool DeviceInfo::Equals(const DeviceInfo& other) const {
other             122 chrome/browser/sync/glue/device_info.cc   return this->guid() == other.guid()
other             123 chrome/browser/sync/glue/device_info.cc       && this->client_name() == other.client_name()
other             124 chrome/browser/sync/glue/device_info.cc       && this->chrome_version() == other.chrome_version()
other             125 chrome/browser/sync/glue/device_info.cc       && this->sync_user_agent() == other.sync_user_agent()
other             126 chrome/browser/sync/glue/device_info.cc       && this->device_type() == other.device_type();
other              64 chrome/browser/sync/glue/device_info.h   bool Equals(const DeviceInfo& other) const;
other             130 chrome/browser/sync/test/integration/search_engines_helper.cc   TemplateURLService* other = GetServiceForBrowserContext(profile_index);
other             133 chrome/browser/sync/test/integration/search_engines_helper.cc   CHECK(other);
other             137 chrome/browser/sync/test/integration/search_engines_helper.cc   if (verifier_turls.size() != other->GetTemplateURLs().size()) {
other             140 chrome/browser/sync/test/integration/search_engines_helper.cc                << other->GetTemplateURLs().size() << " respectively.";
other             147 chrome/browser/sync/test/integration/search_engines_helper.cc     const TemplateURL* other_turl = other->GetTemplateURLForKeyword(
other              31 chrome/browser/sync/test/integration/sync_app_helper.cc   bool Equals(const AppState& other) const;
other              48 chrome/browser/sync/test/integration/sync_app_helper.cc bool AppState::Equals(const AppState& other) const {
other              49 chrome/browser/sync/test/integration/sync_app_helper.cc   return app_launch_ordinal.Equals(other.app_launch_ordinal) &&
other              50 chrome/browser/sync/test/integration/sync_app_helper.cc       page_ordinal.Equals(other.page_ordinal) &&
other              51 chrome/browser/sync/test/integration/sync_app_helper.cc       launch_type == other.launch_type;
other              37 chrome/browser/sync/test/integration/sync_extension_helper.cc     const SyncExtensionHelper::ExtensionState &other) const {
other              38 chrome/browser/sync/test/integration/sync_extension_helper.cc   return ((enabled_state == other.enabled_state) &&
other              39 chrome/browser/sync/test/integration/sync_extension_helper.cc           (incognito_enabled == other.incognito_enabled));
other              84 chrome/browser/sync/test/integration/sync_extension_helper.h     bool Equals(const ExtensionState &other) const;
other              39 chrome/browser/ui/app_list/search/mixer.cc   bool operator<(const SortData& other) const {
other              41 chrome/browser/ui/app_list/search/mixer.cc     return score > other.score;
other              50 chrome/browser/ui/autofill/generated_credit_card_bubble_controller.cc bool TextRange::operator==(const TextRange& other) const {
other              51 chrome/browser/ui/autofill/generated_credit_card_bubble_controller.cc   return other.range == range && other.is_link == is_link;
other              40 chrome/browser/ui/autofill/generated_credit_card_bubble_controller.h   bool operator==(const TextRange& other) const;
other             884 chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc bool TabStripGtk::IsCompatibleWith(TabStripGtk* other) {
other             885 chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc   return model_->profile() == other->model()->profile();
other              83 chrome/browser/ui/gtk/tabs/tab_strip_gtk.h   bool IsCompatibleWith(TabStripGtk* other);
other              22 chrome/browser/ui/singleton_tabs.cc     const GURL& other,
other              24 chrome/browser/ui/singleton_tabs.cc   if (url == other)
other              28 chrome/browser/ui/singleton_tabs.cc   GURL other_replaced = other.ReplaceComponents(replacements);
other             142 chrome/browser/ui/tabs/dock_info.h   bool equals(const DockInfo& other) const {
other             143 chrome/browser/ui/tabs/dock_info.h     return type_ == other.type_ && window_ == other.window_ &&
other             144 chrome/browser/ui/tabs/dock_info.h            monitor_bounds_ == other.monitor_bounds_;
other             779 chrome/browser/ui/tabs/tab_strip_model_unittest.cc   WebContents* other = CreateWebContents();
other             780 chrome/browser/ui/tabs/tab_strip_model_unittest.cc   tabstrip.AppendWebContents(other, false);
other             792 chrome/browser/ui/tabs/tab_strip_model_unittest.cc   EXPECT_EQ(other, tabstrip.GetWebContentsAt(4));
other             153 chrome/browser/ui/toolbar/recent_tabs_sub_menu_model.cc   bool operator<(const TabNavigationItem& other) const {
other             154 chrome/browser/ui/toolbar/recent_tabs_sub_menu_model.cc     return url < other.url;
other             337 chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc   bool Equals(const DropLocation& other) {
other             338 chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc     return ((other.index == index) && (other.on == on) &&
other             339 chrome/browser/ui/views/bookmarks/bookmark_bar_view.cc             (other.button_type == button_type));
other              24 chrome/browser/ui/views/frame/browser_view_browsertest.cc                           content::WebContents* other)
other              26 chrome/browser/ui/views/frame/browser_view_browsertest.cc         other_(other) {}
other             372 chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc bool BrowserTabStripController::IsCompatibleWith(TabStrip* other) const {
other             374 chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc       static_cast<BrowserTabStripController*>(other->controller())->profile();
other              70 chrome/browser/ui/views/tabs/browser_tab_strip_controller.h   virtual bool IsCompatibleWith(TabStrip* other) const OVERRIDE;
other             104 chrome/browser/ui/views/tabs/fake_base_tab_strip_controller.cc bool FakeBaseTabStripController::IsCompatibleWith(TabStrip* other) const {
other              47 chrome/browser/ui/views/tabs/fake_base_tab_strip_controller.h   virtual bool IsCompatibleWith(TabStrip* other) const OVERRIDE;
other              92 chrome/browser/ui/views/tabs/tab_strip_controller.h   virtual bool IsCompatibleWith(TabStrip* other) const = 0;
other              44 chrome/browser/ui/webui/options/pepper_flash_content_settings_utils.cc bool MediaException::operator==(const MediaException& other) const {
other              45 chrome/browser/ui/webui/options/pepper_flash_content_settings_utils.cc   return pattern == other.pattern &&
other              46 chrome/browser/ui/webui/options/pepper_flash_content_settings_utils.cc          audio_setting == other.audio_setting &&
other              47 chrome/browser/ui/webui/options/pepper_flash_content_settings_utils.cc          video_setting == other.video_setting;
other              23 chrome/browser/ui/webui/options/pepper_flash_content_settings_utils.h   bool operator==(const MediaException& other) const;
other             508 chrome/common/content_settings_pattern.cc     const ContentSettingsPattern& other) const {
other             512 chrome/common/content_settings_pattern.cc   if ((this == &other) ||
other             513 chrome/common/content_settings_pattern.cc       (!is_valid_ && !other.is_valid_))
other             516 chrome/common/content_settings_pattern.cc   if (!is_valid_ && other.is_valid_)
other             518 chrome/common/content_settings_pattern.cc   if (is_valid_ && !other.is_valid_)
other             522 chrome/common/content_settings_pattern.cc   Relation host_relation = CompareHost(parts_, other.parts_);
other             527 chrome/common/content_settings_pattern.cc   Relation port_relation = ComparePort(parts_, other.parts_);
other             532 chrome/common/content_settings_pattern.cc   Relation scheme_relation = CompareScheme(parts_, other.parts_);
other             545 chrome/common/content_settings_pattern.cc     const ContentSettingsPattern& other) const {
other             546 chrome/common/content_settings_pattern.cc   return Compare(other) == IDENTITY;
other             550 chrome/common/content_settings_pattern.cc     const ContentSettingsPattern& other) const {
other             551 chrome/common/content_settings_pattern.cc   return !(*this == other);
other             555 chrome/common/content_settings_pattern.cc     const ContentSettingsPattern& other) const {
other             556 chrome/common/content_settings_pattern.cc   return Compare(other) < 0;
other             560 chrome/common/content_settings_pattern.cc     const ContentSettingsPattern& other) const {
other             561 chrome/common/content_settings_pattern.cc   return Compare(other) > 0;
other             187 chrome/common/content_settings_pattern.h   Relation Compare(const ContentSettingsPattern& other) const;
other             190 chrome/common/content_settings_pattern.h   bool operator==(const ContentSettingsPattern& other) const;
other             193 chrome/common/content_settings_pattern.h   bool operator!=(const ContentSettingsPattern& other) const;
other             196 chrome/common/content_settings_pattern.h   bool operator<(const ContentSettingsPattern& other) const;
other             199 chrome/common/content_settings_pattern.h   bool operator>(const ContentSettingsPattern& other) const;
other              83 chrome/common/custom_handlers/protocol_handler.cc bool ProtocolHandler::operator==(const ProtocolHandler& other) const {
other              84 chrome/common/custom_handlers/protocol_handler.cc   return protocol_ == other.protocol_ &&
other              85 chrome/common/custom_handlers/protocol_handler.cc     url_ == other.url_ &&
other              86 chrome/common/custom_handlers/protocol_handler.cc     title_ == other.title_;
other              89 chrome/common/custom_handlers/protocol_handler.cc bool ProtocolHandler::IsEquivalent(const ProtocolHandler& other) const {
other              90 chrome/common/custom_handlers/protocol_handler.cc   return protocol_ == other.protocol_ && url_ == other.url_;
other              93 chrome/common/custom_handlers/protocol_handler.cc bool ProtocolHandler::operator<(const ProtocolHandler& other) const {
other              94 chrome/common/custom_handlers/protocol_handler.cc   return title_ < other.title_;
other              43 chrome/common/custom_handlers/protocol_handler.h   bool IsEquivalent(const ProtocolHandler& other) const;
other              63 chrome/common/custom_handlers/protocol_handler.h   bool operator==(const ProtocolHandler& other) const;
other              64 chrome/common/custom_handlers/protocol_handler.h   bool operator<(const ProtocolHandler& other) const;
other             153 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc   const BluetoothManifestPermission* other =
other             159 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc       uuids_, other->uuids_);
other             165 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc   const BluetoothManifestPermission* other =
other             171 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc       uuids_, other->uuids_);
other             177 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc   const BluetoothManifestPermission* other =
other             183 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc       uuids_, other->uuids_);
other             189 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc   const BluetoothManifestPermission* other =
other             192 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc   return base::STLIncludes(uuids_, other->uuids_);
other             196 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc   const BluetoothManifestPermission* other =
other             199 chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.cc   return (uuids_ == other->uuids_);
other             154 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc     const ManifestPermissionImpl* other =
other             159 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc         !other->override_bookmarks_ui_permission_)).release();
other             164 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc     const ManifestPermissionImpl* other =
other             169 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc         other->override_bookmarks_ui_permission_)).release();
other             174 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc     const ManifestPermissionImpl* other =
other             179 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc         other->override_bookmarks_ui_permission_)).release();
other             183 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc     const ManifestPermissionImpl* other =
other             186 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc     return !other->override_bookmarks_ui_permission_ ||
other             191 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc     const ManifestPermissionImpl* other =
other             195 chrome/common/extensions/manifest_handlers/settings_overrides_handler.cc         other->override_bookmarks_ui_permission_;
other              74 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc     const ManifestPermissionImpl* other =
other              79 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc         !other->override_bookmarks_ui_permission_)).release();
other              84 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc     const ManifestPermissionImpl* other =
other              89 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc         other->override_bookmarks_ui_permission_)).release();
other              94 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc     const ManifestPermissionImpl* other =
other              99 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc         other->override_bookmarks_ui_permission_)).release();
other             103 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc     const ManifestPermissionImpl* other =
other             106 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc     return !other->override_bookmarks_ui_permission_ ||
other             111 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc     const ManifestPermissionImpl* other =
other             115 chrome/common/extensions/manifest_handlers/ui_overrides_handler.cc         other->override_bookmarks_ui_permission_;
other              14 chrome/common/importer/imported_bookmark_entry.cc     const ImportedBookmarkEntry& other) const {
other              15 chrome/common/importer/imported_bookmark_entry.cc   return (in_toolbar == other.in_toolbar &&
other              16 chrome/common/importer/imported_bookmark_entry.cc           is_folder == other.is_folder &&
other              17 chrome/common/importer/imported_bookmark_entry.cc           url == other.url &&
other              18 chrome/common/importer/imported_bookmark_entry.cc           path == other.path &&
other              19 chrome/common/importer/imported_bookmark_entry.cc           title == other.title &&
other              20 chrome/common/importer/imported_bookmark_entry.cc           creation_time == other.creation_time);
other              18 chrome/common/importer/imported_bookmark_entry.h   bool operator==(const ImportedBookmarkEntry& other) const;
other              22 chrome/common/media_galleries/iphoto_library.cc bool Photo::operator<(const Photo& other) const {
other              23 chrome/common/media_galleries/iphoto_library.cc   return id < other.id;
other              24 chrome/common/media_galleries/iphoto_library.h   bool operator<(const Photo& other) const;
other              19 chrome/common/media_galleries/itunes_library.cc bool Track::operator<(const Track& other) const {
other              20 chrome/common/media_galleries/itunes_library.cc   return id < other.id;
other              22 chrome/common/media_galleries/itunes_library.h   bool operator<(const Track& other) const;
other              69 chrome/common/media_galleries/picasa_types.cc AlbumTableFiles::AlbumTableFiles(RValue other)
other              70 chrome/common/media_galleries/picasa_types.cc     : indicator_file(other.object->indicator_file.Pass()),
other              71 chrome/common/media_galleries/picasa_types.cc       category_file(other.object->category_file.Pass()),
other              72 chrome/common/media_galleries/picasa_types.cc       date_file(other.object->date_file.Pass()),
other              73 chrome/common/media_galleries/picasa_types.cc       filename_file(other.object->filename_file.Pass()),
other              74 chrome/common/media_galleries/picasa_types.cc       name_file(other.object->name_file.Pass()),
other              75 chrome/common/media_galleries/picasa_types.cc       token_file(other.object->token_file.Pass()),
other              76 chrome/common/media_galleries/picasa_types.cc       uid_file(other.object->uid_file.Pass()) {
other              79 chrome/common/media_galleries/picasa_types.cc AlbumTableFiles& AlbumTableFiles::operator=(RValue other) {
other              80 chrome/common/media_galleries/picasa_types.cc   if (this != other.object) {
other              81 chrome/common/media_galleries/picasa_types.cc     indicator_file = other.object->indicator_file.Pass();
other              82 chrome/common/media_galleries/picasa_types.cc     category_file = other.object->category_file.Pass();
other              83 chrome/common/media_galleries/picasa_types.cc     date_file = other.object->date_file.Pass();
other              84 chrome/common/media_galleries/picasa_types.cc     filename_file = other.object->filename_file.Pass();
other              85 chrome/common/media_galleries/picasa_types.cc     name_file = other.object->name_file.Pass();
other              86 chrome/common/media_galleries/picasa_types.cc     token_file = other.object->token_file.Pass();
other              87 chrome/common/media_galleries/picasa_types.cc     uid_file = other.object->uid_file.Pass();
other              65 chrome/common/media_galleries/picasa_types.h   AlbumTableFiles(RValue other);
other              66 chrome/common/media_galleries/picasa_types.h   AlbumTableFiles& operator=(RValue other);
other              36 chrome/common/metrics/metrics_log_manager.cc     MetricsLogManager::SerializedLog* other) {
other              37 chrome/common/metrics/metrics_log_manager.cc   log_text_.swap(other->log_text_);
other              38 chrome/common/metrics/metrics_log_manager.cc   log_hash_.swap(other->log_hash_);
other              45 chrome/common/metrics/metrics_log_manager.h     void Swap(SerializedLog* other);
other              54 chrome/installer/util/app_commands.cc AppCommands& AppCommands::CopyFrom(const AppCommands& other) {
other              55 chrome/installer/util/app_commands.cc   commands_ = other.commands_;
other              42 chrome/installer/util/app_commands.h   AppCommands& CopyFrom(const AppCommands& other);
other              36 chrome/installer/util/channel_info.h   bool Equals(const ChannelInfo& other) const {
other              37 chrome/installer/util/channel_info.h     return value_ == other.value_;
other             403 chrome/installer/util/install_util_unittest.cc   base::FilePath other(some_long_dir.Append(L"otherfile.txt"));
other             409 chrome/installer/util/install_util_unittest.cc       L"\"" + other.value() + L"\""));
other             423 chrome/installer/util/install_util_unittest.cc       L"\"" + other.value() + L"\""));
other             156 chrome/installer/util/installation_state.cc ProductState& ProductState::CopyFrom(const ProductState& other) {
other             157 chrome/installer/util/installation_state.cc   channel_.set_value(other.channel_.value());
other             158 chrome/installer/util/installation_state.cc   version_.reset(other.version_.get() ? new Version(*other.version_) : NULL);
other             160 chrome/installer/util/installation_state.cc       other.old_version_.get() ? new Version(*other.old_version_) : NULL);
other             161 chrome/installer/util/installation_state.cc   brand_ = other.brand_;
other             162 chrome/installer/util/installation_state.cc   rename_cmd_ = other.rename_cmd_;
other             163 chrome/installer/util/installation_state.cc   uninstall_command_ = other.uninstall_command_;
other             164 chrome/installer/util/installation_state.cc   oem_install_ = other.oem_install_;
other             165 chrome/installer/util/installation_state.cc   commands_.CopyFrom(other.commands_);
other             166 chrome/installer/util/installation_state.cc   eula_accepted_ = other.eula_accepted_;
other             167 chrome/installer/util/installation_state.cc   usagestats_ = other.usagestats_;
other             168 chrome/installer/util/installation_state.cc   msi_ = other.msi_;
other             169 chrome/installer/util/installation_state.cc   multi_install_ = other.multi_install_;
other             170 chrome/installer/util/installation_state.cc   has_eula_accepted_ = other.has_eula_accepted_;
other             171 chrome/installer/util/installation_state.cc   has_oem_install_ = other.has_oem_install_;
other             172 chrome/installer/util/installation_state.cc   has_usagestats_ = other.has_usagestats_;
other              97 chrome/installer/util/installation_state.h   ProductState& CopyFrom(const ProductState& other);
other              36 chrome/installer/util/registry_key_backup.h   void swap(RegistryKeyBackup& other) {
other              37 chrome/installer/util/registry_key_backup.h     key_data_.swap(other.key_data_);
other            1516 chrome/renderer/extensions/dispatcher.cc     bool adblock, bool adblock_plus, bool other) {
other            1519 chrome/renderer/extensions/dispatcher.cc   webrequest_other_ = other;
other              44 chrome/service/cloud_print/print_system.h   bool operator ==(const PrintJobDetails& other) const {
other              45 chrome/service/cloud_print/print_system.h     return (status == other.status) &&
other              46 chrome/service/cloud_print/print_system.h            (platform_status_flags == other.platform_status_flags) &&
other              47 chrome/service/cloud_print/print_system.h            (status_message == other.status_message) &&
other              48 chrome/service/cloud_print/print_system.h            (total_pages == other.total_pages) &&
other              49 chrome/service/cloud_print/print_system.h            (pages_printed == other.pages_printed);
other              52 chrome/service/cloud_print/print_system.h   bool operator !=(const PrintJobDetails& other) const {
other              53 chrome/service/cloud_print/print_system.h     return !(*this == other);
other             512 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp       value = std::string(reinterpret_cast<char*>(current->name.other.data),
other             513 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp                           current->name.other.len);
other             517 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp       value = std::string(reinterpret_cast<char*>(current->name.other.data),
other             518 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp                           current->name.other.len);
other             523 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp       value = ProcessRawBytes(&current->name.other);
other             531 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp       value = ProcessRawBytes(&current->name.other);
other             535 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp       value = std::string(reinterpret_cast<char*>(current->name.other.data),
other             536 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp                           current->name.other.len);
other             542 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp           current->name.other.data,
other             543 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp           current->name.other.data + current->name.other.len);
other             549 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp         value = ProcessRawBytes(&current->name.other);
other             555 chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp       value = DumpOidString(&current->name.other);
other              22 chrome/tools/ipclist/ipclist.cc   bool operator< (const msginfo& other) const {
other              23 chrome/tools/ipclist/ipclist.cc     return id < other.id;
other              84 chromeos/network/network_event_log.cc   bool ContentEquals(const LogEntry& other) const;
other             187 chromeos/network/network_event_log.cc bool LogEntry::ContentEquals(const LogEntry& other) const {
other             188 chromeos/network/network_event_log.cc   return file == other.file &&
other             189 chromeos/network/network_event_log.cc          file_line == other.file_line &&
other             190 chromeos/network/network_event_log.cc          event == other.event &&
other             191 chromeos/network/network_event_log.cc          description == other.description;
other              40 chromeos/network/network_state_unittest.cc   virtual bool Equals(const base::Value* other) const OVERRIDE {
other              41 chromeos/network/network_state_unittest.cc     if (other->GetType() != GetType())
other              44 chromeos/network/network_state_unittest.cc     return GetAsString(&lhs) && other->GetAsString(&rhs) && lhs == rhs;
other              72 chromeos/network/network_ui_data.cc NetworkUIData::NetworkUIData(const NetworkUIData& other) {
other              73 chromeos/network/network_ui_data.cc   *this = other;
other              76 chromeos/network/network_ui_data.cc NetworkUIData& NetworkUIData::operator=(const NetworkUIData& other) {
other              77 chromeos/network/network_ui_data.cc   certificate_pattern_ = other.certificate_pattern_;
other              78 chromeos/network/network_ui_data.cc   onc_source_ = other.onc_source_;
other              79 chromeos/network/network_ui_data.cc   certificate_type_ = other.certificate_type_;
other              80 chromeos/network/network_ui_data.cc   if (other.user_settings_)
other              81 chromeos/network/network_ui_data.cc     user_settings_.reset(other.user_settings_->DeepCopy());
other              82 chromeos/network/network_ui_data.cc   policy_guid_ = other.policy_guid_;
other              40 chromeos/network/network_ui_data.h   NetworkUIData(const NetworkUIData& other);
other              41 chromeos/network/network_ui_data.h   NetworkUIData& operator=(const NetworkUIData& other);
other             400 chromeos/network/shill_property_util.cc bool NetworkTypePattern::Equals(const NetworkTypePattern& other) const {
other             401 chromeos/network/shill_property_util.cc   return pattern_ == other.pattern_;
other             108 chromeos/network/shill_property_util.h   bool Equals(const NetworkTypePattern& other) const;
other              41 chromeos/process_proxy/process_proxy_registry.cc     const ProcessProxyInfo& other) {
other              43 chromeos/process_proxy/process_proxy_registry.cc   DCHECK(!other.proxy.get() && !other.watcher_thread.get());
other              37 chromeos/process_proxy/process_proxy_registry.h     ProcessProxyInfo(const ProcessProxyInfo& other);
other             149 components/autofill/content/browser/wallet/form_field_error.cc bool FormFieldError::operator==(const FormFieldError& other) const {
other             150 components/autofill/content/browser/wallet/form_field_error.cc   return error_type_ == other.error_type_ && location_ == other.location_;
other              73 components/autofill/content/browser/wallet/form_field_error.h   bool operator==(const FormFieldError& other) const;
other             240 components/autofill/content/browser/wallet/full_wallet.cc bool FullWallet::operator==(const FullWallet& other) const {
other             241 components/autofill/content/browser/wallet/full_wallet.cc   if (expiration_month_ != other.expiration_month_)
other             244 components/autofill/content/browser/wallet/full_wallet.cc   if (expiration_year_ != other.expiration_year_)
other             247 components/autofill/content/browser/wallet/full_wallet.cc   if (iin_ != other.iin_)
other             250 components/autofill/content/browser/wallet/full_wallet.cc   if (encrypted_rest_ != other.encrypted_rest_)
other             253 components/autofill/content/browser/wallet/full_wallet.cc   if (billing_address_.get() && other.billing_address_.get()) {
other             254 components/autofill/content/browser/wallet/full_wallet.cc     if (*billing_address_.get() != *other.billing_address_.get())
other             256 components/autofill/content/browser/wallet/full_wallet.cc   } else if (billing_address_.get() || other.billing_address_.get()) {
other             260 components/autofill/content/browser/wallet/full_wallet.cc   if (shipping_address_.get() && other.shipping_address_.get()) {
other             261 components/autofill/content/browser/wallet/full_wallet.cc     if (*shipping_address_.get() != *other.shipping_address_.get())
other             263 components/autofill/content/browser/wallet/full_wallet.cc   } else if (shipping_address_.get() || other.shipping_address_.get()) {
other             267 components/autofill/content/browser/wallet/full_wallet.cc   if (required_actions_ != other.required_actions_)
other             273 components/autofill/content/browser/wallet/full_wallet.cc bool FullWallet::operator!=(const FullWallet& other) const {
other             274 components/autofill/content/browser/wallet/full_wallet.cc   return !(*this == other);
other              69 components/autofill/content/browser/wallet/full_wallet.h   bool operator==(const FullWallet& other) const;
other              70 components/autofill/content/browser/wallet/full_wallet.h   bool operator!=(const FullWallet& other) const;
other              63 components/autofill/content/browser/wallet/gaia_account.cc bool GaiaAccount::operator==(const GaiaAccount& other) const {
other              64 components/autofill/content/browser/wallet/gaia_account.cc   return email_address_ == other.email_address_ &&
other              65 components/autofill/content/browser/wallet/gaia_account.cc       obfuscated_id_ == other.obfuscated_id_ &&
other              66 components/autofill/content/browser/wallet/gaia_account.cc       index_ == other.index_ &&
other              67 components/autofill/content/browser/wallet/gaia_account.cc       is_active_ == other.is_active_;
other              70 components/autofill/content/browser/wallet/gaia_account.cc bool GaiaAccount::operator!=(const GaiaAccount& other) const {
other              71 components/autofill/content/browser/wallet/gaia_account.cc   return !(*this == other);
other              34 components/autofill/content/browser/wallet/gaia_account.h   bool operator==(const GaiaAccount& other) const;
other              35 components/autofill/content/browser/wallet/gaia_account.h   bool operator!=(const GaiaAccount& other) const;
other             374 components/autofill/content/browser/wallet/wallet_address.cc bool Address::EqualsIgnoreID(const Address& other) const {
other             375 components/autofill/content/browser/wallet/wallet_address.cc   return country_name_code_ == other.country_name_code_ &&
other             376 components/autofill/content/browser/wallet/wallet_address.cc          recipient_name_ == other.recipient_name_ &&
other             377 components/autofill/content/browser/wallet/wallet_address.cc          street_address_ == other.street_address_ &&
other             378 components/autofill/content/browser/wallet/wallet_address.cc          locality_name_ == other.locality_name_ &&
other             379 components/autofill/content/browser/wallet/wallet_address.cc          dependent_locality_name_ == other.dependent_locality_name_ &&
other             380 components/autofill/content/browser/wallet/wallet_address.cc          administrative_area_name_ == other.administrative_area_name_ &&
other             381 components/autofill/content/browser/wallet/wallet_address.cc          postal_code_number_ == other.postal_code_number_ &&
other             382 components/autofill/content/browser/wallet/wallet_address.cc          sorting_code_ == other.sorting_code_ &&
other             383 components/autofill/content/browser/wallet/wallet_address.cc          phone_number_ == other.phone_number_ &&
other             384 components/autofill/content/browser/wallet/wallet_address.cc          is_complete_address_ == other.is_complete_address_;
other             392 components/autofill/content/browser/wallet/wallet_address.cc bool Address::operator==(const Address& other) const {
other             393 components/autofill/content/browser/wallet/wallet_address.cc   return object_id_ == other.object_id_ && EqualsIgnoreID(other);
other             396 components/autofill/content/browser/wallet/wallet_address.cc bool Address::operator!=(const Address& other) const {
other             397 components/autofill/content/browser/wallet/wallet_address.cc   return !(*this == other);
other             156 components/autofill/content/browser/wallet/wallet_address.h   bool EqualsIgnoreID(const Address& other) const;
other             159 components/autofill/content/browser/wallet/wallet_address.h   bool operator==(const Address& other) const;
other             160 components/autofill/content/browser/wallet/wallet_address.h   bool operator!=(const Address& other) const;
other             193 components/autofill/content/browser/wallet/wallet_items.cc     const WalletItems::MaskedInstrument& other) const {
other             194 components/autofill/content/browser/wallet/wallet_items.cc   if (descriptive_name_ != other.descriptive_name_)
other             196 components/autofill/content/browser/wallet/wallet_items.cc   if (type_ != other.type_)
other             198 components/autofill/content/browser/wallet/wallet_items.cc   if (last_four_digits_ != other.last_four_digits_)
other             200 components/autofill/content/browser/wallet/wallet_items.cc   if (expiration_month_ != other.expiration_month_)
other             202 components/autofill/content/browser/wallet/wallet_items.cc   if (expiration_year_ != other.expiration_year_)
other             205 components/autofill/content/browser/wallet/wallet_items.cc     if (other.address_) {
other             206 components/autofill/content/browser/wallet/wallet_items.cc       if (*address_ != *other.address_)
other             211 components/autofill/content/browser/wallet/wallet_items.cc   } else if (other.address_) {
other             214 components/autofill/content/browser/wallet/wallet_items.cc   if (status_ != other.status_)
other             216 components/autofill/content/browser/wallet/wallet_items.cc   if (object_id_ != other.object_id_)
other             222 components/autofill/content/browser/wallet/wallet_items.cc     const WalletItems::MaskedInstrument& other) const {
other             223 components/autofill/content/browser/wallet/wallet_items.cc   return !(*this == other);
other             387 components/autofill/content/browser/wallet/wallet_items.cc bool WalletItems::LegalDocument::operator==(const LegalDocument& other) const {
other             388 components/autofill/content/browser/wallet/wallet_items.cc   return id_ == other.id_ &&
other             389 components/autofill/content/browser/wallet/wallet_items.cc          url_ == other.url_ &&
other             390 components/autofill/content/browser/wallet/wallet_items.cc          display_name_ == other.display_name_;
other             393 components/autofill/content/browser/wallet/wallet_items.cc bool WalletItems::LegalDocument::operator!=(const LegalDocument& other) const {
other             394 components/autofill/content/browser/wallet/wallet_items.cc   return !(*this == other);
other             557 components/autofill/content/browser/wallet/wallet_items.cc bool WalletItems::operator==(const WalletItems& other) const {
other             558 components/autofill/content/browser/wallet/wallet_items.cc   return google_transaction_id_ == other.google_transaction_id_ &&
other             559 components/autofill/content/browser/wallet/wallet_items.cc          default_instrument_id_ == other.default_instrument_id_ &&
other             560 components/autofill/content/browser/wallet/wallet_items.cc          default_address_id_ == other.default_address_id_ &&
other             561 components/autofill/content/browser/wallet/wallet_items.cc          required_actions_ == other.required_actions_ &&
other             563 components/autofill/content/browser/wallet/wallet_items.cc          ObfuscatedGaiaId() == other.ObfuscatedGaiaId() &&
other             564 components/autofill/content/browser/wallet/wallet_items.cc          active_account_index() == other.active_account_index() &&
other             566 components/autofill/content/browser/wallet/wallet_items.cc                                       other.gaia_accounts()) &&
other             568 components/autofill/content/browser/wallet/wallet_items.cc                                             other.instruments()) &&
other             569 components/autofill/content/browser/wallet/wallet_items.cc          VectorsAreEqual<Address>(addresses(), other.addresses()) &&
other             571 components/autofill/content/browser/wallet/wallet_items.cc                                          other.legal_documents());
other             574 components/autofill/content/browser/wallet/wallet_items.cc bool WalletItems::operator!=(const WalletItems& other) const {
other             575 components/autofill/content/browser/wallet/wallet_items.cc   return !(*this == other);
other              87 components/autofill/content/browser/wallet/wallet_items.h     bool operator==(const MaskedInstrument& other) const;
other              88 components/autofill/content/browser/wallet/wallet_items.h     bool operator!=(const MaskedInstrument& other) const;
other             179 components/autofill/content/browser/wallet/wallet_items.h     bool operator==(const LegalDocument& other) const;
other             180 components/autofill/content/browser/wallet/wallet_items.h     bool operator!=(const LegalDocument& other) const;
other             215 components/autofill/content/browser/wallet/wallet_items.h   bool operator==(const WalletItems& other) const;
other             216 components/autofill/content/browser/wallet/wallet_items.h   bool operator!=(const WalletItems& other) const;
other             255 components/autofill/core/browser/phone_number_i18n.cc PhoneObject::PhoneObject(const PhoneObject& other) { *this = other; }
other             287 components/autofill/core/browser/phone_number_i18n.cc PhoneObject& PhoneObject::operator=(const PhoneObject& other) {
other             288 components/autofill/core/browser/phone_number_i18n.cc   if (this == &other)
other             291 components/autofill/core/browser/phone_number_i18n.cc   region_ = other.region_;
other             293 components/autofill/core/browser/phone_number_i18n.cc   if (other.i18n_number_.get())
other             294 components/autofill/core/browser/phone_number_i18n.cc     i18n_number_.reset(new PhoneNumber(*other.i18n_number_));
other             298 components/autofill/core/browser/phone_number_i18n.cc   country_code_ = other.country_code_;
other             299 components/autofill/core/browser/phone_number_i18n.cc   city_code_ = other.city_code_;
other             300 components/autofill/core/browser/phone_number_i18n.cc   number_ = other.number_;
other             302 components/autofill/core/browser/phone_number_i18n.cc   formatted_number_ = other.formatted_number_;
other             303 components/autofill/core/browser/phone_number_i18n.cc   whole_number_ = other.whole_number_;
other              90 components/autofill/core/browser/phone_number_i18n.h   PhoneObject& operator=(const PhoneObject& other);
other              12 components/autofill/core/common/form_data_predictions.cc FormDataPredictions::FormDataPredictions(const FormDataPredictions& other)
other              13 components/autofill/core/common/form_data_predictions.cc     : data(other.data),
other              14 components/autofill/core/common/form_data_predictions.cc       signature(other.signature),
other              15 components/autofill/core/common/form_data_predictions.cc       experiment_id(other.experiment_id),
other              16 components/autofill/core/common/form_data_predictions.cc       fields(other.fields) {
other              28 components/autofill/core/common/form_data_predictions.h   FormDataPredictions(const FormDataPredictions& other);
other              13 components/autofill/core/common/form_field_data_predictions.cc     const FormFieldDataPredictions& other)
other              14 components/autofill/core/common/form_field_data_predictions.cc     : field(other.field),
other              15 components/autofill/core/common/form_field_data_predictions.cc       signature(other.signature),
other              16 components/autofill/core/common/form_field_data_predictions.cc       heuristic_type(other.heuristic_type),
other              17 components/autofill/core/common/form_field_data_predictions.cc       server_type(other.server_type),
other              18 components/autofill/core/common/form_field_data_predictions.cc       overall_type(other.overall_type) {
other              18 components/autofill/core/common/form_field_data_predictions.h   FormFieldDataPredictions(const FormFieldDataPredictions& other);
other              18 components/autofill/core/common/password_form_fill_data.cc     const UsernamesCollectionKey& other) const {
other              19 components/autofill/core/common/password_form_fill_data.cc   if (username != other.username)
other              20 components/autofill/core/common/password_form_fill_data.cc     return username < other.username;
other              21 components/autofill/core/common/password_form_fill_data.cc   if (password != other.password)
other              22 components/autofill/core/common/password_form_fill_data.cc     return password < other.password;
other              23 components/autofill/core/common/password_form_fill_data.cc   return realm < other.realm;
other              22 components/autofill/core/common/password_form_fill_data.h   bool operator<(const UsernamesCollectionKey& other) const;
other             381 components/cloud_devices/printer_description.cc bool Color::operator==(const Color& other) const {
other             382 components/cloud_devices/printer_description.cc   return type == other.type && vendor_id == other.vendor_id &&
other             383 components/cloud_devices/printer_description.cc          custom_display_name == other.custom_display_name;
other             412 components/cloud_devices/printer_description.cc bool Margins::operator==(const Margins& other) const {
other             413 components/cloud_devices/printer_description.cc   return type == other.type &&
other             414 components/cloud_devices/printer_description.cc          top_um == other.top_um &&
other             415 components/cloud_devices/printer_description.cc          right_um == other.right_um &&
other             416 components/cloud_devices/printer_description.cc          bottom_um == other.bottom_um;
other             428 components/cloud_devices/printer_description.cc bool Dpi::operator==(const Dpi& other) const {
other             429 components/cloud_devices/printer_description.cc   return horizontal == other.horizontal && vertical == other.vertical;
other             476 components/cloud_devices/printer_description.cc bool Media::operator==(const Media& other) const {
other             477 components/cloud_devices/printer_description.cc   return type == other.type &&
other             478 components/cloud_devices/printer_description.cc          width_um == other.width_um &&
other             479 components/cloud_devices/printer_description.cc          height_um == other.height_um &&
other             480 components/cloud_devices/printer_description.cc          is_continuous_feed == other.is_continuous_feed;
other             491 components/cloud_devices/printer_description.cc bool Interval::operator==(const Interval& other) const {
other             492 components/cloud_devices/printer_description.cc   return start == other.start && end == other.end;
other              50 components/cloud_devices/printer_description.h   bool operator==(const Color& other) const;
other              51 components/cloud_devices/printer_description.h   bool operator!=(const Color& other) const {
other              52 components/cloud_devices/printer_description.h     return !(*this == other);
other              86 components/cloud_devices/printer_description.h   bool operator==(const Margins& other) const;
other              87 components/cloud_devices/printer_description.h   bool operator!=(const Margins& other) const {
other              88 components/cloud_devices/printer_description.h     return !(*this == other);
other             103 components/cloud_devices/printer_description.h   bool operator==(const Dpi& other) const;
other             104 components/cloud_devices/printer_description.h   bool operator!=(const Dpi& other) const {
other             105 components/cloud_devices/printer_description.h     return !(*this == other);
other             309 components/cloud_devices/printer_description.h   bool operator==(const Media& other) const;
other             310 components/cloud_devices/printer_description.h   bool operator!=(const Media& other) const {
other             311 components/cloud_devices/printer_description.h     return !(*this == other);
other             326 components/cloud_devices/printer_description.h   bool operator==(const Interval& other) const;
other             327 components/cloud_devices/printer_description.h   bool operator!=(const Interval& other) const {
other             328 components/cloud_devices/printer_description.h     return !(*this == other);
other               9 components/navigation_interception/navigation_params.cc NavigationParams::NavigationParams(const NavigationParams& other) {
other              10 components/navigation_interception/navigation_params.cc   Assign(other);
other              32 components/navigation_interception/navigation_params.cc void NavigationParams::Assign(const NavigationParams& other) {
other              33 components/navigation_interception/navigation_params.cc   url_ = other.url();
other              34 components/navigation_interception/navigation_params.cc   referrer_ = other.referrer();
other              35 components/navigation_interception/navigation_params.cc   has_user_gesture_ = other.has_user_gesture();
other              36 components/navigation_interception/navigation_params.cc   is_post_ = other.is_post();
other              37 components/navigation_interception/navigation_params.cc   transition_type_ = other.transition_type();
other              38 components/navigation_interception/navigation_params.cc   is_redirect_ = other.is_redirect();
other              23 components/navigation_interception/navigation_params.h   NavigationParams(const NavigationParams& other);
other              35 components/navigation_interception/navigation_params.h   void Assign(const NavigationParams& other);
other              28 components/password_manager/core/browser/password_store_change.h   bool operator==(const PasswordStoreChange& other) const {
other              29 components/password_manager/core/browser/password_store_change.h     return type() == other.type() &&
other              30 components/password_manager/core/browser/password_store_change.h            form().signon_realm == other.form().signon_realm &&
other              31 components/password_manager/core/browser/password_store_change.h            form().origin == other.form().origin &&
other              32 components/password_manager/core/browser/password_store_change.h            form().action == other.form().action &&
other              33 components/password_manager/core/browser/password_store_change.h            form().submit_element == other.form().submit_element &&
other              34 components/password_manager/core/browser/password_store_change.h            form().username_element == other.form().username_element &&
other              35 components/password_manager/core/browser/password_store_change.h            form().username_value == other.form().username_value &&
other              36 components/password_manager/core/browser/password_store_change.h            form().password_element == other.form().password_element &&
other              37 components/password_manager/core/browser/password_store_change.h            form().password_value == other.form().password_value &&
other              38 components/password_manager/core/browser/password_store_change.h            form().old_password_element == other.form().old_password_element &&
other              39 components/password_manager/core/browser/password_store_change.h            form().old_password_value == other.form().old_password_value &&
other              40 components/password_manager/core/browser/password_store_change.h            form().ssl_valid == other.form().ssl_valid &&
other              41 components/password_manager/core/browser/password_store_change.h            form().preferred == other.form().preferred &&
other              42 components/password_manager/core/browser/password_store_change.h            form().date_created == other.form().date_created &&
other              43 components/password_manager/core/browser/password_store_change.h            form().blacklisted_by_user == other.form().blacklisted_by_user &&
other              45 components/password_manager/core/browser/password_store_change.h                other.form().use_additional_authentication;
other              22 components/policy/core/common/cloud/cloud_external_data_manager.cc     const MetadataEntry& other) const {
other              23 components/policy/core/common/cloud/cloud_external_data_manager.cc   return url != other.url || hash != other.hash;
other              34 components/policy/core/common/cloud/cloud_external_data_manager.h     bool operator!=(const MetadataEntry& other) const;
other             170 components/policy/core/common/cloud/external_policy_data_updater.cc     const Request& other) const {
other             171 components/policy/core/common/cloud/external_policy_data_updater.cc   return url == other.url && hash == other.hash && max_size == other.max_size;
other              42 components/policy/core/common/cloud/external_policy_data_updater.h     bool operator==(const Request& other) const;
other              19 components/policy/core/common/external_data_fetcher.cc ExternalDataFetcher::ExternalDataFetcher(const ExternalDataFetcher& other)
other              20 components/policy/core/common/external_data_fetcher.cc     : manager_(other.manager_),
other              21 components/policy/core/common/external_data_fetcher.cc       policy_(other.policy_) {
other              29 components/policy/core/common/external_data_fetcher.h   ExternalDataFetcher(const ExternalDataFetcher& other);
other              32 components/policy/core/common/policy_bundle.cc void PolicyBundle::Swap(PolicyBundle* other) {
other              33 components/policy/core/common/policy_bundle.cc   policy_bundle_.swap(other->policy_bundle_);
other              36 components/policy/core/common/policy_bundle.cc void PolicyBundle::CopyFrom(const PolicyBundle& other) {
other              38 components/policy/core/common/policy_bundle.cc   for (PolicyBundle::const_iterator it = other.begin();
other              39 components/policy/core/common/policy_bundle.cc        it != other.end(); ++it) {
other              44 components/policy/core/common/policy_bundle.cc void PolicyBundle::MergeFrom(const PolicyBundle& other) {
other              49 components/policy/core/common/policy_bundle.cc   const_iterator it_other = other.begin();
other              50 components/policy/core/common/policy_bundle.cc   const_iterator end_other = other.end();
other              81 components/policy/core/common/policy_bundle.cc bool PolicyBundle::Equals(const PolicyBundle& other) const {
other              86 components/policy/core/common/policy_bundle.cc   const_iterator it_other = other.begin();
other              92 components/policy/core/common/policy_bundle.cc     while (it_other != other.end() && it_other->second->empty())
other              94 components/policy/core/common/policy_bundle.cc     if (it_this == end() || it_other == other.end())
other             103 components/policy/core/common/policy_bundle.cc   return it_this == end() && it_other == other.end();
other              33 components/policy/core/common/policy_bundle.h   void Swap(PolicyBundle* other);
other              36 components/policy/core/common/policy_bundle.h   void CopyFrom(const PolicyBundle& other);
other              44 components/policy/core/common/policy_bundle.h   void MergeFrom(const PolicyBundle& other);
other              47 components/policy/core/common/policy_bundle.h   bool Equals(const PolicyBundle& other) const;
other             217 components/policy/core/common/policy_bundle_unittest.cc   PolicyBundle other;
other             218 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_FALSE(bundle.Equals(other));
other             219 components/policy/core/common/policy_bundle_unittest.cc   other.CopyFrom(bundle);
other             220 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_TRUE(bundle.Equals(other));
other             224 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_FALSE(bundle.Equals(other));
other             225 components/policy/core/common/policy_bundle_unittest.cc   other.CopyFrom(bundle);
other             226 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_TRUE(bundle.Equals(other));
other             227 components/policy/core/common/policy_bundle_unittest.cc   AddTestPolicies(&other.Get(
other             229 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_FALSE(bundle.Equals(other));
other             231 components/policy/core/common/policy_bundle_unittest.cc   other.CopyFrom(bundle);
other             238 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_FALSE(bundle.Equals(other));
other             239 components/policy/core/common/policy_bundle_unittest.cc   other.CopyFrom(bundle);
other             240 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_TRUE(bundle.Equals(other));
other             247 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_FALSE(bundle.Equals(other));
other             251 components/policy/core/common/policy_bundle_unittest.cc   other.Clear();
other             254 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_TRUE(bundle.Equals(other));
other             257 components/policy/core/common/policy_bundle_unittest.cc   EXPECT_FALSE(bundle.Equals(other));
other              41 components/policy/core/common/policy_map.cc     const PolicyMap::Entry& other) const {
other              42 components/policy/core/common/policy_map.cc   if (level == other.level)
other              43 components/policy/core/common/policy_map.cc     return scope > other.scope;
other              45 components/policy/core/common/policy_map.cc     return level > other.level;
other              48 components/policy/core/common/policy_map.cc bool PolicyMap::Entry::Equals(const PolicyMap::Entry& other) const {
other              49 components/policy/core/common/policy_map.cc   return level == other.level &&
other              50 components/policy/core/common/policy_map.cc          scope == other.scope &&
other              51 components/policy/core/common/policy_map.cc          base::Value::Equals(value, other.value) &&
other              53 components/policy/core/common/policy_map.cc                                      other.external_data_fetcher);
other              94 components/policy/core/common/policy_map.cc void PolicyMap::Swap(PolicyMap* other) {
other              95 components/policy/core/common/policy_map.cc   map_.swap(other->map_);
other              98 components/policy/core/common/policy_map.cc void PolicyMap::CopyFrom(const PolicyMap& other) {
other             100 components/policy/core/common/policy_map.cc   for (const_iterator it = other.begin(); it != other.end(); ++it) {
other             114 components/policy/core/common/policy_map.cc void PolicyMap::MergeFrom(const PolicyMap& other) {
other             115 components/policy/core/common/policy_map.cc   for (const_iterator it = other.begin(); it != other.end(); ++it) {
other             136 components/policy/core/common/policy_map.cc void PolicyMap::GetDifferingKeys(const PolicyMap& other,
other             140 components/policy/core/common/policy_map.cc   const_iterator iter_other(other.begin());
other             141 components/policy/core/common/policy_map.cc   while (iter_this != end() && iter_other != other.end()) {
other             160 components/policy/core/common/policy_map.cc   for ( ; iter_other != other.end(); ++iter_other)
other             176 components/policy/core/common/policy_map.cc bool PolicyMap::Equals(const PolicyMap& other) const {
other             177 components/policy/core/common/policy_map.cc   return other.size() == size() &&
other             178 components/policy/core/common/policy_map.cc       std::equal(begin(), end(), other.begin(), MapEntryEquals);
other              40 components/policy/core/common/policy_map.h     bool has_higher_priority_than(const Entry& other) const;
other              43 components/policy/core/common/policy_map.h     bool Equals(const Entry& other) const;
other              73 components/policy/core/common/policy_map.h   void Swap(PolicyMap* other);
other              76 components/policy/core/common/policy_map.h   void CopyFrom(const PolicyMap& other);
other              85 components/policy/core/common/policy_map.h   void MergeFrom(const PolicyMap& other);
other              98 components/policy/core/common/policy_map.h   void GetDifferingKeys(const PolicyMap& other,
other             107 components/policy/core/common/policy_map.h   bool Equals(const PolicyMap& other) const;
other              16 components/policy/core/common/policy_namespace.cc PolicyNamespace::PolicyNamespace(const PolicyNamespace& other)
other              17 components/policy/core/common/policy_namespace.cc     : domain(other.domain),
other              18 components/policy/core/common/policy_namespace.cc       component_id(other.component_id) {}
other              22 components/policy/core/common/policy_namespace.cc PolicyNamespace& PolicyNamespace::operator=(const PolicyNamespace& other) {
other              23 components/policy/core/common/policy_namespace.cc   domain = other.domain;
other              24 components/policy/core/common/policy_namespace.cc   component_id = other.component_id;
other              28 components/policy/core/common/policy_namespace.cc bool PolicyNamespace::operator<(const PolicyNamespace& other) const {
other              29 components/policy/core/common/policy_namespace.cc   return domain < other.domain ||
other              30 components/policy/core/common/policy_namespace.cc          (domain == other.domain && component_id < other.component_id);
other              33 components/policy/core/common/policy_namespace.cc bool PolicyNamespace::operator==(const PolicyNamespace& other) const {
other              34 components/policy/core/common/policy_namespace.cc   return domain == other.domain && component_id == other.component_id;
other              37 components/policy/core/common/policy_namespace.cc bool PolicyNamespace::operator!=(const PolicyNamespace& other) const {
other              38 components/policy/core/common/policy_namespace.cc   return !(*this == other);
other              36 components/policy/core/common/policy_namespace.h   PolicyNamespace(const PolicyNamespace& other);
other              39 components/policy/core/common/policy_namespace.h   PolicyNamespace& operator=(const PolicyNamespace& other);
other              40 components/policy/core/common/policy_namespace.h   bool operator<(const PolicyNamespace& other) const;
other              41 components/policy/core/common/policy_namespace.h   bool operator==(const PolicyNamespace& other) const;
other              42 components/policy/core/common/policy_namespace.h   bool operator!=(const PolicyNamespace& other) const;
other             220 components/policy/core/common/registry_dict_win.cc void RegistryDict::Merge(const RegistryDict& other) {
other             221 components/policy/core/common/registry_dict_win.cc   for (KeyMap::const_iterator entry(other.keys_.begin());
other             222 components/policy/core/common/registry_dict_win.cc        entry != other.keys_.end(); ++entry) {
other             229 components/policy/core/common/registry_dict_win.cc   for (ValueMap::const_iterator entry(other.values_.begin());
other             230 components/policy/core/common/registry_dict_win.cc        entry != other.values_.end(); ++entry) {
other             235 components/policy/core/common/registry_dict_win.cc void RegistryDict::Swap(RegistryDict* other) {
other             236 components/policy/core/common/registry_dict_win.cc   keys_.swap(other->keys_);
other             237 components/policy/core/common/registry_dict_win.cc   values_.swap(other->values_);
other              65 components/policy/core/common/registry_dict_win.h   void Merge(const RegistryDict& other);
other              68 components/policy/core/common/registry_dict_win.h   void Swap(RegistryDict* other);
other             102 components/policy/core/common/schema_map.cc void SchemaMap::GetNamespacesNotInOther(const SchemaMap* other,
other             111 components/policy/core/common/schema_map.cc       if (!other->GetSchema(ns))
other              53 components/policy/core/common/schema_map.h   void GetNamespacesNotInOther(const SchemaMap* other,
other             240 components/url_matcher/substring_set_matcher.cc     const SubstringSetMatcher::AhoCorasickNode& other)
other             241 components/url_matcher/substring_set_matcher.cc     : edges_(other.edges_),
other             242 components/url_matcher/substring_set_matcher.cc       failure_(other.failure_),
other             243 components/url_matcher/substring_set_matcher.cc       matches_(other.matches_) {}
other             247 components/url_matcher/substring_set_matcher.cc     const SubstringSetMatcher::AhoCorasickNode& other) {
other             248 components/url_matcher/substring_set_matcher.cc   edges_ = other.edges_;
other             249 components/url_matcher/substring_set_matcher.cc   failure_ = other.failure_;
other             250 components/url_matcher/substring_set_matcher.cc   matches_ = other.matches_;
other              92 components/url_matcher/substring_set_matcher.h     AhoCorasickNode(const AhoCorasickNode& other);
other              93 components/url_matcher/substring_set_matcher.h     AhoCorasickNode& operator=(const AhoCorasickNode& other);
other             266 content/browser/dom_storage/dom_storage_namespace.cc     DOMStorageNamespace* other,
other             277 content/browser/dom_storage/dom_storage_namespace.cc       SwitchToNewAliasMaster(other, context);
other             307 content/browser/dom_storage/dom_storage_namespace.cc       DOMStorageArea* area = other->OpenStorageArea(transaction.origin);
other             309 content/browser/dom_storage/dom_storage_namespace.cc       other->CloseStorageArea(area);
other             325 content/browser/dom_storage/dom_storage_namespace.cc     DOMStorageArea* area = other->OpenStorageArea(transaction.origin);
other             348 content/browser/dom_storage/dom_storage_namespace.cc     other->CloseStorageArea(area);
other             351 content/browser/dom_storage/dom_storage_namespace.cc   SwitchToNewAliasMaster(other, context);
other              89 content/browser/dom_storage/dom_storage_namespace.h       DOMStorageNamespace* other,
other             138 content/browser/dom_storage/dom_storage_session.cc     DOMStorageSession* other,
other             147 content/browser/dom_storage/dom_storage_session.cc                  other->persistent_namespace_id());
other             153 content/browser/dom_storage/dom_storage_session.cc                             other->namespace_id_),
other              56 content/browser/dom_storage/dom_storage_session.h              DOMStorageSession* other,
other              80 content/browser/dom_storage/session_storage_namespace_impl.cc     SessionStorageNamespace* other,
other              83 content/browser/dom_storage/session_storage_namespace_impl.cc       static_cast<SessionStorageNamespaceImpl*>(other);
other              87 content/browser/dom_storage/session_storage_namespace_impl.cc bool SessionStorageNamespaceImpl::IsAliasOf(SessionStorageNamespace* other) {
other              88 content/browser/dom_storage/session_storage_namespace_impl.cc   return persistent_id() == other->persistent_id();
other              55 content/browser/dom_storage/session_storage_namespace_impl.h                      SessionStorageNamespace* other,
other              57 content/browser/dom_storage/session_storage_namespace_impl.h   virtual bool IsAliasOf(SessionStorageNamespace* other) OVERRIDE;
other            3160 content/browser/frame_host/navigation_controller_impl_unittest.cc     SessionStorageNamespaceMap::const_iterator other =
other            3162 content/browser/frame_host/navigation_controller_impl_unittest.cc     EXPECT_TRUE(other != other_session_storage_namespace_map.end());
other              25 content/browser/geolocation/wifi_data.cc bool WifiData::DiffersSignificantly(const WifiData& other) const {
other              29 content/browser/geolocation/wifi_data.cc       std::min(access_point_data.size(), other.access_point_data.size());
other              31 content/browser/geolocation/wifi_data.cc       std::max(access_point_data.size(), other.access_point_data.size());
other              41 content/browser/geolocation/wifi_data.cc     if (other.access_point_data.find(*iter) !=
other              42 content/browser/geolocation/wifi_data.cc         other.access_point_data.end()) {
other              44 content/browser/geolocation/wifi_data.h   bool DiffersSignificantly(const WifiData& other) const;
other            2016 content/browser/indexed_db/indexed_db_backing_store.cc     const IndexedDBBackingStore::Cursor* other)
other            2017 content/browser/indexed_db/indexed_db_backing_store.cc     : transaction_(other->transaction_),
other            2018 content/browser/indexed_db/indexed_db_backing_store.cc       cursor_options_(other->cursor_options_),
other            2019 content/browser/indexed_db/indexed_db_backing_store.cc       current_key_(new IndexedDBKey(*other->current_key_)) {
other            2020 content/browser/indexed_db/indexed_db_backing_store.cc   if (other->iterator_) {
other            2023 content/browser/indexed_db/indexed_db_backing_store.cc     if (other->iterator_->IsValid()) {
other            2024 content/browser/indexed_db/indexed_db_backing_store.cc       iterator_->Seek(other->iterator_->Key());
other            2239 content/browser/indexed_db/indexed_db_backing_store.cc   explicit ObjectStoreKeyCursorImpl(const ObjectStoreKeyCursorImpl* other)
other            2240 content/browser/indexed_db/indexed_db_backing_store.cc       : IndexedDBBackingStore::Cursor(other) {}
other            2293 content/browser/indexed_db/indexed_db_backing_store.cc   explicit ObjectStoreCursorImpl(const ObjectStoreCursorImpl* other)
other            2294 content/browser/indexed_db/indexed_db_backing_store.cc       : IndexedDBBackingStore::Cursor(other),
other            2295 content/browser/indexed_db/indexed_db_backing_store.cc         current_value_(other->current_value_) {}
other            2367 content/browser/indexed_db/indexed_db_backing_store.cc   explicit IndexKeyCursorImpl(const IndexKeyCursorImpl* other)
other            2368 content/browser/indexed_db/indexed_db_backing_store.cc       : IndexedDBBackingStore::Cursor(other),
other            2369 content/browser/indexed_db/indexed_db_backing_store.cc         primary_key_(new IndexedDBKey(*other->primary_key_)) {}
other            2471 content/browser/indexed_db/indexed_db_backing_store.cc   explicit IndexCursorImpl(const IndexCursorImpl* other)
other            2472 content/browser/indexed_db/indexed_db_backing_store.cc       : IndexedDBBackingStore::Cursor(other),
other            2473 content/browser/indexed_db/indexed_db_backing_store.cc         primary_key_(new IndexedDBKey(*other->primary_key_)),
other            2474 content/browser/indexed_db/indexed_db_backing_store.cc         current_value_(other->current_value_),
other            2475 content/browser/indexed_db/indexed_db_backing_store.cc         primary_leveldb_key_(other->primary_leveldb_key_) {}
other             282 content/browser/indexed_db/indexed_db_backing_store.h     explicit Cursor(const IndexedDBBackingStore::Cursor* other);
other            1242 content/browser/indexed_db/indexed_db_leveldb_coding.cc int KeyPrefix::Compare(const KeyPrefix& other) const {
other            1247 content/browser/indexed_db/indexed_db_leveldb_coding.cc   if (database_id_ != other.database_id_)
other            1248 content/browser/indexed_db/indexed_db_leveldb_coding.cc     return CompareInts(database_id_, other.database_id_);
other            1249 content/browser/indexed_db/indexed_db_leveldb_coding.cc   if (object_store_id_ != other.object_store_id_)
other            1250 content/browser/indexed_db/indexed_db_leveldb_coding.cc     return CompareInts(object_store_id_, other.object_store_id_);
other            1251 content/browser/indexed_db/indexed_db_leveldb_coding.cc   if (index_id_ != other.index_id_)
other            1252 content/browser/indexed_db/indexed_db_leveldb_coding.cc     return CompareInts(index_id_, other.index_id_);
other            1343 content/browser/indexed_db/indexed_db_leveldb_coding.cc int DatabaseFreeListKey::Compare(const DatabaseFreeListKey& other) const {
other            1345 content/browser/indexed_db/indexed_db_leveldb_coding.cc   return CompareInts(database_id_, other.database_id_);
other            1386 content/browser/indexed_db/indexed_db_leveldb_coding.cc int DatabaseNameKey::Compare(const DatabaseNameKey& other) {
other            1387 content/browser/indexed_db/indexed_db_leveldb_coding.cc   if (int x = origin_.compare(other.origin_))
other            1389 content/browser/indexed_db/indexed_db_leveldb_coding.cc   return database_name_.compare(other.database_name_);
other            1461 content/browser/indexed_db/indexed_db_leveldb_coding.cc int ObjectStoreMetaDataKey::Compare(const ObjectStoreMetaDataKey& other) {
other            1463 content/browser/indexed_db/indexed_db_leveldb_coding.cc   if (int x = CompareInts(object_store_id_, other.object_store_id_))
other            1465 content/browser/indexed_db/indexed_db_leveldb_coding.cc   return meta_data_type_ - other.meta_data_type_;
other            1519 content/browser/indexed_db/indexed_db_leveldb_coding.cc int IndexMetaDataKey::Compare(const IndexMetaDataKey& other) {
other            1523 content/browser/indexed_db/indexed_db_leveldb_coding.cc   if (int x = CompareInts(object_store_id_, other.object_store_id_))
other            1525 content/browser/indexed_db/indexed_db_leveldb_coding.cc   if (int x = CompareInts(index_id_, other.index_id_))
other            1527 content/browser/indexed_db/indexed_db_leveldb_coding.cc   return meta_data_type_ - other.meta_data_type_;
other            1572 content/browser/indexed_db/indexed_db_leveldb_coding.cc int ObjectStoreFreeListKey::Compare(const ObjectStoreFreeListKey& other) {
other            1577 content/browser/indexed_db/indexed_db_leveldb_coding.cc   return CompareInts(object_store_id_, other.object_store_id_);
other            1617 content/browser/indexed_db/indexed_db_leveldb_coding.cc int IndexFreeListKey::Compare(const IndexFreeListKey& other) {
other            1620 content/browser/indexed_db/indexed_db_leveldb_coding.cc   if (int x = CompareInts(object_store_id_, other.object_store_id_))
other            1622 content/browser/indexed_db/indexed_db_leveldb_coding.cc   return CompareInts(index_id_, other.index_id_);
other            1665 content/browser/indexed_db/indexed_db_leveldb_coding.cc int ObjectStoreNamesKey::Compare(const ObjectStoreNamesKey& other) {
other            1666 content/browser/indexed_db/indexed_db_leveldb_coding.cc   return object_store_name_.compare(other.object_store_name_);
other            1702 content/browser/indexed_db/indexed_db_leveldb_coding.cc int IndexNamesKey::Compare(const IndexNamesKey& other) {
other            1704 content/browser/indexed_db/indexed_db_leveldb_coding.cc   if (int x = CompareInts(object_store_id_, other.object_store_id_))
other            1706 content/browser/indexed_db/indexed_db_leveldb_coding.cc   return index_name_.compare(other.index_name_);
other              93 content/browser/indexed_db/indexed_db_leveldb_coding.h   int Compare(const KeyPrefix& other) const;
other             195 content/browser/indexed_db/indexed_db_leveldb_coding.h   int Compare(const DatabaseFreeListKey& other) const;
other             212 content/browser/indexed_db/indexed_db_leveldb_coding.h   int Compare(const DatabaseNameKey& other);
other             265 content/browser/indexed_db/indexed_db_leveldb_coding.h   int Compare(const ObjectStoreMetaDataKey& other);
other             292 content/browser/indexed_db/indexed_db_leveldb_coding.h   int Compare(const IndexMetaDataKey& other);
other             310 content/browser/indexed_db/indexed_db_leveldb_coding.h   int Compare(const ObjectStoreFreeListKey& other);
other             325 content/browser/indexed_db/indexed_db_leveldb_coding.h   int Compare(const IndexFreeListKey& other);
other             343 content/browser/indexed_db/indexed_db_leveldb_coding.h   int Compare(const ObjectStoreNamesKey& other);
other             360 content/browser/indexed_db/indexed_db_leveldb_coding.h   int Compare(const IndexNamesKey& other);
other              26 content/browser/indexed_db/list_set.h   list_set(const list_set<T>& other) : list_(other.list_), set_(other.set_) {}
other              27 content/browser/indexed_db/list_set.h   list_set& operator=(const list_set<T>& other) {
other              28 content/browser/indexed_db/list_set.h     list_ = other.list_;
other              29 content/browser/indexed_db/list_set.h     set_ = other.set_;
other              99 content/browser/indexed_db/list_set_unittest.cc   explicit Wrapped(const Wrapped<T>& other) : value_(other.value_) {}
other              26 content/browser/loader/global_routing_id.h   bool operator<(const GlobalRoutingID& other) const {
other              27 content/browser/loader/global_routing_id.h     if (child_id == other.child_id)
other              28 content/browser/loader/global_routing_id.h       return route_id < other.route_id;
other              29 content/browser/loader/global_routing_id.h     return child_id < other.child_id;
other              31 content/browser/loader/global_routing_id.h   bool operator==(const GlobalRoutingID& other) const {
other              32 content/browser/loader/global_routing_id.h     return child_id == other.child_id &&
other              33 content/browser/loader/global_routing_id.h         route_id == other.route_id;
other              35 content/browser/loader/global_routing_id.h   bool operator!=(const GlobalRoutingID& other) const {
other              36 content/browser/loader/global_routing_id.h     return !(*this == other);
other              53 content/browser/media/webrtc_identity_store_backend.cc   bool operator<(const IdentityKey& other) const {
other              54 content/browser/media/webrtc_identity_store_backend.cc     return origin < other.origin ||
other              55 content/browser/media/webrtc_identity_store_backend.cc            (origin == other.origin && identity_name < other.identity_name);
other             127 content/browser/renderer_host/input/motion_event_android.cc MotionEventAndroid::MotionEventAndroid(const MotionEventAndroid& other)
other             128 content/browser/renderer_host/input/motion_event_android.cc     : event_(Obtain(other)),
other             129 content/browser/renderer_host/input/motion_event_android.cc       cached_time_(other.cached_time_),
other             130 content/browser/renderer_host/input/motion_event_android.cc       cached_action_(other.cached_action_),
other             131 content/browser/renderer_host/input/motion_event_android.cc       cached_pointer_count_(other.cached_pointer_count_),
other             132 content/browser/renderer_host/input/motion_event_android.cc       cached_history_size_(other.cached_history_size_),
other             133 content/browser/renderer_host/input/motion_event_android.cc       cached_action_index_(other.cached_action_index_),
other             137 content/browser/renderer_host/input/motion_event_android.cc     cached_positions_[i] = other.cached_positions_[i];
other             138 content/browser/renderer_host/input/motion_event_android.cc     cached_pointer_ids_[i] = other.cached_pointer_ids_[i];
other             139 content/browser/renderer_host/input/motion_event_android.cc     cached_touch_majors_[i] = other.cached_touch_majors_[i];
other              62 content/browser/renderer_host/java/java_type.cc JavaType::JavaType(const JavaType& other) {
other              63 content/browser/renderer_host/java/java_type.cc   *this = other;
other              69 content/browser/renderer_host/java/java_type.cc JavaType& JavaType::operator=(const JavaType& other) {
other              70 content/browser/renderer_host/java/java_type.cc   type = other.type;
other              71 content/browser/renderer_host/java/java_type.cc   if (other.inner_type) {
other              73 content/browser/renderer_host/java/java_type.cc     inner_type.reset(new JavaType(*other.inner_type));
other              18 content/browser/renderer_host/java/java_type.h   JavaType(const JavaType& other);
other              20 content/browser/renderer_host/java/java_type.h   JavaType& operator=(const JavaType& other);
other              22 content/browser/renderer_host/java/jni_helper.cc   bool operator<(const MethodIdentifier& other) const {
other              23 content/browser/renderer_host/java/jni_helper.cc     int r = strcmp(class_name, other.class_name);
other              30 content/browser/renderer_host/java/jni_helper.cc     r = strcmp(method, other.method);
other              37 content/browser/renderer_host/java/jni_helper.cc     return strcmp(jni_signature, other.jni_signature) < 0;
other              55 content/browser/renderer_host/native_web_keyboard_event_android.cc     const NativeWebKeyboardEvent& other)
other              56 content/browser/renderer_host/native_web_keyboard_event_android.cc     : WebKeyboardEvent(other),
other              57 content/browser/renderer_host/native_web_keyboard_event_android.cc       os_event(NewGlobalRefForKeyEvent(other.os_event)),
other              58 content/browser/renderer_host/native_web_keyboard_event_android.cc       skip_in_browser(other.skip_in_browser) {
other              62 content/browser/renderer_host/native_web_keyboard_event_android.cc     const NativeWebKeyboardEvent& other) {
other              63 content/browser/renderer_host/native_web_keyboard_event_android.cc   WebKeyboardEvent::operator=(other);
other              65 content/browser/renderer_host/native_web_keyboard_event_android.cc   os_event = NewGlobalRefForKeyEvent(other.os_event);
other              66 content/browser/renderer_host/native_web_keyboard_event_android.cc   skip_in_browser = other.skip_in_browser;
other              50 content/browser/renderer_host/native_web_keyboard_event_aura.cc     const NativeWebKeyboardEvent& other)
other              51 content/browser/renderer_host/native_web_keyboard_event_aura.cc     : WebKeyboardEvent(other),
other              52 content/browser/renderer_host/native_web_keyboard_event_aura.cc       os_event(CopyEvent(other.os_event)),
other              53 content/browser/renderer_host/native_web_keyboard_event_aura.cc       skip_in_browser(other.skip_in_browser),
other              90 content/browser/renderer_host/native_web_keyboard_event_aura.cc     const NativeWebKeyboardEvent& other) {
other              91 content/browser/renderer_host/native_web_keyboard_event_aura.cc   WebKeyboardEvent::operator=(other);
other              93 content/browser/renderer_host/native_web_keyboard_event_aura.cc   os_event = CopyEvent(other.os_event);
other              94 content/browser/renderer_host/native_web_keyboard_event_aura.cc   skip_in_browser = other.skip_in_browser;
other              95 content/browser/renderer_host/native_web_keyboard_event_aura.cc   match_edit_command = other.match_edit_command;
other              51 content/browser/renderer_host/native_web_keyboard_event_gtk.cc     const NativeWebKeyboardEvent& other)
other              52 content/browser/renderer_host/native_web_keyboard_event_gtk.cc     : WebKeyboardEvent(other),
other              53 content/browser/renderer_host/native_web_keyboard_event_gtk.cc       skip_in_browser(other.skip_in_browser),
other              54 content/browser/renderer_host/native_web_keyboard_event_gtk.cc       match_edit_command(other.match_edit_command) {
other              55 content/browser/renderer_host/native_web_keyboard_event_gtk.cc   CopyEventTo(other.os_event, &os_event);
other              59 content/browser/renderer_host/native_web_keyboard_event_gtk.cc     const NativeWebKeyboardEvent& other) {
other              60 content/browser/renderer_host/native_web_keyboard_event_gtk.cc   WebKeyboardEvent::operator=(other);
other              63 content/browser/renderer_host/native_web_keyboard_event_gtk.cc   CopyEventTo(other.os_event, &os_event);
other              65 content/browser/renderer_host/native_web_keyboard_event_gtk.cc   skip_in_browser = other.skip_in_browser;
other              66 content/browser/renderer_host/native_web_keyboard_event_gtk.cc   match_edit_command = other.match_edit_command;
other              27 content/browser/shared_worker/shared_worker_instance.cc SharedWorkerInstance::SharedWorkerInstance(const SharedWorkerInstance& other)
other              28 content/browser/shared_worker/shared_worker_instance.cc     : url_(other.url_),
other              29 content/browser/shared_worker/shared_worker_instance.cc       name_(other.name_),
other              30 content/browser/shared_worker/shared_worker_instance.cc       content_security_policy_(other.content_security_policy_),
other              31 content/browser/shared_worker/shared_worker_instance.cc       security_policy_type_(other.security_policy_type_),
other              32 content/browser/shared_worker/shared_worker_instance.cc       resource_context_(other.resource_context_),
other              33 content/browser/shared_worker/shared_worker_instance.cc       partition_(other.partition_) {}
other              60 content/browser/shared_worker/shared_worker_instance.cc bool SharedWorkerInstance::Matches(const SharedWorkerInstance& other) const {
other              62 content/browser/shared_worker/shared_worker_instance.cc       other.url(), other.name(), other.partition(), other.resource_context());
other              29 content/browser/shared_worker/shared_worker_instance.h   SharedWorkerInstance(const SharedWorkerInstance& other);
other              43 content/browser/shared_worker/shared_worker_instance.h   bool Matches(const SharedWorkerInstance& other) const;
other              36 content/browser/worker_host/worker_document_set.h     bool operator <(const DocumentInfo& other) const {
other              40 content/browser/worker_host/worker_document_set.h       if (filter() == other.filter()) {
other              41 content/browser/worker_host/worker_document_set.h         return document_id() < other.document_id();
other              44 content/browser/worker_host/worker_document_set.h             reinterpret_cast<unsigned long long>(other.filter());
other              39 content/browser/worker_host/worker_storage_partition.cc     const WorkerStoragePartition& other) {
other              40 content/browser/worker_host/worker_storage_partition.cc   Copy(other);
other              50 content/browser/worker_host/worker_storage_partition.cc     const WorkerStoragePartition& other) const {
other              51 content/browser/worker_host/worker_storage_partition.cc   return url_request_context_.get() == other.url_request_context_.get() &&
other              53 content/browser/worker_host/worker_storage_partition.cc              other.media_url_request_context_.get() &&
other              54 content/browser/worker_host/worker_storage_partition.cc          appcache_service_.get() == other.appcache_service_.get() &&
other              55 content/browser/worker_host/worker_storage_partition.cc          quota_manager_.get() == other.quota_manager_.get() &&
other              56 content/browser/worker_host/worker_storage_partition.cc          filesystem_context_.get() == other.filesystem_context_.get() &&
other              57 content/browser/worker_host/worker_storage_partition.cc          database_tracker_.get() == other.database_tracker_.get() &&
other              58 content/browser/worker_host/worker_storage_partition.cc          indexed_db_context_.get() == other.indexed_db_context_.get() &&
other              59 content/browser/worker_host/worker_storage_partition.cc          service_worker_context_.get() == other.service_worker_context_.get();
other              65 content/browser/worker_host/worker_storage_partition.cc void WorkerStoragePartition::Copy(const WorkerStoragePartition& other) {
other              66 content/browser/worker_host/worker_storage_partition.cc   url_request_context_ = other.url_request_context_;
other              67 content/browser/worker_host/worker_storage_partition.cc   media_url_request_context_ = other.media_url_request_context_;
other              68 content/browser/worker_host/worker_storage_partition.cc   appcache_service_ = other.appcache_service_;
other              69 content/browser/worker_host/worker_storage_partition.cc   quota_manager_ = other.quota_manager_;
other              70 content/browser/worker_host/worker_storage_partition.cc   filesystem_context_ = other.filesystem_context_;
other              71 content/browser/worker_host/worker_storage_partition.cc   database_tracker_ = other.database_tracker_;
other              72 content/browser/worker_host/worker_storage_partition.cc   indexed_db_context_ = other.indexed_db_context_;
other              73 content/browser/worker_host/worker_storage_partition.cc   service_worker_context_ = other.service_worker_context_;
other              60 content/browser/worker_host/worker_storage_partition.h   WorkerStoragePartition(const WorkerStoragePartition& other);
other              63 content/browser/worker_host/worker_storage_partition.h   bool Equals(const WorkerStoragePartition& other) const;
other              98 content/browser/worker_host/worker_storage_partition.h   void Copy(const WorkerStoragePartition& other);
other              23 content/child/indexed_db/indexed_db_key_builders.cc static content::IndexedDBKey::KeyArray CopyKeyArray(const WebIDBKey& other) {
other              25 content/child/indexed_db/indexed_db_key_builders.cc   if (other.keyType() == WebIDBKeyTypeArray) {
other              26 content/child/indexed_db/indexed_db_key_builders.cc     const WebVector<WebIDBKey>& array = other.array();
other              39 content/common/cursors/webcursor.cc WebCursor::WebCursor(const WebCursor& other) {
other              41 content/common/cursors/webcursor.cc   Copy(other);
other              44 content/common/cursors/webcursor.cc const WebCursor& WebCursor::operator=(const WebCursor& other) {
other              45 content/common/cursors/webcursor.cc   if (this == &other)
other              49 content/common/cursors/webcursor.cc   Copy(other);
other             157 content/common/cursors/webcursor.cc bool WebCursor::IsEqual(const WebCursor& other) const {
other             158 content/common/cursors/webcursor.cc   if (type_ != other.type_)
other             161 content/common/cursors/webcursor.cc   if (!IsPlatformDataEqual(other))
other             164 content/common/cursors/webcursor.cc   return hotspot_ == other.hotspot_ &&
other             165 content/common/cursors/webcursor.cc          custom_size_ == other.custom_size_ &&
other             166 content/common/cursors/webcursor.cc          custom_scale_ == other.custom_scale_ &&
other             167 content/common/cursors/webcursor.cc          custom_data_ == other.custom_data_;
other             220 content/common/cursors/webcursor.cc void WebCursor::Copy(const WebCursor& other) {
other             221 content/common/cursors/webcursor.cc   type_ = other.type_;
other             222 content/common/cursors/webcursor.cc   hotspot_ = other.hotspot_;
other             223 content/common/cursors/webcursor.cc   custom_size_ = other.custom_size_;
other             224 content/common/cursors/webcursor.cc   custom_scale_ = other.custom_scale_;
other             225 content/common/cursors/webcursor.cc   custom_data_ = other.custom_data_;
other             226 content/common/cursors/webcursor.cc   CopyPlatformData(other);
other              78 content/common/cursors/webcursor.h   WebCursor(const WebCursor& other);
other              79 content/common/cursors/webcursor.h   const WebCursor& operator=(const WebCursor& other);
other              96 content/common/cursors/webcursor.h   bool IsEqual(const WebCursor& other) const;
other             137 content/common/cursors/webcursor.h   void Copy(const WebCursor& other);
other             151 content/common/cursors/webcursor.h   bool IsPlatformDataEqual(const WebCursor& other) const ;
other             154 content/common/cursors/webcursor.h   void CopyPlatformData(const WebCursor& other);
other              23 content/common/cursors/webcursor_android.cc bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
other              30 content/common/cursors/webcursor_android.cc void WebCursor::CopyPlatformData(const WebCursor& other) {
other              46 content/common/cursors/webcursor_aurawin.cc bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
other              57 content/common/cursors/webcursor_aurawin.cc void WebCursor::CopyPlatformData(const WebCursor& other) {
other              69 content/common/cursors/webcursor_aurax11.cc bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
other              80 content/common/cursors/webcursor_aurax11.cc void WebCursor::CopyPlatformData(const WebCursor& other) {
other              83 content/common/cursors/webcursor_aurax11.cc   platform_cursor_ = other.platform_cursor_;
other              87 content/common/cursors/webcursor_aurax11.cc   device_scale_factor_ = other.device_scale_factor_;
other             208 content/common/cursors/webcursor_gtk.cc bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
other             220 content/common/cursors/webcursor_gtk.cc void WebCursor::CopyPlatformData(const WebCursor& other) {
other             221 content/common/cursors/webcursor_gtk.cc   if (other.unref_)
other             222 content/common/cursors/webcursor_gtk.cc     unref_ = gdk_cursor_ref(other.unref_);
other              56 content/common/cursors/webcursor_ozone.cc bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
other              67 content/common/cursors/webcursor_ozone.cc void WebCursor::CopyPlatformData(const WebCursor& other) {
other              70 content/common/cursors/webcursor_ozone.cc   platform_cursor_ = other.platform_cursor_;
other              74 content/common/cursors/webcursor_ozone.cc   device_scale_factor_ = other.device_scale_factor_;
other             161 content/common/cursors/webcursor_win.cc bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
other             165 content/common/cursors/webcursor_win.cc   return (external_cursor_ == other.external_cursor_);
other             168 content/common/cursors/webcursor_win.cc void WebCursor::CopyPlatformData(const WebCursor& other) {
other             169 content/common/cursors/webcursor_win.cc   external_cursor_ = other.external_cursor_;
other             382 content/common/gpu/client/gl_helper_unittest.cc                SkBitmap* other,
other             387 content/common/gpu/client/gl_helper_unittest.cc     EXPECT_EQ(truth->width(), other->width());
other             388 content/common/gpu/client/gl_helper_unittest.cc     EXPECT_EQ(truth->height(), other->height());
other             393 content/common/gpu/client/gl_helper_unittest.cc           int b = Channel(other, x, y, c);
other             400 content/common/gpu/client/gl_helper_unittest.cc             PrintChannel(other, c);
other             814 content/common/gpu/client/gl_helper_unittest.cc                     unsigned char* other,
other             824 content/common/gpu/client/gl_helper_unittest.cc         int a = other[y * stride + x];
other             832 content/common/gpu/client/gl_helper_unittest.cc           PrintPlane(other, xsize, stride, ysize);
other            1263 content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc     WGC3Denum current, WGC3Denum other) {
other            1264 content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc   gl_->LoseContextCHROMIUM(current, other);
other             174 content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h   virtual void loseContextCHROMIUM(WGC3Denum current, WGC3Denum other);
other              97 content/common/indexed_db/indexed_db_key.cc IndexedDBKey::IndexedDBKey(const IndexedDBKey& other)
other              98 content/common/indexed_db/indexed_db_key.cc     : type_(other.type_),
other              99 content/common/indexed_db/indexed_db_key.cc       array_(other.array_),
other             100 content/common/indexed_db/indexed_db_key.cc       binary_(other.binary_),
other             101 content/common/indexed_db/indexed_db_key.cc       string_(other.string_),
other             102 content/common/indexed_db/indexed_db_key.cc       date_(other.date_),
other             103 content/common/indexed_db/indexed_db_key.cc       number_(other.number_),
other             104 content/common/indexed_db/indexed_db_key.cc       size_estimate_(other.size_estimate_) {
other             105 content/common/indexed_db/indexed_db_key.cc   DCHECK((!IsValid() && !other.IsValid()) || CompareTo(other) == 0);
other             108 content/common/indexed_db/indexed_db_key.cc IndexedDBKey& IndexedDBKey::operator=(const IndexedDBKey& other) {
other             109 content/common/indexed_db/indexed_db_key.cc   type_ = other.type_;
other             110 content/common/indexed_db/indexed_db_key.cc   array_ = other.array_;
other             111 content/common/indexed_db/indexed_db_key.cc   binary_ = other.binary_;
other             112 content/common/indexed_db/indexed_db_key.cc   string_ = other.string_;
other             113 content/common/indexed_db/indexed_db_key.cc   date_ = other.date_;
other             114 content/common/indexed_db/indexed_db_key.cc   number_ = other.number_;
other             115 content/common/indexed_db/indexed_db_key.cc   size_estimate_ = other.size_estimate_;
other             116 content/common/indexed_db/indexed_db_key.cc   DCHECK((!IsValid() && !other.IsValid()) || CompareTo(other) == 0);
other             134 content/common/indexed_db/indexed_db_key.cc bool IndexedDBKey::IsLessThan(const IndexedDBKey& other) const {
other             135 content/common/indexed_db/indexed_db_key.cc   return CompareTo(other) < 0;
other             138 content/common/indexed_db/indexed_db_key.cc bool IndexedDBKey::Equals(const IndexedDBKey& other) const {
other             139 content/common/indexed_db/indexed_db_key.cc   return !CompareTo(other);
other             142 content/common/indexed_db/indexed_db_key.cc int IndexedDBKey::CompareTo(const IndexedDBKey& other) const {
other             144 content/common/indexed_db/indexed_db_key.cc   DCHECK(other.IsValid());
other             145 content/common/indexed_db/indexed_db_key.cc   if (type_ != other.type_)
other             146 content/common/indexed_db/indexed_db_key.cc     return type_ > other.type_ ? -1 : 1;
other             150 content/common/indexed_db/indexed_db_key.cc       for (size_t i = 0; i < array_.size() && i < other.array_.size(); ++i) {
other             151 content/common/indexed_db/indexed_db_key.cc         int result = array_[i].CompareTo(other.array_[i]);
other             155 content/common/indexed_db/indexed_db_key.cc       return Compare(array_.size(), other.array_.size());
other             157 content/common/indexed_db/indexed_db_key.cc       return binary_.compare(other.binary_);
other             159 content/common/indexed_db/indexed_db_key.cc       return string_.compare(other.string_);
other             161 content/common/indexed_db/indexed_db_key.cc       return Compare(date_, other.date_);
other             163 content/common/indexed_db/indexed_db_key.cc       return Compare(number_, other.number_);
other              35 content/common/indexed_db/indexed_db_key.h   IndexedDBKey(const IndexedDBKey& other);
other              36 content/common/indexed_db/indexed_db_key.h   IndexedDBKey& operator=(const IndexedDBKey& other);
other              40 content/common/indexed_db/indexed_db_key.h   bool IsLessThan(const IndexedDBKey& other) const;
other              41 content/common/indexed_db/indexed_db_key.h   bool Equals(const IndexedDBKey& other) const;
other              53 content/common/indexed_db/indexed_db_key.h   int CompareTo(const IndexedDBKey& other) const;
other              35 content/common/indexed_db/indexed_db_key_path.cc bool IndexedDBKeyPath::operator==(const IndexedDBKeyPath& other) const {
other              36 content/common/indexed_db/indexed_db_key_path.cc   if (type_ != other.type_)
other              43 content/common/indexed_db/indexed_db_key_path.cc       return string_ == other.string_;
other              45 content/common/indexed_db/indexed_db_key_path.cc       return array_ == other.array_;
other              25 content/common/indexed_db/indexed_db_key_path.h   bool operator==(const IndexedDBKeyPath& other) const;
other              13 content/common/input/synthetic_gesture_params.cc     const SyntheticGestureParams& other)
other              14 content/common/input/synthetic_gesture_params.cc     : gesture_source_type(other.gesture_source_type) {}
other              32 content/common/input/synthetic_gesture_params.h   SyntheticGestureParams(const SyntheticGestureParams& other);
other              17 content/common/input/synthetic_pinch_gesture_params.cc     const SyntheticPinchGestureParams& other)
other              18 content/common/input/synthetic_pinch_gesture_params.cc     : SyntheticGestureParams(other),
other              19 content/common/input/synthetic_pinch_gesture_params.cc       zoom_in(other.zoom_in),
other              20 content/common/input/synthetic_pinch_gesture_params.cc       total_num_pixels_covered(other.total_num_pixels_covered),
other              21 content/common/input/synthetic_pinch_gesture_params.cc       anchor(other.anchor),
other              23 content/common/input/synthetic_pinch_gesture_params.cc           other.relative_pointer_speed_in_pixels_s) {}
other              19 content/common/input/synthetic_pinch_gesture_params.h       const SyntheticPinchGestureParams& other);
other              20 content/common/input/synthetic_smooth_scroll_gesture_params.cc       const SyntheticSmoothScrollGestureParams& other)
other              21 content/common/input/synthetic_smooth_scroll_gesture_params.cc     : SyntheticGestureParams(other),
other              22 content/common/input/synthetic_smooth_scroll_gesture_params.cc       anchor(other.anchor),
other              23 content/common/input/synthetic_smooth_scroll_gesture_params.cc       distances(other.distances),
other              24 content/common/input/synthetic_smooth_scroll_gesture_params.cc       prevent_fling(other.prevent_fling),
other              25 content/common/input/synthetic_smooth_scroll_gesture_params.cc       speed_in_pixels_s(other.speed_in_pixels_s) {}
other              22 content/common/input/synthetic_smooth_scroll_gesture_params.h       const SyntheticSmoothScrollGestureParams& other);
other              16 content/common/input/synthetic_tap_gesture_params.cc     const SyntheticTapGestureParams& other)
other              17 content/common/input/synthetic_tap_gesture_params.cc     : SyntheticGestureParams(other),
other              18 content/common/input/synthetic_tap_gesture_params.cc       position(other.position),
other              19 content/common/input/synthetic_tap_gesture_params.cc       duration_ms(other.duration_ms) {}
other              18 content/common/input/synthetic_tap_gesture_params.h   SyntheticTapGestureParams(const SyntheticTapGestureParams& other);
other              32 content/port/browser/event_with_latency_info.h   bool CanCoalesceWith(const EventWithLatencyInfo& other)
other              34 content/port/browser/event_with_latency_info.h     return WebInputEventTraits::CanCoalesce(other.event, event);
other              37 content/port/browser/event_with_latency_info.h   void CoalesceWith(const EventWithLatencyInfo& other) {
other              38 content/port/browser/event_with_latency_info.h     WebInputEventTraits::Coalesce(other.event, &event);
other              42 content/port/browser/event_with_latency_info.h     if (other.latency.trace_id >= 0 &&
other              43 content/port/browser/event_with_latency_info.h         (latency.trace_id < 0 || other.latency.trace_id < latency.trace_id))
other              44 content/port/browser/event_with_latency_info.h       latency = other.latency;
other              45 content/public/android/java/src/org/chromium/content/browser/input/DateTimeSuggestion.java         final DateTimeSuggestion other = (DateTimeSuggestion) object;
other              46 content/public/android/java/src/org/chromium/content/browser/input/DateTimeSuggestion.java         return mValue == other.mValue &&
other              47 content/public/android/java/src/org/chromium/content/browser/input/DateTimeSuggestion.java                mLocalizedValue == other.mLocalizedValue &&
other              48 content/public/android/java/src/org/chromium/content/browser/input/DateTimeSuggestion.java                mLabel == other.mLabel;
other              48 content/public/android/javatests/src/org/chromium/content/browser/DownloadInfoTest.java                 AccessorSignature other = (AccessorSignature) obj;
other              49 content/public/android/javatests/src/org/chromium/content/browser/DownloadInfoTest.java                 return other.mReturnTypeOrParam == mReturnTypeOrParam
other              50 content/public/android/javatests/src/org/chromium/content/browser/DownloadInfoTest.java                        && other.mMethodNameWithoutPrefix.equals(mMethodNameWithoutPrefix);
other              13 content/public/browser/android/synchronous_compositor.cc     const SynchronousCompositorMemoryPolicy& other) const {
other              14 content/public/browser/android/synchronous_compositor.cc   return bytes_limit == other.bytes_limit &&
other              15 content/public/browser/android/synchronous_compositor.cc       num_resources_limit == other.num_resources_limit;
other              19 content/public/browser/android/synchronous_compositor.cc     const SynchronousCompositorMemoryPolicy& other) const {
other              20 content/public/browser/android/synchronous_compositor.cc   return !(*this == other);
other              36 content/public/browser/android/synchronous_compositor.h   bool operator==(const SynchronousCompositorMemoryPolicy& other) const;
other              37 content/public/browser/android/synchronous_compositor.h   bool operator!=(const SynchronousCompositorMemoryPolicy& other) const;
other              55 content/public/browser/desktop_media_id.h   bool operator<(const DesktopMediaID& other) const {
other              56 content/public/browser/desktop_media_id.h     return type < other.type || (type == other.type && id < other.id);
other              58 content/public/browser/desktop_media_id.h   bool operator==(const DesktopMediaID& other) const {
other              59 content/public/browser/desktop_media_id.h     return type == other.type && id == other.id;
other              26 content/public/browser/global_request_id.h   bool operator<(const GlobalRequestID& other) const {
other              27 content/public/browser/global_request_id.h     if (child_id == other.child_id)
other              28 content/public/browser/global_request_id.h       return request_id < other.request_id;
other              29 content/public/browser/global_request_id.h     return child_id < other.child_id;
other              31 content/public/browser/global_request_id.h   bool operator==(const GlobalRequestID& other) const {
other              32 content/public/browser/global_request_id.h     return child_id == other.child_id &&
other              33 content/public/browser/global_request_id.h         request_id == other.request_id;
other              35 content/public/browser/global_request_id.h   bool operator!=(const GlobalRequestID& other) const {
other              36 content/public/browser/global_request_id.h     return child_id != other.child_id ||
other              37 content/public/browser/global_request_id.h         request_id != other.request_id;
other              28 content/public/browser/navigation_controller.cc     const NavigationController::LoadURLParams& other)
other              29 content/public/browser/navigation_controller.cc     : url(other.url),
other              30 content/public/browser/navigation_controller.cc       load_type(other.load_type),
other              31 content/public/browser/navigation_controller.cc       transition_type(other.transition_type),
other              32 content/public/browser/navigation_controller.cc       frame_tree_node_id(other.frame_tree_node_id),
other              33 content/public/browser/navigation_controller.cc       referrer(other.referrer),
other              34 content/public/browser/navigation_controller.cc       extra_headers(other.extra_headers),
other              35 content/public/browser/navigation_controller.cc       is_renderer_initiated(other.is_renderer_initiated),
other              36 content/public/browser/navigation_controller.cc       override_user_agent(other.override_user_agent),
other              37 content/public/browser/navigation_controller.cc       transferred_global_request_id(other.transferred_global_request_id),
other              38 content/public/browser/navigation_controller.cc       base_url_for_data_url(other.base_url_for_data_url),
other              39 content/public/browser/navigation_controller.cc       virtual_url_for_data_url(other.virtual_url_for_data_url),
other              40 content/public/browser/navigation_controller.cc       browser_initiated_post_data(other.browser_initiated_post_data),
other              47 content/public/browser/navigation_controller.cc     const NavigationController::LoadURLParams& other) {
other              48 content/public/browser/navigation_controller.cc   url = other.url;
other              49 content/public/browser/navigation_controller.cc   load_type = other.load_type;
other              50 content/public/browser/navigation_controller.cc   transition_type = other.transition_type;
other              51 content/public/browser/navigation_controller.cc   frame_tree_node_id = other.frame_tree_node_id;
other              52 content/public/browser/navigation_controller.cc   referrer = other.referrer;
other              53 content/public/browser/navigation_controller.cc   redirect_chain = other.redirect_chain;
other              54 content/public/browser/navigation_controller.cc   extra_headers = other.extra_headers;
other              55 content/public/browser/navigation_controller.cc   is_renderer_initiated = other.is_renderer_initiated;
other              56 content/public/browser/navigation_controller.cc   override_user_agent = other.override_user_agent;
other              57 content/public/browser/navigation_controller.cc   transferred_global_request_id = other.transferred_global_request_id;
other              58 content/public/browser/navigation_controller.cc   base_url_for_data_url = other.base_url_for_data_url;
other              59 content/public/browser/navigation_controller.cc   virtual_url_for_data_url = other.virtual_url_for_data_url;
other              60 content/public/browser/navigation_controller.cc   browser_initiated_post_data = other.browser_initiated_post_data;
other              61 content/public/browser/navigation_controller.cc   should_replace_current_entry = other.should_replace_current_entry;
other              62 content/public/browser/navigation_controller.cc   should_clear_history_list = other.should_clear_history_list;
other             181 content/public/browser/navigation_controller.h     LoadURLParams(const LoadURLParams& other);
other             182 content/public/browser/navigation_controller.h     LoadURLParams& operator=(const LoadURLParams& other);
other              22 content/public/browser/notification_details.h   NotificationDetails(const NotificationDetails& other) : ptr_(other.ptr_) {}
other              30 content/public/browser/notification_details.h   bool operator!=(const NotificationDetails& other) const {
other              31 content/public/browser/notification_details.h     return ptr_ != other.ptr_;
other              34 content/public/browser/notification_details.h   bool operator==(const NotificationDetails& other) const {
other              35 content/public/browser/notification_details.h     return ptr_ == other.ptr_;
other              51 content/public/browser/notification_details.h   Details(const NotificationDetails& other)      // NOLINT
other              52 content/public/browser/notification_details.h     : NotificationDetails(other) {}
other              15 content/public/browser/notification_registrar.cc   bool operator==(const Record& other) const;
other              22 content/public/browser/notification_registrar.cc bool NotificationRegistrar::Record::operator==(const Record& other) const {
other              23 content/public/browser/notification_registrar.cc   return observer == other.observer &&
other              24 content/public/browser/notification_registrar.cc          type == other.type &&
other              25 content/public/browser/notification_registrar.cc          source == other.source;
other              21 content/public/browser/notification_source.h    NotificationSource(const NotificationSource& other) : ptr_(other.ptr_) {}
other              29 content/public/browser/notification_source.h   bool operator!=(const NotificationSource& other) const {
other              30 content/public/browser/notification_source.h     return ptr_ != other.ptr_;
other              32 content/public/browser/notification_source.h   bool operator==(const NotificationSource& other) const {
other              33 content/public/browser/notification_source.h     return ptr_ == other.ptr_;
other              49 content/public/browser/notification_source.h   Source(const NotificationSource& other)      // NOLINT
other              50 content/public/browser/notification_source.h     : NotificationSource(other) {}
other              70 content/public/browser/session_storage_namespace.h                      SessionStorageNamespace* other,
other              75 content/public/browser/session_storage_namespace.h   virtual bool IsAliasOf(SessionStorageNamespace* other) = 0;
other             113 content/public/common/page_state.cc bool PageState::Equals(const PageState& other) const {
other             114 content/public/common/page_state.cc   return data_ == other.data_;
other              14 content/public/common/signed_certificate_timestamp_id_and_status.cc     const SignedCertificateTimestampIDAndStatus& other) const {
other              15 content/public/common/signed_certificate_timestamp_id_and_status.cc   return id == other.id && status == other.status;
other              21 content/public/common/signed_certificate_timestamp_id_and_status.h   bool operator==(const SignedCertificateTimestampIDAndStatus& other) const;
other              46 content/renderer/dom_storage/webstoragenamespace_impl.cc     const WebStorageNamespace& other) const {
other              48 content/renderer/dom_storage/webstoragenamespace_impl.cc       static_cast<const WebStorageNamespaceImpl*>(&other);
other              58 content/renderer/media/media_stream_audio_sink_owner.cc     const MediaStreamAudioSink* other) const {
other              59 content/renderer/media/media_stream_audio_sink_owner.cc   DCHECK(other);
other              61 content/renderer/media/media_stream_audio_sink_owner.cc   return (other == delegate_);
other              65 content/renderer/media/media_stream_audio_sink_owner.cc     const PeerConnectionAudioSink* other) const {
other              66 content/renderer/media/media_stream_audio_sink_owner.cc   DCHECK(other);
other              36 content/renderer/media/media_stream_audio_sink_owner.h   virtual bool IsEqual(const MediaStreamAudioSink* other) const OVERRIDE;
other              37 content/renderer/media/media_stream_audio_sink_owner.h   virtual bool IsEqual(const PeerConnectionAudioSink* other) const OVERRIDE;
other              41 content/renderer/media/media_stream_audio_track_sink.h   virtual bool IsEqual(const MediaStreamAudioSink* other) const = 0;
other              42 content/renderer/media/media_stream_audio_track_sink.h   virtual bool IsEqual(const PeerConnectionAudioSink* other) const = 0;
other              59 content/renderer/media/peer_connection_audio_sink_owner.cc     const MediaStreamAudioSink* other) const {
other              60 content/renderer/media/peer_connection_audio_sink_owner.cc   DCHECK(other);
other              65 content/renderer/media/peer_connection_audio_sink_owner.cc     const PeerConnectionAudioSink* other) const {
other              66 content/renderer/media/peer_connection_audio_sink_owner.cc   DCHECK(other);
other              68 content/renderer/media/peer_connection_audio_sink_owner.cc   return (other == delegate_);
other              36 content/renderer/media/peer_connection_audio_sink_owner.h   virtual bool IsEqual(const MediaStreamAudioSink* other) const OVERRIDE;
other              37 content/renderer/media/peer_connection_audio_sink_owner.h   virtual bool IsEqual(const PeerConnectionAudioSink* other) const OVERRIDE;
other              21 content/renderer/media/webrtc/webrtc_audio_sink_adapter.cc     const webrtc::AudioTrackSinkInterface* other) const {
other              22 content/renderer/media/webrtc/webrtc_audio_sink_adapter.cc   return (other == sink_);
other              28 content/renderer/media/webrtc/webrtc_audio_sink_adapter.h   bool IsEqual(const webrtc::AudioTrackSinkInterface* other) const;
other             111 content/renderer/media/webrtc_audio_capturer.cc   bool IsEqual(const WebRtcLocalAudioTrack* other) const {
other             113 content/renderer/media/webrtc_audio_capturer.cc     return (other == delegate_);
other             569 content/shell/renderer/test_runner/web_ax_object_proxy.cc bool WebAXObjectProxy::IsEqualToObject(const blink::WebAXObject& other) {
other             570 content/shell/renderer/test_runner/web_ax_object_proxy.cc   return accessibility_object().equals(other);
other              24 courgette/memory_allocator.h   CheckReturnValue(const CheckReturnValue& other)
other              25 courgette/memory_allocator.h       : value_(other.value_), checked_(other.checked_) {
other              26 courgette/memory_allocator.h     other.checked_ = true;
other              29 courgette/memory_allocator.h   CheckReturnValue& operator=(const CheckReturnValue& other) {
other              30 courgette/memory_allocator.h     if (this != &other) {
other              32 courgette/memory_allocator.h       value_ = other.value_;
other              33 courgette/memory_allocator.h       checked_ = other.checked_;
other              34 courgette/memory_allocator.h       other.checked_ = true;
other             159 courgette/memory_allocator.h   MemoryAllocator(const MemoryAllocator<T>& other) _THROW0() {  // NOLINT
other             163 courgette/memory_allocator.h   MemoryAllocator(const MemoryAllocator<OtherT>& other) _THROW0() {  // NOLINT
other             253 courgette/memory_allocator.h   explicit MemoryAllocator(const MemoryAllocator<T>& other) {
other             257 courgette/memory_allocator.h   explicit MemoryAllocator(const MemoryAllocator<OtherT>& other) {
other              36 courgette/region.h   Region(const Region& other) : start_(other.start_), length_(other.length_) {}
other              39 courgette/region.h   Region& assign(const Region& other) {
other              40 courgette/region.h     this->start_ = other.start_;
other              41 courgette/region.h     this->length_ = other.length_;
other             214 courgette/streams.cc CheckBool SinkStream::Append(SinkStream* other) {
other             215 courgette/streams.cc   bool ret = Write(other->buffer_.data(), other->buffer_.size());
other             217 courgette/streams.cc     other->Retire();
other             138 courgette/streams.h   CheckBool Append(SinkStream* other) WARN_UNUSED_RESULT;
other              40 dbus/dbus_statistics.cc   bool Compare(const Stat& other) const {
other              41 dbus/dbus_statistics.cc     if (service != other.service)
other              42 dbus/dbus_statistics.cc       return service < other.service;
other              43 dbus/dbus_statistics.cc     if (interface != other.interface)
other              44 dbus/dbus_statistics.cc       return interface < other.interface;
other              45 dbus/dbus_statistics.cc     return method < other.method;
other              29 extensions/browser/event_listener_map.cc bool EventListener::Equals(const EventListener* other) const {
other              33 extensions/browser/event_listener_map.cc   return event_name == other->event_name &&
other              34 extensions/browser/event_listener_map.cc       extension_id == other->extension_id &&
other              35 extensions/browser/event_listener_map.cc       process == other->process &&
other              36 extensions/browser/event_listener_map.cc       ((!!filter.get()) == (!!other->filter.get())) &&
other              37 extensions/browser/event_listener_map.cc       (!filter.get() || filter->Equals(other->filter.get()));
other              52 extensions/browser/event_listener_map.h   bool Equals(const EventListener* other) const;
other              18 extensions/browser/process_map.cc   explicit Item(const ProcessMap::Item& other)
other              19 extensions/browser/process_map.cc       : extension_id(other.extension_id),
other              20 extensions/browser/process_map.cc         process_id(other.process_id),
other              21 extensions/browser/process_map.cc         site_instance_id(other.site_instance_id) {
other              34 extensions/browser/process_map.cc   bool operator<(const ProcessMap::Item& other) const {
other              35 extensions/browser/process_map.cc     if (extension_id < other.extension_id)
other              38 extensions/browser/process_map.cc     if (extension_id == other.extension_id &&
other              39 extensions/browser/process_map.cc         process_id < other.process_id) {
other              43 extensions/browser/process_map.cc     if (extension_id == other.extension_id &&
other              44 extensions/browser/process_map.cc         process_id == other.process_id &&
other              45 extensions/browser/process_map.cc         site_instance_id < other.site_instance_id) {
other             234 extensions/common/api/sockets/sockets_manifest_permission.cc   const SocketsManifestPermission* other =
other             239 extensions/common/api/sockets/sockets_manifest_permission.cc       permissions_, other->permissions_);
other             245 extensions/common/api/sockets/sockets_manifest_permission.cc   const SocketsManifestPermission* other =
other             250 extensions/common/api/sockets/sockets_manifest_permission.cc       permissions_, other->permissions_);
other             256 extensions/common/api/sockets/sockets_manifest_permission.cc   const SocketsManifestPermission* other =
other             261 extensions/common/api/sockets/sockets_manifest_permission.cc       permissions_, other->permissions_);
other             266 extensions/common/api/sockets/sockets_manifest_permission.cc   const SocketsManifestPermission* other =
other             270 extensions/common/api/sockets/sockets_manifest_permission.cc                                                      other->permissions_);
other             274 extensions/common/api/sockets/sockets_manifest_permission.cc   const SocketsManifestPermission* other =
other             277 extensions/common/api/sockets/sockets_manifest_permission.cc   return (permissions_ == other->permissions_);
other              18 extensions/common/extension_set.cc ExtensionSet::const_iterator::const_iterator(const const_iterator& other)
other              19 extensions/common/extension_set.cc     : it_(other.it_) {
other              35 extensions/common/extension_set.h     const_iterator(const const_iterator& other);
other              53 extensions/common/extension_set.h     bool operator!=(const const_iterator& other) const {
other              54 extensions/common/extension_set.h       return it_ != other.it_;
other              56 extensions/common/extension_set.h     bool operator==(const const_iterator& other) const {
other              57 extensions/common/extension_set.h       return it_ == other.it_;
other              24 extensions/common/install_warning.h   bool operator==(const InstallWarning& other) const {
other              30 extensions/common/install_warning.h     return message == other.message;
other             232 extensions/common/manifest.cc bool Manifest::Equals(const Manifest* other) const {
other             233 extensions/common/manifest.cc   return other && value_->Equals(other->value());
other             168 extensions/common/manifest.h   bool Equals(const Manifest* other) const;
other              51 extensions/common/permissions/manifest_permission_set_unittest.cc     const MockManifestPermission* other =
other              53 extensions/common/permissions/manifest_permission_set_unittest.cc     EXPECT_EQ(name_, other->name_);
other              59 extensions/common/permissions/manifest_permission_set_unittest.cc     const MockManifestPermission* other =
other              61 extensions/common/permissions/manifest_permission_set_unittest.cc     EXPECT_EQ(name_, other->name_);
other              67 extensions/common/permissions/manifest_permission_set_unittest.cc     const MockManifestPermission* other =
other              69 extensions/common/permissions/manifest_permission_set_unittest.cc     EXPECT_EQ(name_, other->name_);
other              74 extensions/common/permissions/manifest_permission_set_unittest.cc     const MockManifestPermission* other =
other              76 extensions/common/permissions/manifest_permission_set_unittest.cc     EXPECT_EQ(name_, other->name_);
other              81 extensions/common/permissions/manifest_permission_set_unittest.cc     const MockManifestPermission* other =
other              83 extensions/common/permissions/manifest_permission_set_unittest.cc     EXPECT_EQ(name_, other->name_);
other             139 extensions/common/url_pattern.cc bool URLPattern::operator<(const URLPattern& other) const {
other             140 extensions/common/url_pattern.cc   return GetAsString() < other.GetAsString();
other             143 extensions/common/url_pattern.cc bool URLPattern::operator>(const URLPattern& other) const {
other             144 extensions/common/url_pattern.cc   return GetAsString() > other.GetAsString();
other             147 extensions/common/url_pattern.cc bool URLPattern::operator==(const URLPattern& other) const {
other             148 extensions/common/url_pattern.cc   return GetAsString() == other.GetAsString();
other             452 extensions/common/url_pattern.cc bool URLPattern::OverlapsWith(const URLPattern& other) const {
other             453 extensions/common/url_pattern.cc   if (match_all_urls() || other.match_all_urls())
other             455 extensions/common/url_pattern.cc   return (MatchesAnyScheme(other.GetExplicitSchemes()) ||
other             456 extensions/common/url_pattern.cc           other.MatchesAnyScheme(GetExplicitSchemes()))
other             457 extensions/common/url_pattern.cc       && (MatchesHost(other.host()) || other.MatchesHost(host()))
other             458 extensions/common/url_pattern.cc       && (MatchesPortPattern(other.port()) || other.MatchesPortPattern(port()))
other             459 extensions/common/url_pattern.cc       && (MatchesPath(StripTrailingWildcard(other.path())) ||
other             460 extensions/common/url_pattern.cc           other.MatchesPath(StripTrailingWildcard(path())));
other             463 extensions/common/url_pattern.cc bool URLPattern::Contains(const URLPattern& other) const {
other             466 extensions/common/url_pattern.cc   return MatchesAllSchemes(other.GetExplicitSchemes())
other             467 extensions/common/url_pattern.cc       && MatchesHost(other.host())
other             468 extensions/common/url_pattern.cc       && MatchesPortPattern(other.port())
other             469 extensions/common/url_pattern.cc       && MatchesPath(StripTrailingWildcard(other.path()));
other              90 extensions/common/url_pattern.h   bool operator<(const URLPattern& other) const;
other              91 extensions/common/url_pattern.h   bool operator>(const URLPattern& other) const;
other              92 extensions/common/url_pattern.h   bool operator==(const URLPattern& other) const;
other             163 extensions/common/url_pattern.h   bool OverlapsWith(const URLPattern& other) const;
other             167 extensions/common/url_pattern.h   bool Contains(const URLPattern& other) const;
other             106 extensions/common/url_pattern_set.cc bool URLPatternSet::operator==(const URLPatternSet& other) const {
other             107 extensions/common/url_pattern_set.cc   return patterns_ == other.patterns_;
other             131 extensions/common/url_pattern_set.cc bool URLPatternSet::Contains(const URLPatternSet& other) const {
other             132 extensions/common/url_pattern_set.cc   for (URLPatternSet::const_iterator it = other.begin();
other             133 extensions/common/url_pattern_set.cc        it != other.end(); ++it) {
other             170 extensions/common/url_pattern_set.cc bool URLPatternSet::OverlapsWith(const URLPatternSet& other) const {
other             175 extensions/common/url_pattern_set.cc     for (URLPatternSet::const_iterator j = other.patterns().begin();
other             176 extensions/common/url_pattern_set.cc          j != other.patterns().end(); ++j) {
other              84 extensions/common/url_pattern_set.h   bool OverlapsWith(const URLPatternSet& other) const;
other             143 gin/array_buffer.cc ArrayBuffer& ArrayBuffer::operator=(const ArrayBuffer& other) {
other             144 gin/array_buffer.cc   private_ = other.private_;
other             145 gin/array_buffer.cc   bytes_ = other.bytes_;
other             146 gin/array_buffer.cc   num_bytes_ = other.num_bytes_;
other              32 gin/array_buffer.h   ArrayBuffer& operator=(const ArrayBuffer& other);
other             387 gpu/GLES2/gl2extchromium.h GL_APICALL void GL_APIENTRY glLoseContextCHROMIUM(GLenum current, GLenum other);
other             390 gpu/GLES2/gl2extchromium.h     GLenum current, GLenum other);
other             892 gpu/command_buffer/client/gles2_c_lib_autogen.h void GLES2LoseContextCHROMIUM(GLenum current, GLenum other) {
other             893 gpu/command_buffer/client/gles2_c_lib_autogen.h   gles2::GetGLContext()->LoseContextCHROMIUM(current, other);
other            2195 gpu/command_buffer/client/gles2_cmd_helper_autogen.h void LoseContextCHROMIUM(GLenum current, GLenum other) {
other            2199 gpu/command_buffer/client/gles2_cmd_helper_autogen.h     c->Init(current, other);
other             705 gpu/command_buffer/client/gles2_implementation_autogen.h virtual void LoseContextCHROMIUM(GLenum current, GLenum other) OVERRIDE;
other            2035 gpu/command_buffer/client/gles2_implementation_impl_autogen.h void GLES2Implementation::LoseContextCHROMIUM(GLenum current, GLenum other) {
other            2039 gpu/command_buffer/client/gles2_implementation_impl_autogen.h                      << GLES2Util::GetStringEnum(other) << ")");
other            2040 gpu/command_buffer/client/gles2_implementation_impl_autogen.h   helper_->LoseContextCHROMIUM(current, other);
other             485 gpu/command_buffer/client/gles2_interface_autogen.h virtual void LoseContextCHROMIUM(GLenum current, GLenum other) = 0;
other             509 gpu/command_buffer/client/gles2_interface_stub_autogen.h virtual void LoseContextCHROMIUM(GLenum current, GLenum other) OVERRIDE;
other             509 gpu/command_buffer/client/gles2_trace_implementation_autogen.h virtual void LoseContextCHROMIUM(GLenum current, GLenum other) OVERRIDE;
other            1459 gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h                                                    GLenum other) {
other            1461 gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h   gl_->LoseContextCHROMIUM(current, other);
other            10497 gpu/command_buffer/common/gles2_cmd_format_autogen.h     other = _other;
other            10507 gpu/command_buffer/common/gles2_cmd_format_autogen.h   uint32 other;
other            10516 gpu/command_buffer/common/gles2_cmd_format_autogen.h COMPILE_ASSERT(offsetof(LoseContextCHROMIUM, other) == 8,
other            3768 gpu/command_buffer/common/gles2_cmd_format_test_autogen.h   EXPECT_EQ(static_cast<GLenum>(12), cmd.other);
other              45 gpu/command_buffer/common/gpu_memory_allocation.h   bool Equals(const MemoryAllocation& other) const {
other              47 gpu/command_buffer/common/gpu_memory_allocation.h                other.bytes_limit_when_visible &&
other              48 gpu/command_buffer/common/gpu_memory_allocation.h         priority_cutoff_when_visible == other.priority_cutoff_when_visible;
other              86 gpu/command_buffer/common/gpu_memory_allocation.h   bool Equals(const ManagedMemoryStats& other) const {
other              87 gpu/command_buffer/common/gpu_memory_allocation.h     return bytes_required == other.bytes_required &&
other              88 gpu/command_buffer/common/gpu_memory_allocation.h         bytes_nice_to_have == other.bytes_nice_to_have &&
other              89 gpu/command_buffer/common/gpu_memory_allocation.h         bytes_allocated == other.bytes_allocated &&
other              90 gpu/command_buffer/common/gpu_memory_allocation.h         backbuffer_requested == other.backbuffer_requested;
other              35 gpu/command_buffer/common/mailbox.h   bool operator<(const Mailbox& other) const {
other              36 gpu/command_buffer/common/mailbox.h     return memcmp(this, &other, sizeof other) < 0;
other              38 gpu/command_buffer/common/mailbox.h   bool operator==(const Mailbox& other) const {
other              39 gpu/command_buffer/common/mailbox.h     return memcmp(this, &other, sizeof other) == 0;
other              41 gpu/command_buffer/common/mailbox.h   bool operator!=(const Mailbox& other) const {
other              42 gpu/command_buffer/common/mailbox.h     return !operator==(other);
other            9375 gpu/command_buffer/service/gles2_cmd_decoder.cc   GLenum other = static_cast<GLenum>(c.other);
other            9380 gpu/command_buffer/service/gles2_cmd_decoder.cc   if (!validators_->reset_status.IsValid(other)) {
other            9381 gpu/command_buffer/service/gles2_cmd_decoder.cc     LOCAL_SET_GL_ERROR_INVALID_ENUM("glLoseContextCHROMIUM", other, "other");
other            9383 gpu/command_buffer/service/gles2_cmd_decoder.cc   group_->LoseContexts(other);
other             197 gpu/command_buffer/service/in_process_command_buffer.cc     InProcessCommandBuffer* other = *default_thread_clients_.Get().begin();
other             198 gpu/command_buffer/service/in_process_command_buffer.cc     service = other->service_;
other              47 gpu/command_buffer/service/program_manager.cc   bool operator==(const UniformType& other) const {
other              48 gpu/command_buffer/service/program_manager.cc     return type == other.type &&
other              49 gpu/command_buffer/service/program_manager.cc         size == other.size &&
other              50 gpu/command_buffer/service/program_manager.cc         precision == other.precision;
other              47 gpu/command_buffer/service/shader_translator.h         const ShaderTranslatorInterface::VariableInfo& other) const {
other              48 gpu/command_buffer/service/shader_translator.h       return type == other.type &&
other              49 gpu/command_buffer/service/shader_translator.h           size == other.size &&
other              50 gpu/command_buffer/service/shader_translator.h           precision == other.precision &&
other              51 gpu/command_buffer/service/shader_translator.h           strcmp(name.c_str(), other.name.c_str()) == 0;
other            1862 gpu/command_buffer/service/texture_manager_unittest.cc     bool operator==(const LevelInfo& other) const {
other            1863 gpu/command_buffer/service/texture_manager_unittest.cc       return target == other.target && format == other.format &&
other            1864 gpu/command_buffer/service/texture_manager_unittest.cc              width == other.width && height == other.height &&
other            1865 gpu/command_buffer/service/texture_manager_unittest.cc              depth == other.depth && border == other.border &&
other            1866 gpu/command_buffer/service/texture_manager_unittest.cc              type == other.type && cleared == other.cleared;
other              70 ipc/ipc_message.cc Message::Message(const Message& other) : Pickle(other) {
other              73 ipc/ipc_message.cc   file_descriptor_set_ = other.file_descriptor_set_;
other              85 ipc/ipc_message.cc Message& Message::operator=(const Message& other) {
other              86 ipc/ipc_message.cc   *static_cast<Pickle*>(this) = other;
other              88 ipc/ipc_message.cc   file_descriptor_set_ = other.file_descriptor_set_;
other              69 ipc/ipc_message.h   Message(const Message& other);
other              70 ipc/ipc_message.h   Message& operator=(const Message& other);
other             218 jingle/glue/chrome_async_socket_unittest.cc     bool IsEqual(const SignalSocketState& other) const {
other             220 jingle/glue/chrome_async_socket_unittest.cc           (signal == other.signal) &&
other             221 jingle/glue/chrome_async_socket_unittest.cc           (state == other.state) &&
other             222 jingle/glue/chrome_async_socket_unittest.cc           (error == other.error) &&
other             223 jingle/glue/chrome_async_socket_unittest.cc           (net_error == other.net_error);
other              23 jingle/notifier/base/server_information.cc bool ServerInformation::Equals(const ServerInformation& other) const {
other              25 jingle/notifier/base/server_information.cc       server.Equals(other.server) &&
other              26 jingle/notifier/base/server_information.cc       (ssltcp_support == other.ssltcp_support);
other              24 jingle/notifier/base/server_information.h   bool Equals(const ServerInformation& other) const;
other             112 jingle/notifier/communicator/single_login_attempt.cc     const buzz::XmlElement* other =
other             114 jingle/notifier/communicator/single_login_attempt.cc     if (other) {
other              19 jingle/notifier/listener/notification_defines.cc bool Subscription::Equals(const Subscription& other) const {
other              20 jingle/notifier/listener/notification_defines.cc   return channel == other.channel && from == other.from;
other              48 jingle/notifier/listener/notification_defines.cc bool Recipient::Equals(const Recipient& other) const {
other              49 jingle/notifier/listener/notification_defines.cc   return to == other.to && user_specific_data == other.user_specific_data;
other              60 jingle/notifier/listener/notification_defines.cc bool Notification::Equals(const Notification& other) const {
other              62 jingle/notifier/listener/notification_defines.cc       channel == other.channel &&
other              63 jingle/notifier/listener/notification_defines.cc       data == other.data &&
other              64 jingle/notifier/listener/notification_defines.cc       RecipientListsEqual(recipients, other.recipients);
other              16 jingle/notifier/listener/notification_defines.h   bool Equals(const Subscription& other) const;
other              35 jingle/notifier/listener/notification_defines.h   bool Equals(const Recipient& other) const;
other              59 jingle/notifier/listener/notification_defines.h   bool Equals(const Notification& other) const;
other             101 media/audio/audio_parameters.h   bool operator==(const AudioParameters& other) const {
other             102 media/audio/audio_parameters.h     return format_ == other.format() &&
other             103 media/audio/audio_parameters.h            sample_rate_ == other.sample_rate() &&
other             104 media/audio/audio_parameters.h            channel_layout_ == other.channel_layout() &&
other             105 media/audio/audio_parameters.h            channels_ == other.channels() &&
other             106 media/audio/audio_parameters.h            input_channels_ == other.input_channels() &&
other             107 media/audio/audio_parameters.h            bits_per_sample_ == other.bits_per_sample() &&
other             108 media/audio/audio_parameters.h            frames_per_buffer_ == other.frames_per_buffer() &&
other             109 media/audio/audio_parameters.h            effects_ == other.effects();
other              32 media/audio/audio_power_monitor_unittest.cc   TestScenario(const TestScenario& other) { *this = other; }
other              33 media/audio/audio_power_monitor_unittest.cc   TestScenario& operator=(const TestScenario& other) {
other              34 media/audio/audio_power_monitor_unittest.cc     this->expected_power_ = other.expected_power_;
other              35 media/audio/audio_power_monitor_unittest.cc     this->expected_clipped_ = other.expected_clipped_;
other              36 media/audio/audio_power_monitor_unittest.cc     this->bus_ = AudioBus::Create(other.bus_->channels(), other.bus_->frames());
other              37 media/audio/audio_power_monitor_unittest.cc     other.bus_->CopyTo(this->bus_.get());
other              42 media/base/ranges.h   Ranges<T> IntersectionWith(const Ranges<T>& other) const;
other             137 media/base/ranges.h Ranges<T> Ranges<T>::IntersectionWith(const Ranges<T>& other) const {
other             143 media/base/ranges.h   while (i < size() && j < other.size()) {
other             144 media/base/ranges.h     T max_start = std::max(start(i), other.start(j));
other             145 media/base/ranges.h     T min_end = std::min(end(i), other.end(j));
other             151 media/base/ranges.h     if (end(i) < other.end(j))
other             169 media/base/vector_math_unittest.cc   EWMATestScenario(const EWMATestScenario& other) { *this = other; }
other             170 media/base/vector_math_unittest.cc   EWMATestScenario& operator=(const EWMATestScenario& other) {
other             171 media/base/vector_math_unittest.cc     this->initial_value_ = other.initial_value_;
other             172 media/base/vector_math_unittest.cc     this->smoothing_factor_ = other.smoothing_factor_;
other             173 media/base/vector_math_unittest.cc     if (other.data_len_ == 0) {
other             177 media/base/vector_math_unittest.cc         base::AlignedAlloc(other.data_len_ * sizeof(float),
other             179 media/base/vector_math_unittest.cc       memcpy(this->data_.get(), other.data_.get(),
other             180 media/base/vector_math_unittest.cc              other.data_len_ * sizeof(float));
other             182 media/base/vector_math_unittest.cc     this->data_len_ = other.data_len_;
other             183 media/base/vector_math_unittest.cc     this->expected_final_avg_ = other.expected_final_avg_;
other             184 media/base/vector_math_unittest.cc     this->expected_max_ = other.expected_max_;
other              77 media/video/capture/video_capture_device.h     bool operator==(const Name& other) const {
other              78 media/video/capture/video_capture_device.h       return other.id() == unique_id_;
other              80 media/video/capture/video_capture_device.h     bool operator<(const Name& other) const {
other              81 media/video/capture/video_capture_device.h       return unique_id_ < other.id();
other              25 mojo/embedder/scoped_platform_handle.h   ScopedPlatformHandle(RValue other) : handle_(other.object->release()) {}
other              26 mojo/embedder/scoped_platform_handle.h   ScopedPlatformHandle& operator=(RValue other) {
other              27 mojo/embedder/scoped_platform_handle.h     handle_ = other.object->release();
other              33 mojo/embedder/scoped_platform_handle.h   void swap(ScopedPlatformHandle& other) {
other              35 mojo/embedder/scoped_platform_handle.h     handle_ = other.handle_;
other              36 mojo/embedder/scoped_platform_handle.h     other.handle_ = temp;
other              41 mojo/public/cpp/bindings/lib/message.cc void Message::Swap(Message* other) {
other              42 mojo/public/cpp/bindings/lib/message.cc   std::swap(data_num_bytes_, other->data_num_bytes_);
other              43 mojo/public/cpp/bindings/lib/message.cc   std::swap(data_, other->data_);
other              44 mojo/public/cpp/bindings/lib/message.cc   std::swap(handles_, other->handles_);
other              25 mojo/public/cpp/bindings/lib/shared_data.h   SharedData(const SharedData<T>& other) : holder_(other.holder_) {
other              29 mojo/public/cpp/bindings/lib/shared_data.h   SharedData<T>& operator=(const SharedData<T>& other) {
other              30 mojo/public/cpp/bindings/lib/shared_data.h     if (other.holder_ == holder_)
other              33 mojo/public/cpp/bindings/lib/shared_data.h     holder_ = other.holder_;
other              30 mojo/public/cpp/bindings/message.h   void Swap(Message* other);
other              87 mojo/public/cpp/bindings/remote_ptr.h   RemotePtr(RValue other) : state_(other.object->release()) {}
other              88 mojo/public/cpp/bindings/remote_ptr.h   RemotePtr& operator=(RValue other) {
other              89 mojo/public/cpp/bindings/remote_ptr.h     state_ = other.object->release();
other             103 mojo/public/cpp/system/core.h   explicit ScopedHandleBase(ScopedHandleBase<CompatibleHandleType> other)
other             104 mojo/public/cpp/system/core.h       : handle_(other.release()) {
other             108 mojo/public/cpp/system/core.h   ScopedHandleBase(RValue other) : handle_(other.object->release()) {}
other             109 mojo/public/cpp/system/core.h   ScopedHandleBase& operator=(RValue other) {
other             110 mojo/public/cpp/system/core.h     handle_ = other.object->release();
other             118 mojo/public/cpp/system/core.h       ScopedHandleBase<PassedHandleType> other) {
other             123 mojo/public/cpp/system/core.h         static_cast<HandleType>(other.release().value()));
other             126 mojo/public/cpp/system/core.h   void swap(ScopedHandleBase& other) {
other             127 mojo/public/cpp/system/core.h     handle_.swap(other.handle_);
other             172 mojo/public/cpp/system/core.h   void swap(Handle& other) {
other             174 mojo/public/cpp/system/core.h     value_ = other.value_;
other             175 mojo/public/cpp/system/core.h     other.value_ = temp;
other              84 mojo/public/cpp/system/tests/macros_unittest.cc   MoveOnlyInt(RValue other) { *this = other; }
other              85 mojo/public/cpp/system/tests/macros_unittest.cc   MoveOnlyInt& operator=(RValue other) {
other              86 mojo/public/cpp/system/tests/macros_unittest.cc     if (other.object != this) {
other              87 mojo/public/cpp/system/tests/macros_unittest.cc       is_set_ = other.object->is_set_;
other              88 mojo/public/cpp/system/tests/macros_unittest.cc       value_ = other.object->value_;
other              89 mojo/public/cpp/system/tests/macros_unittest.cc       other.object->is_set_ = false;
other              17 mojo/system/message_in_transit_queue.cc                                              MessageInTransitQueue* other) {
other              18 mojo/system/message_in_transit_queue.cc   queue_.swap(other->queue_);
other              28 mojo/system/message_in_transit_queue.h   MessageInTransitQueue(PassContents, MessageInTransitQueue* other);
other              62 native_client_sdk/src/libraries/nacl_io/path.h   bool operator==(const Path& other) { return Split() == other.Split(); }
other              63 native_client_sdk/src/libraries/nacl_io/path.h   bool operator!=(const Path& other) { return !operator==(other); }
other              47 net/base/auth.cc bool AuthCredentials::Equals(const AuthCredentials& other) const {
other              48 net/base/auth.cc   return username_ == other.username_ && password_ == other.password_;
other              25 net/base/auth.h   bool Equals(const AuthChallengeInfo& other) const;
other              57 net/base/auth.h   bool Equals(const AuthCredentials& other) const;
other              55 net/base/file_stream_context.cc FileStream::Context::OpenResult::OpenResult(RValue other)
other              56 net/base/file_stream_context.cc     : file(other.object->file.Pass()),
other              57 net/base/file_stream_context.cc       error_code(other.object->error_code) {
other              61 net/base/file_stream_context.cc     RValue other) {
other              62 net/base/file_stream_context.cc   if (this != other.object) {
other              63 net/base/file_stream_context.cc     file = other.object->file.Pass();
other              64 net/base/file_stream_context.cc     error_code = other.object->error_code;
other             150 net/base/file_stream_context.h     OpenResult(RValue other);
other             151 net/base/file_stream_context.h     OpenResult& operator=(RValue other);
other              26 net/base/hash_value.cc bool SHA1HashValue::Equals(const SHA1HashValue& other) const {
other              27 net/base/hash_value.cc   return memcmp(data, other.data, sizeof(data)) == 0;
other              30 net/base/hash_value.cc bool SHA256HashValue::Equals(const SHA256HashValue& other) const {
other              31 net/base/hash_value.cc   return memcmp(data, other.data, sizeof(data)) == 0;
other              34 net/base/hash_value.cc bool HashValue::Equals(const HashValue& other) const {
other              35 net/base/hash_value.cc   if (tag != other.tag)
other              39 net/base/hash_value.cc       return fingerprint.sha1.Equals(other.fingerprint.sha1);
other              41 net/base/hash_value.cc       return fingerprint.sha256.Equals(other.fingerprint.sha256);
other              21 net/base/hash_value.h   bool Equals(const SHA1HashValue& other) const;
other              27 net/base/hash_value.h   bool Equals(const SHA256HashValue& other) const;
other              51 net/base/hash_value.h   bool Equals(const HashValue& other) const;
other             109 net/base/hash_value.h   bool operator()(const HashValue& other) const {
other             110 net/base/hash_value.h     return fingerprint_.Equals(other);
other              36 net/base/host_port_pair.h   bool operator<(const HostPortPair& other) const {
other              37 net/base/host_port_pair.h     if (port_ != other.port_)
other              38 net/base/host_port_pair.h       return port_ < other.port_;
other              39 net/base/host_port_pair.h     return host_ < other.host_;
other              43 net/base/host_port_pair.h   bool Equals(const HostPortPair& other) const {
other              44 net/base/host_port_pair.h     return host_ == other.host_ && port_ == other.port_;
other             174 net/base/int128.h inline uint128& uint128::operator op(const uint128& other) { \
other             175 net/base/int128.h   hi_ op other.hi_;                                          \
other             176 net/base/int128.h   lo_ op other.lo_;                                          \
other             197 net/base/linked_hash_map.h   void swap(linked_hash_map& other) {
other             198 net/base/linked_hash_map.h     map_.swap(other.map_);
other             199 net/base/linked_hash_map.h     list_.swap(other.list_);
other              89 net/base/priority_queue.h     bool Equals(const Pointer& other) const {
other              90 net/base/priority_queue.h       return (priority_ == other.priority_) && (iterator_ == other.iterator_);
other              28 net/cert/cert_verify_result.h   void CopyFrom(const CertVerifyResult& other) {
other              29 net/cert/cert_verify_result.h     *this = other;
other             510 net/cert/multi_threaded_cert_verifier.cc     const RequestParams& other) const {
other             514 net/cert/multi_threaded_cert_verifier.cc   if (flags != other.flags)
other             515 net/cert/multi_threaded_cert_verifier.cc     return flags < other.flags;
other             516 net/cert/multi_threaded_cert_verifier.cc   if (hostname != other.hostname)
other             517 net/cert/multi_threaded_cert_verifier.cc     return hostname < other.hostname;
other             520 net/cert/multi_threaded_cert_verifier.cc       other.hash_values.begin(), other.hash_values.end(),
other              91 net/cert/multi_threaded_cert_verifier.h     bool operator<(const RequestParams& other) const;
other              39 net/cert/nss_profile_filter_chromeos.cc     const NSSProfileFilterChromeOS& other) {
other              40 net/cert/nss_profile_filter_chromeos.cc   public_slot_.reset(other.public_slot_ ?
other              41 net/cert/nss_profile_filter_chromeos.cc       PK11_ReferenceSlot(other.public_slot_.get()) :
other              43 net/cert/nss_profile_filter_chromeos.cc   private_slot_.reset(other.private_slot_ ?
other              44 net/cert/nss_profile_filter_chromeos.cc       PK11_ReferenceSlot(other.private_slot_.get()) :
other              51 net/cert/nss_profile_filter_chromeos.cc     const NSSProfileFilterChromeOS& other) {
other              52 net/cert/nss_profile_filter_chromeos.cc   public_slot_.reset(other.public_slot_ ?
other              53 net/cert/nss_profile_filter_chromeos.cc       PK11_ReferenceSlot(other.public_slot_.get()) :
other              55 net/cert/nss_profile_filter_chromeos.cc   private_slot_.reset(other.private_slot_ ?
other              56 net/cert/nss_profile_filter_chromeos.cc       PK11_ReferenceSlot(other.private_slot_.get()) :
other              31 net/cert/nss_profile_filter_chromeos.h   NSSProfileFilterChromeOS(const NSSProfileFilterChromeOS& other);
other              34 net/cert/nss_profile_filter_chromeos.h   NSSProfileFilterChromeOS& operator=(const NSSProfileFilterChromeOS& other);
other             498 net/cert/x509_certificate.cc bool X509Certificate::Equals(const X509Certificate* other) const {
other             499 net/cert/x509_certificate.cc   return IsSameOSCert(cert_handle_, other->cert_handle_);
other             243 net/cert/x509_certificate.h   bool Equals(const X509Certificate* other) const;
other             476 net/cert/x509_util_nss.cc           reinterpret_cast<char*>(name->name.other.data),
other             477 net/cert/x509_util_nss.cc           name->name.other.len));
other             480 net/cert/x509_util_nss.cc           reinterpret_cast<char*>(name->name.other.data),
other             481 net/cert/x509_util_nss.cc           name->name.other.len));
other             115 net/disk_cache/blockfile/addr.h   bool operator==(Addr other) const {
other             116 net/disk_cache/blockfile/addr.h     return value_ == other.value_;
other             119 net/disk_cache/blockfile/addr.h   bool operator!=(Addr other) const {
other             120 net/disk_cache/blockfile/addr.h     return value_ != other.value_;
other              50 net/disk_cache/blockfile/block_files.cc BlockHeader::BlockHeader(const BlockHeader& other) : header_(other.header_) {
other              37 net/disk_cache/blockfile/block_files.h   BlockHeader(const BlockHeader& other);
other              58 net/disk_cache/blockfile/index_table_v3_unittest.cc   void CopyFrom(const TestCacheTables& other);
other             119 net/disk_cache/blockfile/index_table_v3_unittest.cc void TestCacheTables::CopyFrom(const TestCacheTables& other) {
other             123 net/disk_cache/blockfile/index_table_v3_unittest.cc     reinterpret_cast<disk_cache::IndexBitmap*>(other.main_bitmap_.get());
other             126 net/disk_cache/blockfile/index_table_v3_unittest.cc   DCHECK_GE(num_bitmap_bytes_, other.num_bitmap_bytes_);
other             128 net/disk_cache/blockfile/index_table_v3_unittest.cc   memcpy(this_bitmap->bitmap, other_bitmap->bitmap, other.num_bitmap_bytes_);
other             132 net/disk_cache/blockfile/index_table_v3_unittest.cc   memcpy(main_table_.get(), other.main_table_.get(),
other             134 net/disk_cache/blockfile/index_table_v3_unittest.cc   memcpy(extra_table_.get(), other.extra_table_.get(),
other             143 net/disk_cache/blockfile/index_table_v3_unittest.cc   start_time_ = other.start_time_;
other             890 net/disk_cache/blockfile/rankings.cc       CacheRankingsBlock* other = it->second;
other             891 net/disk_cache/blockfile/rankings.cc       *other->Data() = *node->Data();
other              60 net/disk_cache/blockfile/storage_block-inl.h template<typename T> void StorageBlock<T>::SetData(T* other) {
other              63 net/disk_cache/blockfile/storage_block-inl.h   data_ = other;
other              45 net/disk_cache/blockfile/storage_block.h   void SetData(T* other);
other              35 net/disk_cache/simple/simple_entry_operation.cc SimpleEntryOperation::SimpleEntryOperation(const SimpleEntryOperation& other)
other              36 net/disk_cache/simple/simple_entry_operation.cc     : entry_(other.entry_.get()),
other              37 net/disk_cache/simple/simple_entry_operation.cc       buf_(other.buf_),
other              38 net/disk_cache/simple/simple_entry_operation.cc       callback_(other.callback_),
other              39 net/disk_cache/simple/simple_entry_operation.cc       out_entry_(other.out_entry_),
other              40 net/disk_cache/simple/simple_entry_operation.cc       offset_(other.offset_),
other              41 net/disk_cache/simple/simple_entry_operation.cc       sparse_offset_(other.sparse_offset_),
other              42 net/disk_cache/simple/simple_entry_operation.cc       length_(other.length_),
other              43 net/disk_cache/simple/simple_entry_operation.cc       out_start_(other.out_start_),
other              44 net/disk_cache/simple/simple_entry_operation.cc       type_(other.type_),
other              45 net/disk_cache/simple/simple_entry_operation.cc       have_index_(other.have_index_),
other              46 net/disk_cache/simple/simple_entry_operation.cc       index_(other.index_),
other              47 net/disk_cache/simple/simple_entry_operation.cc       truncate_(other.truncate_),
other              48 net/disk_cache/simple/simple_entry_operation.cc       optimistic_(other.optimistic_),
other              49 net/disk_cache/simple/simple_entry_operation.cc       alone_in_queue_(other.alone_in_queue_) {
other              40 net/disk_cache/simple/simple_entry_operation.h   SimpleEntryOperation(const SimpleEntryOperation& other);
other             197 net/disk_cache/simple/simple_synchronous_entry.h     bool operator<(const SparseRange& other) const {
other             198 net/disk_cache/simple/simple_synchronous_entry.h       return offset < other.offset;
other              48 net/dns/host_cache.h     bool operator<(const Key& other) const {
other              52 net/dns/host_cache.h       if (address_family != other.address_family)
other              53 net/dns/host_cache.h         return address_family < other.address_family;
other              54 net/dns/host_cache.h       if (host_resolver_flags != other.host_resolver_flags)
other              55 net/dns/host_cache.h         return host_resolver_flags < other.host_resolver_flags;
other              56 net/dns/host_cache.h       return hostname < other.hostname;
other              57 net/dns/host_resolver_impl_unittest.cc     bool operator<(const ResolveKey& other) const {
other              58 net/dns/host_resolver_impl_unittest.cc       return address_family < other.address_family ||
other              59 net/dns/host_resolver_impl_unittest.cc           (address_family == other.address_family && hostname < other.hostname);
other              31 net/dns/mdns_cache.cc     const MDnsCache::Key& other)
other              32 net/dns/mdns_cache.cc     : type_(other.type_), name_(other.name_), optional_(other.optional_) {
other              37 net/dns/mdns_cache.cc     const MDnsCache::Key& other) {
other              38 net/dns/mdns_cache.cc   type_ = other.type_;
other              39 net/dns/mdns_cache.cc   name_ = other.name_;
other              40 net/dns/mdns_cache.cc   optional_ = other.optional_;
other              71 net/dns/record_parsed.cc bool RecordParsed::IsEqual(const RecordParsed* other, bool is_mdns) const {
other              72 net/dns/record_parsed.cc   DCHECK(other);
other              74 net/dns/record_parsed.cc   uint16 other_klass = other->klass_;
other              81 net/dns/record_parsed.cc   return name_ == other->name_ &&
other              83 net/dns/record_parsed.cc       type_ == other->type_ &&
other              84 net/dns/record_parsed.cc       rdata_->IsEqual(other->rdata_.get());
other              45 net/dns/record_parsed.h   bool IsEqual(const RecordParsed* other, bool is_mdns) const;
other              49 net/dns/record_rdata.cc bool SrvRecordRdata::IsEqual(const RecordRdata* other) const {
other              50 net/dns/record_rdata.cc   if (other->Type() != Type()) return false;
other              51 net/dns/record_rdata.cc   const SrvRecordRdata* srv_other = static_cast<const SrvRecordRdata*>(other);
other              85 net/dns/record_rdata.cc bool ARecordRdata::IsEqual(const RecordRdata* other) const {
other              86 net/dns/record_rdata.cc   if (other->Type() != Type()) return false;
other              87 net/dns/record_rdata.cc   const ARecordRdata* a_other = static_cast<const ARecordRdata*>(other);
other             118 net/dns/record_rdata.cc bool AAAARecordRdata::IsEqual(const RecordRdata* other) const {
other             119 net/dns/record_rdata.cc   if (other->Type() != Type()) return false;
other             120 net/dns/record_rdata.cc   const AAAARecordRdata* a_other = static_cast<const AAAARecordRdata*>(other);
other             146 net/dns/record_rdata.cc bool CnameRecordRdata::IsEqual(const RecordRdata* other) const {
other             147 net/dns/record_rdata.cc   if (other->Type() != Type()) return false;
other             149 net/dns/record_rdata.cc       static_cast<const CnameRecordRdata*>(other);
other             175 net/dns/record_rdata.cc bool PtrRecordRdata::IsEqual(const RecordRdata* other) const {
other             176 net/dns/record_rdata.cc   if (other->Type() != Type()) return false;
other             177 net/dns/record_rdata.cc   const PtrRecordRdata* ptr_other = static_cast<const PtrRecordRdata*>(other);
other             212 net/dns/record_rdata.cc bool TxtRecordRdata::IsEqual(const RecordRdata* other) const {
other             213 net/dns/record_rdata.cc   if (other->Type() != Type()) return false;
other             214 net/dns/record_rdata.cc   const TxtRecordRdata* txt_other = static_cast<const TxtRecordRdata*>(other);
other             270 net/dns/record_rdata.cc bool NsecRecordRdata::IsEqual(const RecordRdata* other) const {
other             271 net/dns/record_rdata.cc   if (other->Type() != Type())
other             274 net/dns/record_rdata.cc       static_cast<const NsecRecordRdata*>(other);
other              29 net/dns/record_rdata.h   virtual bool IsEqual(const RecordRdata* other) const = 0;
other              51 net/dns/record_rdata.h   virtual bool IsEqual(const RecordRdata* other) const OVERRIDE;
other              81 net/dns/record_rdata.h   virtual bool IsEqual(const RecordRdata* other) const OVERRIDE;
other             103 net/dns/record_rdata.h   virtual bool IsEqual(const RecordRdata* other) const OVERRIDE;
other             125 net/dns/record_rdata.h   virtual bool IsEqual(const RecordRdata* other) const OVERRIDE;
other             147 net/dns/record_rdata.h   virtual bool IsEqual(const RecordRdata* other) const OVERRIDE;
other             170 net/dns/record_rdata.h   virtual bool IsEqual(const RecordRdata* other) const OVERRIDE;
other             194 net/dns/record_rdata.h   virtual bool IsEqual(const RecordRdata* other) const OVERRIDE;
other             264 net/http/http_auth_cache.cc void HttpAuthCache::UpdateAllFrom(const HttpAuthCache& other) {
other             265 net/http/http_auth_cache.cc   for (EntryList::const_iterator it = other.entries_.begin();
other             266 net/http/http_auth_cache.cc        it != other.entries_.end(); ++it) {
other             177 net/http/http_auth_cache.h   void UpdateAllFrom(const HttpAuthCache& other);
other             165 net/http/http_request_headers.cc void HttpRequestHeaders::MergeFrom(const HttpRequestHeaders& other) {
other             166 net/http/http_request_headers.cc   for (HeaderVector::const_iterator it = other.headers_.begin();
other             167 net/http/http_request_headers.cc        it != other.headers_.end(); ++it ) {
other             132 net/http/http_request_headers.h   void MergeFrom(const HttpRequestHeaders& other);
other             135 net/http/http_request_headers.h   void CopyFrom(const HttpRequestHeaders& other) {
other             136 net/http/http_request_headers.h     *this = other;
other             139 net/http/http_request_headers.h   void Swap(HttpRequestHeaders* other) {
other             140 net/http/http_request_headers.h     headers_.swap(other->headers_);
other              56 net/http/http_server_properties.h   bool Equals(const PortAlternateProtocolPair& other) const {
other              57 net/http/http_server_properties.h     return port == other.port && protocol == other.protocol;
other             147 net/http/mock_gssapi_library_posix.cc GssContextMockImpl::GssContextMockImpl(const GssContextMockImpl& other)
other             148 net/http/mock_gssapi_library_posix.cc   : src_name(other.src_name),
other             149 net/http/mock_gssapi_library_posix.cc     targ_name(other.targ_name),
other             150 net/http/mock_gssapi_library_posix.cc     lifetime_rec(other.lifetime_rec),
other             151 net/http/mock_gssapi_library_posix.cc     ctx_flags(other.ctx_flags),
other             152 net/http/mock_gssapi_library_posix.cc     locally_initiated(other.locally_initiated),
other             153 net/http/mock_gssapi_library_posix.cc     open(other.open) {
other             154 net/http/mock_gssapi_library_posix.cc   CopyOid(&mech_type, &other.mech_type);
other             178 net/http/mock_gssapi_library_posix.cc     const GssContextMockImpl& other) {
other             179 net/http/mock_gssapi_library_posix.cc   if (&other == this)
other             181 net/http/mock_gssapi_library_posix.cc   src_name = other.src_name;
other             182 net/http/mock_gssapi_library_posix.cc   targ_name = other.targ_name;
other             183 net/http/mock_gssapi_library_posix.cc   lifetime_rec = other.lifetime_rec;
other             184 net/http/mock_gssapi_library_posix.cc   CopyOid(&mech_type, &other.mech_type);
other             185 net/http/mock_gssapi_library_posix.cc   ctx_flags = other.ctx_flags;
other             186 net/http/mock_gssapi_library_posix.cc   locally_initiated = other.locally_initiated;
other             187 net/http/mock_gssapi_library_posix.cc   open = other.open;
other              29 net/http/mock_gssapi_library_posix.h   GssContextMockImpl(const GssContextMockImpl& other);
other              39 net/http/mock_gssapi_library_posix.h   void Assign(const GssContextMockImpl& other);
other             179 net/proxy/proxy_bypass_rules.cc bool ProxyBypassRules::Equals(const ProxyBypassRules& other) const {
other             180 net/proxy/proxy_bypass_rules.cc   if (rules_.size() != other.rules_.size())
other             184 net/proxy/proxy_bypass_rules.cc     if (!rules_[i]->Equals(*other.rules_[i]))
other             239 net/proxy/proxy_bypass_rules.cc void ProxyBypassRules::AssignFrom(const ProxyBypassRules& other) {
other             243 net/proxy/proxy_bypass_rules.cc   for (RuleList::const_iterator it = other.rules_.begin();
other             244 net/proxy/proxy_bypass_rules.cc        it != other.rules_.end(); ++it) {
other              61 net/proxy/proxy_bypass_rules.h   bool Equals(const ProxyBypassRules& other) const;
other             164 net/proxy/proxy_bypass_rules.h   void AssignFrom(const ProxyBypassRules& other);
other             153 net/proxy/proxy_config.cc bool ProxyConfig::ProxyRules::Equals(const ProxyRules& other) const {
other             154 net/proxy/proxy_config.cc   return type == other.type &&
other             155 net/proxy/proxy_config.cc          single_proxies.Equals(other.single_proxies) &&
other             156 net/proxy/proxy_config.cc          proxies_for_http.Equals(other.proxies_for_http) &&
other             157 net/proxy/proxy_config.cc          proxies_for_https.Equals(other.proxies_for_https) &&
other             158 net/proxy/proxy_config.cc          proxies_for_ftp.Equals(other.proxies_for_ftp) &&
other             159 net/proxy/proxy_config.cc          fallback_proxies.Equals(other.fallback_proxies) &&
other             160 net/proxy/proxy_config.cc          bypass_rules.Equals(other.bypass_rules) &&
other             161 net/proxy/proxy_config.cc          reverse_bypass == other.reverse_bypass;
other             203 net/proxy/proxy_config.cc bool ProxyConfig::Equals(const ProxyConfig& other) const {
other             206 net/proxy/proxy_config.cc   return auto_detect_ == other.auto_detect_ &&
other             207 net/proxy/proxy_config.cc          pac_url_ == other.pac_url_ &&
other             208 net/proxy/proxy_config.cc          pac_mandatory_ == other.pac_mandatory_ &&
other             209 net/proxy/proxy_config.cc          proxy_rules_.Equals(other.proxy_rules());
other             117 net/proxy/proxy_config.h     bool Equals(const ProxyRules& other) const;
other             163 net/proxy/proxy_config.h   bool Equals(const ProxyConfig& other) const;
other              21 net/proxy/proxy_info.cc void ProxyInfo::Use(const ProxyInfo& other) {
other              22 net/proxy/proxy_info.cc   proxy_resolve_start_time_ = other.proxy_resolve_start_time_;
other              23 net/proxy/proxy_info.cc   proxy_resolve_end_time_ = other.proxy_resolve_end_time_;
other              24 net/proxy/proxy_info.cc   proxy_list_ = other.proxy_list_;
other              25 net/proxy/proxy_info.cc   proxy_retry_info_ = other.proxy_retry_info_;
other              26 net/proxy/proxy_info.cc   config_id_ = other.config_id_;
other              27 net/proxy/proxy_info.cc   config_source_ = other.config_source_;
other              28 net/proxy/proxy_info.cc   did_bypass_proxy_ = other.did_bypass_proxy_;
other              29 net/proxy/proxy_info.cc   did_use_pac_script_ = other.did_use_pac_script_;
other             102 net/proxy/proxy_list.cc bool ProxyList::Equals(const ProxyList& other) const {
other             103 net/proxy/proxy_list.cc   if (size() != other.size())
other             105 net/proxy/proxy_list.cc   return proxies_ == other.proxies_;
other              60 net/proxy/proxy_list.h   bool Equals(const ProxyList& other) const;
other              50 net/proxy/proxy_resolver_script_data.cc     const ProxyResolverScriptData* other) const {
other              51 net/proxy/proxy_resolver_script_data.cc   if (type() != other->type())
other              56 net/proxy/proxy_resolver_script_data.cc       return utf16() == other->utf16();
other              58 net/proxy/proxy_resolver_script_data.cc       return url() == other->url();
other              57 net/proxy/proxy_resolver_script_data.h   bool Equals(const ProxyResolverScriptData* other) const;
other             145 net/proxy/proxy_server.h   bool operator==(const ProxyServer& other) const {
other             146 net/proxy/proxy_server.h     return scheme_ == other.scheme_ &&
other             147 net/proxy/proxy_server.h            host_port_pair_.Equals(other.host_port_pair_);
other             151 net/proxy/proxy_server.h   bool operator<(const ProxyServer& other) const {
other             152 net/proxy/proxy_server.h     if (scheme_ != other.scheme_)
other             153 net/proxy/proxy_server.h       return scheme_ < other.scheme_;
other             154 net/proxy/proxy_server.h     return host_port_pair_ < other.host_port_pair_;
other              26 net/quic/crypto/crypto_handshake_message.cc     const CryptoHandshakeMessage& other)
other              27 net/quic/crypto/crypto_handshake_message.cc     : tag_(other.tag_),
other              28 net/quic/crypto/crypto_handshake_message.cc       tag_value_map_(other.tag_value_map_),
other              29 net/quic/crypto/crypto_handshake_message.cc       minimum_size_(other.minimum_size_) {
other              37 net/quic/crypto/crypto_handshake_message.cc     const CryptoHandshakeMessage& other) {
other              38 net/quic/crypto/crypto_handshake_message.cc   tag_ = other.tag_;
other              39 net/quic/crypto/crypto_handshake_message.cc   tag_value_map_ = other.tag_value_map_;
other              43 net/quic/crypto/crypto_handshake_message.cc   minimum_size_ = other.minimum_size_;
other              23 net/quic/crypto/crypto_handshake_message.h   CryptoHandshakeMessage(const CryptoHandshakeMessage& other);
other              26 net/quic/crypto/crypto_handshake_message.h   CryptoHandshakeMessage& operator=(const CryptoHandshakeMessage& other);
other             234 net/quic/crypto/quic_crypto_client_config.cc     const QuicCryptoClientConfig::CachedState& other) {
other             237 net/quic/crypto/quic_crypto_client_config.cc   server_config_ = other.server_config_;
other             238 net/quic/crypto/quic_crypto_client_config.cc   source_address_token_ = other.source_address_token_;
other             239 net/quic/crypto/quic_crypto_client_config.cc   certs_ = other.certs_;
other             240 net/quic/crypto/quic_crypto_client_config.cc   server_config_sig_ = other.server_config_sig_;
other             241 net/quic/crypto/quic_crypto_client_config.cc   server_config_valid_ = other.server_config_valid_;
other              97 net/quic/crypto/quic_crypto_client_config.h     void InitializeFrom(const CachedState& other);
other              45 net/quic/crypto/quic_crypto_client_config_test.cc   QuicCryptoClientConfig::CachedState other;
other              48 net/quic/crypto/quic_crypto_client_config_test.cc   other.InitializeFrom(state);
other              49 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(state.server_config(), other.server_config());
other              50 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(state.source_address_token(), other.source_address_token());
other              51 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(state.certs(), other.certs());
other              52 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(1u, other.generation_counter());
other             176 net/quic/crypto/quic_crypto_client_config_test.cc   QuicCryptoClientConfig::CachedState* other =
other             179 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(state->server_config(), other->server_config());
other             180 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(state->source_address_token(), other->source_address_token());
other             181 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(state->certs(), other->certs());
other             182 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(1u, other->generation_counter());
other             198 net/quic/crypto/quic_crypto_client_config_test.cc   QuicCryptoClientConfig::CachedState* other =
other             202 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(state->server_config(), other->server_config());
other             203 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(state->source_address_token(), other->source_address_token());
other             204 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(state->certs(), other->certs());
other             205 net/quic/crypto/quic_crypto_client_config_test.cc   EXPECT_EQ(1u, other->generation_counter());
other             151 net/quic/iovector.h   void Swap(IOVector* other) { iovec_.swap(other->iovec_); }
other            1754 net/quic/quic_framer.cc void QuicFramer::SwapCryptersForTest(QuicFramer* other) {
other            1756 net/quic/quic_framer.cc     encrypter_[i].swap(other->encrypter_[i]);
other            1758 net/quic/quic_framer.cc   decrypter_.swap(other->decrypter_);
other            1759 net/quic/quic_framer.cc   alternative_decrypter_.swap(other->alternative_decrypter_);
other            1761 net/quic/quic_framer.cc   const bool other_latch = other->alternative_decrypter_latch_;
other            1762 net/quic/quic_framer.cc   other->alternative_decrypter_latch_ = alternative_decrypter_latch_;
other             348 net/quic/quic_framer.h   void SwapCryptersForTest(QuicFramer* other);
other              64 net/quic/quic_protocol.cc     const QuicPacketPublicHeader& other)
other              65 net/quic/quic_protocol.cc     : connection_id(other.connection_id),
other              66 net/quic/quic_protocol.cc       connection_id_length(other.connection_id_length),
other              67 net/quic/quic_protocol.cc       reset_flag(other.reset_flag),
other              68 net/quic/quic_protocol.cc       version_flag(other.version_flag),
other              69 net/quic/quic_protocol.cc       sequence_number_length(other.sequence_number_length),
other              70 net/quic/quic_protocol.cc       versions(other.versions) {
other             500 net/quic/quic_protocol.h   explicit QuicPacketPublicHeader(const QuicPacketPublicHeader& other);
other              30 net/quic/quic_server_id.cc bool QuicServerId::operator<(const QuicServerId& other) const {
other              31 net/quic/quic_server_id.cc   if (!host_port_pair_.Equals(other.host_port_pair_)) {
other              32 net/quic/quic_server_id.cc     return host_port_pair_ < other.host_port_pair_;
other              34 net/quic/quic_server_id.cc   if (is_https_ != other.is_https_) {
other              35 net/quic/quic_server_id.cc     return is_https_ < other.is_https_;
other              37 net/quic/quic_server_id.cc   return privacy_mode_ < other.privacy_mode_;
other              40 net/quic/quic_server_id.cc bool QuicServerId::operator==(const QuicServerId& other) const {
other              41 net/quic/quic_server_id.cc   return is_https_ == other.is_https_ &&
other              42 net/quic/quic_server_id.cc       privacy_mode_ == other.privacy_mode_ &&
other              43 net/quic/quic_server_id.cc       host_port_pair_.Equals(other.host_port_pair_);
other              31 net/quic/quic_server_id.h   bool operator<(const QuicServerId& other) const;
other              32 net/quic/quic_server_id.h   bool operator==(const QuicServerId& other) const;
other              87 net/quic/quic_stream_factory.cc     const QuicStreamFactory::IpAliasKey& other) const {
other              88 net/quic/quic_stream_factory.cc   if (!(ip_endpoint == other.ip_endpoint)) {
other              89 net/quic/quic_stream_factory.cc     return ip_endpoint < other.ip_endpoint;
other              91 net/quic/quic_stream_factory.cc   return is_https < other.is_https;
other              95 net/quic/quic_stream_factory.cc     const QuicStreamFactory::IpAliasKey& other) const {
other              96 net/quic/quic_stream_factory.cc   return is_https == other.is_https &&
other              97 net/quic/quic_stream_factory.cc       ip_endpoint == other.ip_endpoint;
other             180 net/quic/quic_stream_factory.h     bool operator<(const IpAliasKey &other) const;
other             181 net/quic/quic_stream_factory.h     bool operator==(const IpAliasKey &other) const;
other             117 net/quic/quic_time.cc QuicTime::Delta QuicTime::Subtract(const QuicTime& other) const {
other             118 net/quic/quic_time.cc   return QuicTime::Delta(ticks_ - other.ticks_);
other             135 net/quic/quic_time.cc bool QuicWallTime::IsAfter(QuicWallTime other) const {
other             136 net/quic/quic_time.cc   return seconds_ > other.seconds_;
other             139 net/quic/quic_time.cc bool QuicWallTime::IsBefore(QuicWallTime other) const {
other             140 net/quic/quic_time.cc   return seconds_ < other.seconds_;
other             147 net/quic/quic_time.cc QuicTime::Delta QuicWallTime::AbsoluteDifference(QuicWallTime other) const {
other             150 net/quic/quic_time.cc   if (seconds_ > other.seconds_) {
other             151 net/quic/quic_time.cc     d = seconds_ - other.seconds_;
other             153 net/quic/quic_time.cc     d = other.seconds_ - seconds_;
other              99 net/quic/quic_time.h   Delta Subtract(const QuicTime& other) const;
other             128 net/quic/quic_time.h   bool IsAfter(QuicWallTime other) const;
other             129 net/quic/quic_time.h   bool IsBefore(QuicWallTime other) const;
other             136 net/quic/quic_time.h   QuicTime::Delta AbsoluteDifference(QuicWallTime other) const;
other             318 net/socket/ssl_client_socket_nss.cc   PeerCertificateChain(const PeerCertificateChain& other);
other             320 net/socket/ssl_client_socket_nss.cc   PeerCertificateChain& operator=(const PeerCertificateChain& other);
other             344 net/socket/ssl_client_socket_nss.cc     const PeerCertificateChain& other) {
other             345 net/socket/ssl_client_socket_nss.cc   *this = other;
other             353 net/socket/ssl_client_socket_nss.cc     const PeerCertificateChain& other) {
other             354 net/socket/ssl_client_socket_nss.cc   if (this == &other)
other             358 net/socket/ssl_client_socket_nss.cc   certs_.reserve(other.certs_.size());
other             359 net/socket/ssl_client_socket_nss.cc   for (size_t i = 0; i < other.certs_.size(); ++i)
other             360 net/socket/ssl_client_socket_nss.cc     certs_.push_back(CERT_DupCertificate(other.certs_[i]));
other             336 net/socket/ssl_client_socket_openssl.cc   PeerCertificateChain(const PeerCertificateChain& other) { *this = other; }
other             338 net/socket/ssl_client_socket_openssl.cc   PeerCertificateChain& operator=(const PeerCertificateChain& other);
other             376 net/socket/ssl_client_socket_openssl.cc     const PeerCertificateChain& other) {
other             377 net/socket/ssl_client_socket_openssl.cc   if (this == &other)
other             381 net/socket/ssl_client_socket_openssl.cc   os_chain_ = other.os_chain_;
other             384 net/socket/ssl_client_socket_openssl.cc   openssl_chain_.reset(sk_X509_dup(other.openssl_chain_.get()));
other              66 net/socket/ssl_session_cache_openssl.cc   explicit SessionId(const SessionId& other)
other              67 net/socket/ssl_session_cache_openssl.cc       : id(other.id), id_len(other.id_len), hash(other.hash) {}
other              74 net/socket/ssl_session_cache_openssl.cc   bool operator==(const SessionId& other) const {
other              75 net/socket/ssl_session_cache_openssl.cc     return hash == other.hash && id_len == other.id_len &&
other              76 net/socket/ssl_session_cache_openssl.cc            !memcmp(id, other.id, id_len);
other              53 net/spdy/hpack_entry.cc bool HpackEntry::Equals(const HpackEntry& other) const {
other              55 net/spdy/hpack_entry.cc       StringPiecesEqualConstantTime(name_, other.name_) &&
other              56 net/spdy/hpack_entry.cc       StringPiecesEqualConstantTime(value_, other.value_) &&
other              57 net/spdy/hpack_entry.cc       (referenced_and_touch_count_ == other.referenced_and_touch_count_);
other              77 net/spdy/hpack_entry.h   bool Equals(const HpackEntry& other) const;
other              22 net/spdy/spdy_pinnable_buffer_piece.cc void SpdyPinnableBufferPiece::Swap(SpdyPinnableBufferPiece* other) {
other              24 net/spdy/spdy_pinnable_buffer_piece.cc   length_ = other->length_;
other              25 net/spdy/spdy_pinnable_buffer_piece.cc   other->length_ = length;
other              28 net/spdy/spdy_pinnable_buffer_piece.cc   buffer_ = other->buffer_;
other              29 net/spdy/spdy_pinnable_buffer_piece.cc   other->buffer_ = buffer;
other              31 net/spdy/spdy_pinnable_buffer_piece.cc   storage_.swap(other->storage_);
other              47 net/spdy/spdy_pinnable_buffer_piece.h   void Swap(SpdyPinnableBufferPiece* other);
other              35 net/spdy/spdy_session_key.cc bool SpdySessionKey::operator<(const SpdySessionKey& other) const {
other              36 net/spdy/spdy_session_key.cc   if (privacy_mode_ != other.privacy_mode_)
other              37 net/spdy/spdy_session_key.cc     return privacy_mode_ < other.privacy_mode_;
other              38 net/spdy/spdy_session_key.cc   if (!host_port_proxy_pair_.first.Equals(other.host_port_proxy_pair_.first))
other              39 net/spdy/spdy_session_key.cc     return host_port_proxy_pair_.first < other.host_port_proxy_pair_.first;
other              40 net/spdy/spdy_session_key.cc   return host_port_proxy_pair_.second < other.host_port_proxy_pair_.second;
other              43 net/spdy/spdy_session_key.cc bool SpdySessionKey::Equals(const SpdySessionKey& other) const {
other              44 net/spdy/spdy_session_key.cc   return privacy_mode_ == other.privacy_mode_ &&
other              45 net/spdy/spdy_session_key.cc       host_port_proxy_pair_.first.Equals(other.host_port_proxy_pair_.first) &&
other              46 net/spdy/spdy_session_key.cc       host_port_proxy_pair_.second == other.host_port_proxy_pair_.second;
other              28 net/spdy/spdy_session_key.h   bool operator<(const SpdySessionKey& other) const;
other              31 net/spdy/spdy_session_key.h   bool Equals(const SpdySessionKey& other) const;
other              63 net/ssl/openssl_client_key_store.cc OpenSSLClientKeyStore::KeyPair::KeyPair(const KeyPair& other) {
other              64 net/ssl/openssl_client_key_store.cc   public_key = CopyEVP_PKEY(other.public_key);
other              65 net/ssl/openssl_client_key_store.cc   private_key = CopyEVP_PKEY(other.private_key);
other              68 net/ssl/openssl_client_key_store.cc void OpenSSLClientKeyStore::KeyPair::operator=(const KeyPair& other) {
other              71 net/ssl/openssl_client_key_store.cc   public_key = CopyEVP_PKEY(other.public_key);
other              72 net/ssl/openssl_client_key_store.cc   private_key = CopyEVP_PKEY(other.private_key);
other              85 net/ssl/openssl_client_key_store.h     KeyPair(const KeyPair& other);
other              86 net/ssl/openssl_client_key_store.h     void operator=(const KeyPair& other);
other             240 net/tools/balsa/balsa_headers.cc     const const_header_lines_key_iterator& other)
other             241 net/tools/balsa/balsa_headers.cc     : iterator_base(other),
other             242 net/tools/balsa/balsa_headers.cc       key_(other.key_) {
other             296 net/tools/balsa/balsa_headers.cc void BalsaHeaders::Swap(BalsaHeaders* other) {
other             298 net/tools/balsa/balsa_headers.cc   if (this == other) return;
other             300 net/tools/balsa/balsa_headers.cc   balsa_buffer_.Swap(&other->balsa_buffer_);
other             303 net/tools/balsa/balsa_headers.cc   transfer_encoding_is_chunked_ = other->transfer_encoding_is_chunked_;
other             304 net/tools/balsa/balsa_headers.cc   other->transfer_encoding_is_chunked_ = tmp_bool;
other             307 net/tools/balsa/balsa_headers.cc   content_length_ = other->content_length_;
other             308 net/tools/balsa/balsa_headers.cc   other->content_length_ = tmp_size_t;
other             312 net/tools/balsa/balsa_headers.cc   content_length_status_ = other->content_length_status_;
other             313 net/tools/balsa/balsa_headers.cc   other->content_length_status_ = tmp_status;
other             316 net/tools/balsa/balsa_headers.cc   parsed_response_code_ = other->parsed_response_code_;
other             317 net/tools/balsa/balsa_headers.cc   other->parsed_response_code_ = tmp_size_t;
other             320 net/tools/balsa/balsa_headers.cc   firstline_buffer_base_idx_ = other->firstline_buffer_base_idx_;
other             321 net/tools/balsa/balsa_headers.cc   other->firstline_buffer_base_idx_ = tmp_blk_idx;
other             324 net/tools/balsa/balsa_headers.cc   whitespace_1_idx_ = other->whitespace_1_idx_;
other             325 net/tools/balsa/balsa_headers.cc   other->whitespace_1_idx_ = tmp_size_t;
other             328 net/tools/balsa/balsa_headers.cc   non_whitespace_1_idx_ = other->non_whitespace_1_idx_;
other             329 net/tools/balsa/balsa_headers.cc   other->non_whitespace_1_idx_ = tmp_size_t;
other             332 net/tools/balsa/balsa_headers.cc   whitespace_2_idx_ = other->whitespace_2_idx_;
other             333 net/tools/balsa/balsa_headers.cc   other->whitespace_2_idx_ = tmp_size_t;
other             336 net/tools/balsa/balsa_headers.cc   non_whitespace_2_idx_ = other->non_whitespace_2_idx_;
other             337 net/tools/balsa/balsa_headers.cc   other->non_whitespace_2_idx_ = tmp_size_t;
other             340 net/tools/balsa/balsa_headers.cc   whitespace_3_idx_ = other->whitespace_3_idx_;
other             341 net/tools/balsa/balsa_headers.cc   other->whitespace_3_idx_ = tmp_size_t;
other             344 net/tools/balsa/balsa_headers.cc   non_whitespace_3_idx_ = other->non_whitespace_3_idx_;
other             345 net/tools/balsa/balsa_headers.cc   other->non_whitespace_3_idx_ = tmp_size_t;
other             348 net/tools/balsa/balsa_headers.cc   whitespace_4_idx_ = other->whitespace_4_idx_;
other             349 net/tools/balsa/balsa_headers.cc   other->whitespace_4_idx_ = tmp_size_t;
other             352 net/tools/balsa/balsa_headers.cc   end_of_firstline_idx_ = other->end_of_firstline_idx_;
other             353 net/tools/balsa/balsa_headers.cc   other->end_of_firstline_idx_ = tmp_size_t;
other             355 net/tools/balsa/balsa_headers.cc   swap(header_lines_, other->header_lines_);
other             358 net/tools/balsa/balsa_headers.cc void BalsaHeaders::CopyFrom(const BalsaHeaders& other) {
other             360 net/tools/balsa/balsa_headers.cc   if (this == &other) return;
other             362 net/tools/balsa/balsa_headers.cc   balsa_buffer_.CopyFrom(other.balsa_buffer_);
other             363 net/tools/balsa/balsa_headers.cc   transfer_encoding_is_chunked_ = other.transfer_encoding_is_chunked_;
other             364 net/tools/balsa/balsa_headers.cc   content_length_ = other.content_length_;
other             365 net/tools/balsa/balsa_headers.cc   content_length_status_ = other.content_length_status_;
other             366 net/tools/balsa/balsa_headers.cc   parsed_response_code_ = other.parsed_response_code_;
other             367 net/tools/balsa/balsa_headers.cc   firstline_buffer_base_idx_ = other.firstline_buffer_base_idx_;
other             368 net/tools/balsa/balsa_headers.cc   whitespace_1_idx_ = other.whitespace_1_idx_;
other             369 net/tools/balsa/balsa_headers.cc   non_whitespace_1_idx_ = other.non_whitespace_1_idx_;
other             370 net/tools/balsa/balsa_headers.cc   whitespace_2_idx_ = other.whitespace_2_idx_;
other             371 net/tools/balsa/balsa_headers.cc   non_whitespace_2_idx_ = other.non_whitespace_2_idx_;
other             372 net/tools/balsa/balsa_headers.cc   whitespace_3_idx_ = other.whitespace_3_idx_;
other             373 net/tools/balsa/balsa_headers.cc   non_whitespace_3_idx_ = other.non_whitespace_3_idx_;
other             374 net/tools/balsa/balsa_headers.cc   whitespace_4_idx_ = other.whitespace_4_idx_;
other             375 net/tools/balsa/balsa_headers.cc   end_of_firstline_idx_ = other.end_of_firstline_idx_;
other             376 net/tools/balsa/balsa_headers.cc   header_lines_ = other.header_lines_;
other             619 net/tools/balsa/balsa_headers.h   void Swap(BalsaHeaders* other);
other             621 net/tools/balsa/balsa_headers.h   void CopyFrom(const BalsaHeaders& other);
other              62 net/tools/balsa/simple_buffer.h   void Swap(SimpleBuffer* other) {
other              64 net/tools/balsa/simple_buffer.h     storage_ = other->storage_;
other              65 net/tools/balsa/simple_buffer.h     other->storage_ = tmp;
other              68 net/tools/balsa/simple_buffer.h     write_idx_ = other->write_idx_;
other              69 net/tools/balsa/simple_buffer.h     other->write_idx_ = tmp_int;
other              72 net/tools/balsa/simple_buffer.h     read_idx_ = other->read_idx_;
other              73 net/tools/balsa/simple_buffer.h     other->read_idx_ = tmp_int;
other              76 net/tools/balsa/simple_buffer.h     storage_size_ = other->storage_size_;
other              77 net/tools/balsa/simple_buffer.h     other->storage_size_ = tmp_int;
other              69 net/tools/dump_cache/upgrade_win.cc   Message& operator= (const Message& other) {
other              70 net/tools/dump_cache/upgrade_win.cc     memcpy(this, &other, sizeof(*this));
other              41 net/url_request/url_request_context.cc void URLRequestContext::CopyFrom(const URLRequestContext* other) {
other              43 net/url_request/url_request_context.cc   set_net_log(other->net_log_);
other              44 net/url_request/url_request_context.cc   set_host_resolver(other->host_resolver_);
other              45 net/url_request/url_request_context.cc   set_cert_verifier(other->cert_verifier_);
other              46 net/url_request/url_request_context.cc   set_server_bound_cert_service(other->server_bound_cert_service_);
other              47 net/url_request/url_request_context.cc   set_fraudulent_certificate_reporter(other->fraudulent_certificate_reporter_);
other              48 net/url_request/url_request_context.cc   set_http_auth_handler_factory(other->http_auth_handler_factory_);
other              49 net/url_request/url_request_context.cc   set_proxy_service(other->proxy_service_);
other              50 net/url_request/url_request_context.cc   set_ssl_config_service(other->ssl_config_service_.get());
other              51 net/url_request/url_request_context.cc   set_network_delegate(other->network_delegate_);
other              52 net/url_request/url_request_context.cc   set_http_server_properties(other->http_server_properties_);
other              53 net/url_request/url_request_context.cc   set_cookie_store(other->cookie_store_.get());
other              54 net/url_request/url_request_context.cc   set_transport_security_state(other->transport_security_state_);
other              55 net/url_request/url_request_context.cc   set_cert_transparency_verifier(other->cert_transparency_verifier_);
other              56 net/url_request/url_request_context.cc   set_http_transaction_factory(other->http_transaction_factory_);
other              57 net/url_request/url_request_context.cc   set_job_factory(other->job_factory_);
other              58 net/url_request/url_request_context.cc   set_throttler_manager(other->throttler_manager_);
other              59 net/url_request/url_request_context.cc   set_http_user_agent_settings(other->http_user_agent_settings_);
other              56 net/url_request/url_request_context.h   void CopyFrom(const URLRequestContext* other);
other              22 net/websockets/websocket_extension.cc bool WebSocketExtension::Parameter::Equals(const Parameter& other) const {
other              23 net/websockets/websocket_extension.cc   return name_ == other.name_ && value_ == other.value_;
other              33 net/websockets/websocket_extension.cc bool WebSocketExtension::Equals(const WebSocketExtension& other) const {
other              34 net/websockets/websocket_extension.cc   if (name_ != other.name_) return false;
other              35 net/websockets/websocket_extension.cc   if (parameters_.size() != other.parameters_.size()) return false;
other              36 net/websockets/websocket_extension.cc   for (size_t i = 0; i < other.parameters_.size(); ++i) {
other              37 net/websockets/websocket_extension.cc     if (!parameters_[i].Equals(other.parameters_[i]))
other              30 net/websockets/websocket_extension.h     bool Equals(const Parameter& other) const;
other              46 net/websockets/websocket_extension.h   bool Equals(const WebSocketExtension& other) const;
other              23 ppapi/cpp/audio_buffer.cc AudioBuffer::AudioBuffer(const AudioBuffer& other) : Resource(other) {
other              22 ppapi/cpp/audio_buffer.h   AudioBuffer(const AudioBuffer& other);
other             111 ppapi/cpp/core.h   Core(const Core& other);
other             112 ppapi/cpp/core.h   Core& operator=(const Core& other);
other              29 ppapi/cpp/dev/alarms_dev.cc Alarm_Dev::Alarm_Dev(const Alarm_Dev& other)
other              32 ppapi/cpp/dev/alarms_dev.cc   operator=(other);
other              35 ppapi/cpp/dev/alarms_dev.cc Alarm_Dev::Alarm_Dev(const PP_Alarms_Alarm_Dev& other)
other              38 ppapi/cpp/dev/alarms_dev.cc   operator=(other);
other              50 ppapi/cpp/dev/alarms_dev.cc Alarm_Dev& Alarm_Dev::operator=(const Alarm_Dev& other) {
other              51 ppapi/cpp/dev/alarms_dev.cc   return operator=(*other.storage_);
other              54 ppapi/cpp/dev/alarms_dev.cc Alarm_Dev& Alarm_Dev::operator=(const PP_Alarms_Alarm_Dev& other) {
other              55 ppapi/cpp/dev/alarms_dev.cc   if (storage_.get() == &other)
other              58 ppapi/cpp/dev/alarms_dev.cc   name_wrapper_ = other.name;
other              59 ppapi/cpp/dev/alarms_dev.cc   storage_->scheduled_time = other.scheduled_time;
other              60 ppapi/cpp/dev/alarms_dev.cc   period_in_minutes_wrapper_ = other.period_in_minutes;
other             119 ppapi/cpp/dev/alarms_dev.cc AlarmCreateInfo_Dev::AlarmCreateInfo_Dev(const AlarmCreateInfo_Dev& other)
other             123 ppapi/cpp/dev/alarms_dev.cc   operator=(other);
other             127 ppapi/cpp/dev/alarms_dev.cc     const PP_Alarms_AlarmCreateInfo_Dev& other)
other             131 ppapi/cpp/dev/alarms_dev.cc   operator=(other);
other             147 ppapi/cpp/dev/alarms_dev.cc     const AlarmCreateInfo_Dev& other) {
other             148 ppapi/cpp/dev/alarms_dev.cc   return operator=(*other.storage_);
other             152 ppapi/cpp/dev/alarms_dev.cc     const PP_Alarms_AlarmCreateInfo_Dev& other) {
other             153 ppapi/cpp/dev/alarms_dev.cc   if (storage_.get() == &other)
other             156 ppapi/cpp/dev/alarms_dev.cc   when_wrapper_ = other.when;
other             157 ppapi/cpp/dev/alarms_dev.cc   delay_in_minutes_wrapper_ = other.delay_in_minutes;
other             158 ppapi/cpp/dev/alarms_dev.cc   period_in_minutes_wrapper_ = other.period_in_minutes;
other              36 ppapi/cpp/dev/alarms_dev.h   Alarm_Dev(const Alarm_Dev& other);
other              38 ppapi/cpp/dev/alarms_dev.h   explicit Alarm_Dev(const PP_Alarms_Alarm_Dev& other);
other              48 ppapi/cpp/dev/alarms_dev.h   Alarm_Dev& operator=(const Alarm_Dev& other);
other              49 ppapi/cpp/dev/alarms_dev.h   Alarm_Dev& operator=(const PP_Alarms_Alarm_Dev& other);
other              82 ppapi/cpp/dev/alarms_dev.h   AlarmCreateInfo_Dev(const AlarmCreateInfo_Dev& other);
other              84 ppapi/cpp/dev/alarms_dev.h   explicit AlarmCreateInfo_Dev(const PP_Alarms_AlarmCreateInfo_Dev& other);
other              94 ppapi/cpp/dev/alarms_dev.h   AlarmCreateInfo_Dev& operator=(const AlarmCreateInfo_Dev& other);
other              95 ppapi/cpp/dev/alarms_dev.h   AlarmCreateInfo_Dev& operator=(const PP_Alarms_AlarmCreateInfo_Dev& other);
other              93 ppapi/cpp/dev/array_dev.h   Array(const Array<T>& other) { DeepCopy(*other.storage_); }
other              97 ppapi/cpp/dev/array_dev.h   Array<T>& operator=(const Array<T>& other) {
other              98 ppapi/cpp/dev/array_dev.h     return operator=(*other.storage_);
other             101 ppapi/cpp/dev/array_dev.h   Array<T>& operator=(const CArrayType& other) {
other             102 ppapi/cpp/dev/array_dev.h     if (storage_.get() == &other)
other             106 ppapi/cpp/dev/array_dev.h     DeepCopy(other);
other             155 ppapi/cpp/dev/array_dev.h   void DeepCopy(const CArrayType& other) {
other             156 ppapi/cpp/dev/array_dev.h     storage_->size = other.size;
other             166 ppapi/cpp/dev/array_dev.h       wrappers_[i] = other.elements[i];
other              25 ppapi/cpp/dev/buffer_dev.cc Buffer_Dev::Buffer_Dev(const Buffer_Dev& other)
other              26 ppapi/cpp/dev/buffer_dev.cc     : Resource(other) {
other              18 ppapi/cpp/dev/buffer_dev.h   Buffer_Dev(const Buffer_Dev& other);
other              29 ppapi/cpp/dev/device_ref_dev.cc DeviceRef_Dev::DeviceRef_Dev(const DeviceRef_Dev& other) : Resource(other) {
other              22 ppapi/cpp/dev/device_ref_dev.h   DeviceRef_Dev(const DeviceRef_Dev& other);
other              43 ppapi/cpp/dev/file_chooser_dev.cc FileChooser_Dev::FileChooser_Dev(const FileChooser_Dev& other)
other              44 ppapi/cpp/dev/file_chooser_dev.cc     : Resource(other) {
other              52 ppapi/cpp/dev/file_chooser_dev.h   FileChooser_Dev(const FileChooser_Dev& other);
other              38 ppapi/cpp/dev/font_dev.cc FontDescription_Dev::FontDescription_Dev(const FontDescription_Dev& other) {
other              39 ppapi/cpp/dev/font_dev.cc   set_face(other.face());
other              40 ppapi/cpp/dev/font_dev.cc   set_family(other.family());
other              41 ppapi/cpp/dev/font_dev.cc   set_size(other.size());
other              42 ppapi/cpp/dev/font_dev.cc   set_weight(other.weight());
other              43 ppapi/cpp/dev/font_dev.cc   set_italic(other.italic());
other              44 ppapi/cpp/dev/font_dev.cc   set_small_caps(other.small_caps());
other              45 ppapi/cpp/dev/font_dev.cc   set_letter_spacing(other.letter_spacing());
other              46 ppapi/cpp/dev/font_dev.cc   set_word_spacing(other.word_spacing());
other              53 ppapi/cpp/dev/font_dev.cc     const FontDescription_Dev& other) {
other              54 ppapi/cpp/dev/font_dev.cc   pp_font_description_ = other.pp_font_description_;
other              59 ppapi/cpp/dev/font_dev.cc   set_face(other.face());
other              81 ppapi/cpp/dev/font_dev.cc TextRun_Dev::TextRun_Dev(const TextRun_Dev& other) : text_(other.text_) {
other              83 ppapi/cpp/dev/font_dev.cc   pp_text_run_.rtl = other.pp_text_run_.rtl;
other              84 ppapi/cpp/dev/font_dev.cc   pp_text_run_.override_direction = other.pp_text_run_.override_direction;
other              90 ppapi/cpp/dev/font_dev.cc TextRun_Dev& TextRun_Dev::operator=(const TextRun_Dev& other) {
other              91 ppapi/cpp/dev/font_dev.cc   pp_text_run_ = other.pp_text_run_;
other              92 ppapi/cpp/dev/font_dev.cc   text_ = other.text_;
other             113 ppapi/cpp/dev/font_dev.cc Font_Dev::Font_Dev(const Font_Dev& other) : Resource(other) {
other             116 ppapi/cpp/dev/font_dev.cc Font_Dev& Font_Dev::operator=(const Font_Dev& other) {
other             117 ppapi/cpp/dev/font_dev.cc   Resource::operator=(other);
other              28 ppapi/cpp/dev/font_dev.h   FontDescription_Dev(const FontDescription_Dev& other);
other              31 ppapi/cpp/dev/font_dev.h   FontDescription_Dev& operator=(const FontDescription_Dev& other);
other              83 ppapi/cpp/dev/font_dev.h   TextRun_Dev(const TextRun_Dev& other);
other              86 ppapi/cpp/dev/font_dev.h   TextRun_Dev& operator=(const TextRun_Dev& other);
other             108 ppapi/cpp/dev/font_dev.h   Font_Dev(const Font_Dev& other);
other             110 ppapi/cpp/dev/font_dev.h   Font_Dev& operator=(const Font_Dev& other);
other              35 ppapi/cpp/dev/optional_dev.h   Optional(const Optional<double>& other) { *storage_ = *other.storage_; }
other              37 ppapi/cpp/dev/optional_dev.h   Optional<double>& operator=(const Optional<double>& other) {
other              38 ppapi/cpp/dev/optional_dev.h     return operator=(*other.storage_);
other              41 ppapi/cpp/dev/optional_dev.h   Optional<double>& operator=(const PP_Optional_Double_Dev& other) {
other              42 ppapi/cpp/dev/optional_dev.h     if (storage_.get() == &other)
other              45 ppapi/cpp/dev/optional_dev.h     *storage_ = other;
other              89 ppapi/cpp/dev/optional_dev.h   Optional(const Optional<std::string>& other) : wrapper_(other.wrapper_) {}
other              91 ppapi/cpp/dev/optional_dev.h   Optional<std::string>& operator=(const Optional<std::string>& other) {
other              92 ppapi/cpp/dev/optional_dev.h     wrapper_ = other.wrapper_;
other              96 ppapi/cpp/dev/optional_dev.h   Optional<std::string>& operator=(const PP_Var& other) {
other              97 ppapi/cpp/dev/optional_dev.h     wrapper_ = other;
other              84 ppapi/cpp/dev/scriptable_object_deprecated.h   ScriptableObject(const ScriptableObject& other);
other              85 ppapi/cpp/dev/scriptable_object_deprecated.h   ScriptableObject& operator=(const ScriptableObject& other);
other              34 ppapi/cpp/dev/scrollbar_dev.cc Scrollbar_Dev::Scrollbar_Dev(const Scrollbar_Dev& other)
other              35 ppapi/cpp/dev/scrollbar_dev.cc     : Widget_Dev(other) {
other              23 ppapi/cpp/dev/scrollbar_dev.h   Scrollbar_Dev(const Scrollbar_Dev& other);
other              25 ppapi/cpp/dev/scrollbar_dev.h   Scrollbar_Dev& operator=(const Scrollbar_Dev& other);
other              27 ppapi/cpp/dev/string_wrapper_dev.cc     const OptionalStringWrapper& other) {
other              29 ppapi/cpp/dev/string_wrapper_dev.cc   *storage_ = Var(*other.storage_).Detach();
other              37 ppapi/cpp/dev/string_wrapper_dev.cc     const OptionalStringWrapper& other) {
other              38 ppapi/cpp/dev/string_wrapper_dev.cc   return operator=(*other.storage_);
other              41 ppapi/cpp/dev/string_wrapper_dev.cc OptionalStringWrapper& OptionalStringWrapper::operator=(const PP_Var& other) {
other              42 ppapi/cpp/dev/string_wrapper_dev.cc   if (storage_.get() == &other)
other              47 ppapi/cpp/dev/string_wrapper_dev.cc   *storage_ = Var(other).Detach();
other             100 ppapi/cpp/dev/string_wrapper_dev.cc StringWrapper::StringWrapper(const StringWrapper& other)
other             101 ppapi/cpp/dev/string_wrapper_dev.cc     : storage_(other.storage_) {
other             107 ppapi/cpp/dev/string_wrapper_dev.cc StringWrapper& StringWrapper::operator=(const StringWrapper& other) {
other             108 ppapi/cpp/dev/string_wrapper_dev.cc   storage_ = other.storage_;
other             112 ppapi/cpp/dev/string_wrapper_dev.cc StringWrapper& StringWrapper::operator=(const PP_Var& other) {
other             113 ppapi/cpp/dev/string_wrapper_dev.cc   PP_DCHECK(other.type == PP_VARTYPE_STRING);
other             114 ppapi/cpp/dev/string_wrapper_dev.cc   storage_ = other;
other              32 ppapi/cpp/dev/string_wrapper_dev.h   OptionalStringWrapper(const OptionalStringWrapper& other);
other              36 ppapi/cpp/dev/string_wrapper_dev.h   OptionalStringWrapper& operator=(const OptionalStringWrapper& other);
other              37 ppapi/cpp/dev/string_wrapper_dev.h   OptionalStringWrapper& operator=(const PP_Var& other);
other              68 ppapi/cpp/dev/string_wrapper_dev.h   StringWrapper(const StringWrapper& other);
other              72 ppapi/cpp/dev/string_wrapper_dev.h   StringWrapper& operator=(const StringWrapper& other);
other              73 ppapi/cpp/dev/string_wrapper_dev.h   StringWrapper& operator=(const PP_Var& other);
other              46 ppapi/cpp/dev/truetype_font_dev.cc TrueTypeFontDesc_Dev::TrueTypeFontDesc_Dev(const TrueTypeFontDesc_Dev& other) {
other              47 ppapi/cpp/dev/truetype_font_dev.cc   set_family(other.family());
other              48 ppapi/cpp/dev/truetype_font_dev.cc   set_generic_family(other.generic_family());
other              49 ppapi/cpp/dev/truetype_font_dev.cc   set_style(other.style());
other              50 ppapi/cpp/dev/truetype_font_dev.cc   set_weight(other.weight());
other              51 ppapi/cpp/dev/truetype_font_dev.cc   set_width(other.width());
other              52 ppapi/cpp/dev/truetype_font_dev.cc   set_charset(other.charset());
other              59 ppapi/cpp/dev/truetype_font_dev.cc     const TrueTypeFontDesc_Dev& other) {
other              60 ppapi/cpp/dev/truetype_font_dev.cc   if (this == &other)
other              63 ppapi/cpp/dev/truetype_font_dev.cc   set_family(other.family());
other              64 ppapi/cpp/dev/truetype_font_dev.cc   set_generic_family(other.generic_family());
other              65 ppapi/cpp/dev/truetype_font_dev.cc   set_style(other.style());
other              66 ppapi/cpp/dev/truetype_font_dev.cc   set_weight(other.weight());
other              67 ppapi/cpp/dev/truetype_font_dev.cc   set_width(other.width());
other              68 ppapi/cpp/dev/truetype_font_dev.cc   set_charset(other.charset());
other              86 ppapi/cpp/dev/truetype_font_dev.cc TrueTypeFont_Dev::TrueTypeFont_Dev(const TrueTypeFont_Dev& other)
other              87 ppapi/cpp/dev/truetype_font_dev.cc     : Resource(other) {
other              39 ppapi/cpp/dev/truetype_font_dev.h   TrueTypeFontDesc_Dev(const TrueTypeFontDesc_Dev& other);
other              43 ppapi/cpp/dev/truetype_font_dev.h   TrueTypeFontDesc_Dev& operator=(const TrueTypeFontDesc_Dev& other);
other             109 ppapi/cpp/dev/truetype_font_dev.h   TrueTypeFont_Dev(const TrueTypeFont_Dev& other);
other              50 ppapi/cpp/dev/url_util_dev.h   URLUtil_Dev(const URLUtil_Dev& other);
other              51 ppapi/cpp/dev/url_util_dev.h   URLUtil_Dev& operator=(const URLUtil_Dev& other);
other              17 ppapi/cpp/dev/view_dev.h   ViewDev(const View& other) : View(other) {}
other              32 ppapi/cpp/dev/widget_dev.cc Widget_Dev::Widget_Dev(const Widget_Dev& other) : Resource(other) {
other              25 ppapi/cpp/dev/widget_dev.h   Widget_Dev(const Widget_Dev& other);
other              24 ppapi/cpp/directory_entry.cc DirectoryEntry::DirectoryEntry(const DirectoryEntry& other) {
other              25 ppapi/cpp/directory_entry.cc   data_.file_ref = other.data_.file_ref;
other              26 ppapi/cpp/directory_entry.cc   data_.file_type = other.data_.file_type;
other              37 ppapi/cpp/directory_entry.cc     const DirectoryEntry& other) {
other              40 ppapi/cpp/directory_entry.cc   data_ = other.data_;
other              42 ppapi/cpp/directory_entry.h   DirectoryEntry(const DirectoryEntry& other);
other              56 ppapi/cpp/directory_entry.h   DirectoryEntry& operator=(const DirectoryEntry& other);
other              21 ppapi/cpp/extensions/optional.h   Optional(const Optional<T>& other)
other              22 ppapi/cpp/extensions/optional.h       : value_(other.value_ ? new T(*other.value_) : NULL) {
other              29 ppapi/cpp/extensions/optional.h   Optional<T>& operator=(const T& other) {
other              30 ppapi/cpp/extensions/optional.h     if (value_ == &other)
other              34 ppapi/cpp/extensions/optional.h     value_ = new T(other);
other              39 ppapi/cpp/extensions/optional.h   Optional<T>& operator=(const Optional<T>& other) {
other              40 ppapi/cpp/extensions/optional.h     if (value_ == other.value_)
other              44 ppapi/cpp/extensions/optional.h     if (other.value_)
other              45 ppapi/cpp/extensions/optional.h       value_ = new T(*other.value_);
other              84 ppapi/cpp/extensions/optional.h   void Swap(Optional<T>* other) {
other              86 ppapi/cpp/extensions/optional.h     value_ = other->value_;
other              87 ppapi/cpp/extensions/optional.h     other->value_ = temp;
other              44 ppapi/cpp/file_io.cc FileIO::FileIO(const FileIO& other)
other              45 ppapi/cpp/file_io.cc     : Resource(other) {
other              39 ppapi/cpp/file_io.h   FileIO(const FileIO& other);
other              52 ppapi/cpp/file_ref.cc FileRef::FileRef(const FileRef& other)
other              53 ppapi/cpp/file_ref.cc     : Resource(other) {
other              60 ppapi/cpp/file_ref.h   FileRef(const FileRef& other);
other              29 ppapi/cpp/file_system.cc FileSystem::FileSystem(const FileSystem& other) : Resource(other) {
other              34 ppapi/cpp/file_system.h   FileSystem(const FileSystem& other);
other              34 ppapi/cpp/graphics_2d.cc Graphics2D::Graphics2D(const Graphics2D& other)
other              35 ppapi/cpp/graphics_2d.cc     : Resource(other),
other              36 ppapi/cpp/graphics_2d.cc       size_(other.size_) {
other              65 ppapi/cpp/graphics_2d.cc Graphics2D& Graphics2D::operator=(const Graphics2D& other) {
other              66 ppapi/cpp/graphics_2d.cc   Resource::operator=(other);
other              67 ppapi/cpp/graphics_2d.cc   size_ = other.size_;
other              34 ppapi/cpp/graphics_2d.h   Graphics2D(const Graphics2D& other);
other              73 ppapi/cpp/graphics_2d.h   Graphics2D& operator=(const Graphics2D& other);
other              36 ppapi/cpp/host_resolver.cc HostResolver::HostResolver(const HostResolver& other) : Resource(other) {
other              42 ppapi/cpp/host_resolver.cc HostResolver& HostResolver::operator=(const HostResolver& other) {
other              43 ppapi/cpp/host_resolver.cc   Resource::operator=(other);
other              47 ppapi/cpp/host_resolver.h   HostResolver(const HostResolver& other);
other              57 ppapi/cpp/host_resolver.h   HostResolver& operator=(const HostResolver& other);
other              29 ppapi/cpp/image_data.cc ImageData::ImageData(const ImageData& other)
other              30 ppapi/cpp/image_data.cc     : Resource(other),
other              31 ppapi/cpp/image_data.cc       desc_(other.desc_),
other              32 ppapi/cpp/image_data.cc       data_(other.data_) {
other              58 ppapi/cpp/image_data.cc ImageData& ImageData::operator=(const ImageData& other) {
other              59 ppapi/cpp/image_data.cc   Resource::operator=(other);
other              60 ppapi/cpp/image_data.cc   desc_ = other.desc_;
other              61 ppapi/cpp/image_data.cc   data_ = other.data_;
other              37 ppapi/cpp/image_data.h   ImageData(const ImageData& other);
other              73 ppapi/cpp/image_data.h   ImageData& operator=(const ImageData& other);
other              28 ppapi/cpp/media_stream_audio_track.cc     const MediaStreamAudioTrack& other) : Resource(other) {
other              36 ppapi/cpp/media_stream_audio_track.h   MediaStreamAudioTrack(const MediaStreamAudioTrack& other);
other              28 ppapi/cpp/media_stream_video_track.cc     const MediaStreamVideoTrack& other) : Resource(other) {
other              36 ppapi/cpp/media_stream_video_track.h   MediaStreamVideoTrack(const MediaStreamVideoTrack& other);
other              33 ppapi/cpp/message_loop.cc MessageLoop::MessageLoop(const MessageLoop& other)
other              34 ppapi/cpp/message_loop.cc     : Resource(other) {
other             146 ppapi/cpp/message_loop.h   MessageLoop(const MessageLoop& other);
other              46 ppapi/cpp/net_address.cc NetAddress::NetAddress(const NetAddress& other) : Resource(other) {
other              52 ppapi/cpp/net_address.cc NetAddress& NetAddress::operator=(const NetAddress& other) {
other              53 ppapi/cpp/net_address.cc   Resource::operator=(other);
other              51 ppapi/cpp/net_address.h   NetAddress(const NetAddress& other);
other              61 ppapi/cpp/net_address.h   NetAddress& operator=(const NetAddress& other);
other              99 ppapi/cpp/point.h   Point operator+(const Point& other) const {
other             100 ppapi/cpp/point.h     return Point(x() + other.x(), y() + other.y());
other             109 ppapi/cpp/point.h   Point operator-(const Point& other) const {
other             110 ppapi/cpp/point.h     return Point(x() - other.x(), y() - other.y());
other             119 ppapi/cpp/point.h   Point& operator+=(const Point& other) {
other             120 ppapi/cpp/point.h     point_.x += other.x();
other             121 ppapi/cpp/point.h     point_.y += other.y();
other             131 ppapi/cpp/point.h   Point& operator-=(const Point& other) {
other             132 ppapi/cpp/point.h     point_.x -= other.x();
other             133 ppapi/cpp/point.h     point_.y -= other.y();
other             140 ppapi/cpp/point.h   void swap(Point& other) {
other             143 ppapi/cpp/point.h     point_.x = other.point_.x;
other             144 ppapi/cpp/point.h     point_.y = other.point_.y;
other             145 ppapi/cpp/point.h     other.point_.x = x;
other             146 ppapi/cpp/point.h     other.point_.y = y;
other             238 ppapi/cpp/point.h   FloatPoint operator+(const FloatPoint& other) const {
other             239 ppapi/cpp/point.h     return FloatPoint(x() + other.x(), y() + other.y());
other             248 ppapi/cpp/point.h   FloatPoint operator-(const FloatPoint& other) const {
other             249 ppapi/cpp/point.h     return FloatPoint(x() - other.x(), y() - other.y());
other             258 ppapi/cpp/point.h   FloatPoint& operator+=(const FloatPoint& other) {
other             259 ppapi/cpp/point.h     float_point_.x += other.x();
other             260 ppapi/cpp/point.h     float_point_.y += other.y();
other             270 ppapi/cpp/point.h   FloatPoint& operator-=(const FloatPoint& other) {
other             271 ppapi/cpp/point.h     float_point_.x -= other.x();
other             272 ppapi/cpp/point.h     float_point_.y -= other.y();
other             279 ppapi/cpp/point.h   void swap(FloatPoint& other) {
other             282 ppapi/cpp/point.h     float_point_.x = other.float_point_.x;
other             283 ppapi/cpp/point.h     float_point_.y = other.float_point_.y;
other             284 ppapi/cpp/point.h     other.float_point_.x = x;
other             285 ppapi/cpp/point.h     other.float_point_.y = y;
other              34 ppapi/cpp/private/var_private.h   VarPrivate(const Var& other) : Var(other) {}
other              38 ppapi/cpp/private/video_destination_private.cc     const VideoDestination_Private& other)
other              39 ppapi/cpp/private/video_destination_private.cc     : Resource(other) {
other              41 ppapi/cpp/private/video_destination_private.h   VideoDestination_Private(const VideoDestination_Private& other);
other              29 ppapi/cpp/private/video_frame_private.cc VideoFrame_Private::VideoFrame_Private(const VideoFrame_Private& other)
other              31 ppapi/cpp/private/video_frame_private.cc   set_image_data(other.image_data());
other              32 ppapi/cpp/private/video_frame_private.cc   set_timestamp(other.timestamp());
other              39 ppapi/cpp/private/video_frame_private.cc     const VideoFrame_Private& other) {
other              40 ppapi/cpp/private/video_frame_private.cc   if (this == &other)
other              43 ppapi/cpp/private/video_frame_private.cc   set_image_data(other.image_data());
other              44 ppapi/cpp/private/video_frame_private.cc   set_timestamp(other.timestamp());
other              41 ppapi/cpp/private/video_frame_private.h   VideoFrame_Private(const VideoFrame_Private& other);
other              48 ppapi/cpp/private/video_frame_private.h   VideoFrame_Private& operator=(const VideoFrame_Private& other);
other              35 ppapi/cpp/private/video_source_private.cc VideoSource_Private::VideoSource_Private(const VideoSource_Private& other)
other              36 ppapi/cpp/private/video_source_private.cc     : Resource(other) {
other              41 ppapi/cpp/private/video_source_private.h   VideoSource_Private(const VideoSource_Private& other);
other              17 ppapi/cpp/resource.cc Resource::Resource(const Resource& other) : pp_resource_(other.pp_resource_) {
other              27 ppapi/cpp/resource.cc Resource& Resource::operator=(const Resource& other) {
other              28 ppapi/cpp/resource.cc   if (!other.is_null())
other              29 ppapi/cpp/resource.cc     Module::Get()->core()->AddRefResource(other.pp_resource_);
other              32 ppapi/cpp/resource.cc   pp_resource_ = other.pp_resource_;
other              28 ppapi/cpp/resource.h   Resource(const Resource& other);
other              39 ppapi/cpp/resource.h   Resource& operator=(const Resource& other);
other              43 ppapi/cpp/tcp_socket.cc TCPSocket::TCPSocket(const TCPSocket& other) : Resource(other) {
other              49 ppapi/cpp/tcp_socket.cc TCPSocket& TCPSocket::operator=(const TCPSocket& other) {
other              50 ppapi/cpp/tcp_socket.cc   Resource::operator=(other);
other              48 ppapi/cpp/tcp_socket.h   TCPSocket(const TCPSocket& other);
other              58 ppapi/cpp/tcp_socket.h   TCPSocket& operator=(const TCPSocket& other);
other              63 ppapi/cpp/trusted/browser_font_trusted.cc     const BrowserFontDescription& other) {
other              64 ppapi/cpp/trusted/browser_font_trusted.cc   set_face(other.face());
other              65 ppapi/cpp/trusted/browser_font_trusted.cc   set_family(other.family());
other              66 ppapi/cpp/trusted/browser_font_trusted.cc   set_size(other.size());
other              67 ppapi/cpp/trusted/browser_font_trusted.cc   set_weight(other.weight());
other              68 ppapi/cpp/trusted/browser_font_trusted.cc   set_italic(other.italic());
other              69 ppapi/cpp/trusted/browser_font_trusted.cc   set_small_caps(other.small_caps());
other              70 ppapi/cpp/trusted/browser_font_trusted.cc   set_letter_spacing(other.letter_spacing());
other              71 ppapi/cpp/trusted/browser_font_trusted.cc   set_word_spacing(other.word_spacing());
other              78 ppapi/cpp/trusted/browser_font_trusted.cc     const BrowserFontDescription& other) {
other              79 ppapi/cpp/trusted/browser_font_trusted.cc   pp_font_description_ = other.pp_font_description_;
other              84 ppapi/cpp/trusted/browser_font_trusted.cc   set_face(other.face());
other             106 ppapi/cpp/trusted/browser_font_trusted.cc BrowserFontTextRun::BrowserFontTextRun(const BrowserFontTextRun& other)
other             107 ppapi/cpp/trusted/browser_font_trusted.cc     : text_(other.text_) {
other             109 ppapi/cpp/trusted/browser_font_trusted.cc   pp_text_run_.rtl = other.pp_text_run_.rtl;
other             110 ppapi/cpp/trusted/browser_font_trusted.cc   pp_text_run_.override_direction = other.pp_text_run_.override_direction;
other             117 ppapi/cpp/trusted/browser_font_trusted.cc     const BrowserFontTextRun& other) {
other             118 ppapi/cpp/trusted/browser_font_trusted.cc   pp_text_run_ = other.pp_text_run_;
other             119 ppapi/cpp/trusted/browser_font_trusted.cc   text_ = other.text_;
other             147 ppapi/cpp/trusted/browser_font_trusted.cc BrowserFont_Trusted::BrowserFont_Trusted(const BrowserFont_Trusted& other)
other             148 ppapi/cpp/trusted/browser_font_trusted.cc     : Resource(other) {
other             152 ppapi/cpp/trusted/browser_font_trusted.cc     const BrowserFont_Trusted& other) {
other             153 ppapi/cpp/trusted/browser_font_trusted.cc   Resource::operator=(other);
other              26 ppapi/cpp/trusted/browser_font_trusted.h   BrowserFontDescription(const BrowserFontDescription& other);
other              29 ppapi/cpp/trusted/browser_font_trusted.h   BrowserFontDescription& operator=(const BrowserFontDescription& other);
other              89 ppapi/cpp/trusted/browser_font_trusted.h   BrowserFontTextRun(const BrowserFontTextRun& other);
other              92 ppapi/cpp/trusted/browser_font_trusted.h   BrowserFontTextRun& operator=(const BrowserFontTextRun& other);
other             114 ppapi/cpp/trusted/browser_font_trusted.h   BrowserFont_Trusted(const BrowserFont_Trusted& other);
other             116 ppapi/cpp/trusted/browser_font_trusted.h   BrowserFont_Trusted& operator=(const BrowserFont_Trusted& other);
other              41 ppapi/cpp/trusted/file_chooser_trusted.cc FileChooser_Trusted::FileChooser_Trusted(const FileChooser_Trusted& other)
other              42 ppapi/cpp/trusted/file_chooser_trusted.cc     : FileChooser_Dev(other),
other              43 ppapi/cpp/trusted/file_chooser_trusted.cc       save_as_(other.save_as_),
other              44 ppapi/cpp/trusted/file_chooser_trusted.cc       suggested_file_name_(other.suggested_file_name_) {
other              48 ppapi/cpp/trusted/file_chooser_trusted.cc     const FileChooser_Trusted& other) {
other              49 ppapi/cpp/trusted/file_chooser_trusted.cc   FileChooser_Dev::operator=(other);
other              50 ppapi/cpp/trusted/file_chooser_trusted.cc   save_as_ = other.save_as_;
other              51 ppapi/cpp/trusted/file_chooser_trusted.cc   suggested_file_name_ = other.suggested_file_name_;
other              25 ppapi/cpp/trusted/file_chooser_trusted.h   FileChooser_Trusted(const FileChooser_Trusted& other);
other              27 ppapi/cpp/trusted/file_chooser_trusted.h   FileChooser_Trusted& operator=(const FileChooser_Trusted& other);
other              37 ppapi/cpp/udp_socket.cc UDPSocket::UDPSocket(const UDPSocket& other) : Resource(other) {
other              43 ppapi/cpp/udp_socket.cc UDPSocket& UDPSocket::operator=(const UDPSocket& other) {
other              44 ppapi/cpp/udp_socket.cc   Resource::operator=(other);
other              49 ppapi/cpp/udp_socket.h   UDPSocket(const UDPSocket& other);
other              59 ppapi/cpp/udp_socket.h   UDPSocket& operator=(const UDPSocket& other);
other              37 ppapi/cpp/url_loader.cc URLLoader::URLLoader(const URLLoader& other) : Resource(other) {
other              46 ppapi/cpp/url_loader.h   URLLoader(const URLLoader& other);
other              29 ppapi/cpp/url_request_info.cc URLRequestInfo::URLRequestInfo(const URLRequestInfo& other)
other              30 ppapi/cpp/url_request_info.cc     : Resource(other) {
other              37 ppapi/cpp/url_request_info.h   URLRequestInfo(const URLRequestInfo& other);
other              21 ppapi/cpp/url_response_info.cc URLResponseInfo::URLResponseInfo(const URLResponseInfo& other)
other              22 ppapi/cpp/url_response_info.cc     : Resource(other) {
other              33 ppapi/cpp/url_response_info.h   URLResponseInfo(const URLResponseInfo& other);
other             162 ppapi/cpp/var.cc Var::Var(const Var& other) {
other             163 ppapi/cpp/var.cc   var_ = other.var_;
other             176 ppapi/cpp/var.cc Var& Var::operator=(const Var& other) {
other             180 ppapi/cpp/var.cc   if (this == &other)
other             187 ppapi/cpp/var.cc   if (NeedsRefcounting(other.var_)) {
other             188 ppapi/cpp/var.cc     AddRefHelper(other.var_);
other             193 ppapi/cpp/var.cc   var_ = other.var_;
other             197 ppapi/cpp/var.cc bool Var::operator==(const Var& other) const {
other             198 ppapi/cpp/var.cc   if (var_.type != other.var_.type)
other             205 ppapi/cpp/var.cc       return AsBool() == other.AsBool();
other             207 ppapi/cpp/var.cc       return AsInt() == other.AsInt();
other             209 ppapi/cpp/var.cc       return AsDouble() == other.AsDouble();
other             211 ppapi/cpp/var.cc       if (var_.value.as_id == other.var_.value.as_id)
other             213 ppapi/cpp/var.cc       return AsString() == other.AsString();
other             220 ppapi/cpp/var.cc       return var_.value.as_id == other.var_.value.as_id;
other              84 ppapi/cpp/var.h   Var(const Var& other);
other              94 ppapi/cpp/var.h   virtual Var& operator=(const Var& other);
other             103 ppapi/cpp/var.h   bool operator==(const Var& other) const;
other              46 ppapi/cpp/var_array.cc VarArray::VarArray(const VarArray& other) : Var(other) {
other              52 ppapi/cpp/var_array.cc VarArray& VarArray::operator=(const VarArray& other) {
other              53 ppapi/cpp/var_array.cc   Var::operator=(other);
other              57 ppapi/cpp/var_array.cc Var& VarArray::operator=(const Var& other) {
other              58 ppapi/cpp/var_array.cc   if (other.is_array()) {
other              59 ppapi/cpp/var_array.cc     Var::operator=(other);
other              36 ppapi/cpp/var_array.h   VarArray(const VarArray& other);
other              41 ppapi/cpp/var_array.h   VarArray& operator=(const VarArray& other);
other              49 ppapi/cpp/var_array.h   virtual Var& operator=(const Var& other);
other              38 ppapi/cpp/var_array_buffer.cc pp::VarArrayBuffer& VarArrayBuffer::operator=(const VarArrayBuffer& other) {
other              39 ppapi/cpp/var_array_buffer.cc   Var::operator=(other);
other              43 ppapi/cpp/var_array_buffer.cc pp::Var& VarArrayBuffer::operator=(const Var& other) {
other              44 ppapi/cpp/var_array_buffer.cc   if (other.is_array_buffer()) {
other              45 ppapi/cpp/var_array_buffer.cc     return Var::operator=(other);
other              52 ppapi/cpp/var_array_buffer.h   VarArrayBuffer& operator=(const VarArrayBuffer& other);
other              62 ppapi/cpp/var_array_buffer.h   virtual Var& operator=(const Var& other);
other              46 ppapi/cpp/var_dictionary.cc VarDictionary::VarDictionary(const VarDictionary& other)
other              47 ppapi/cpp/var_dictionary.cc     : Var(other) {
other              54 ppapi/cpp/var_dictionary.cc     const VarDictionary& other) {
other              55 ppapi/cpp/var_dictionary.cc   Var::operator=(other);
other              59 ppapi/cpp/var_dictionary.cc Var& VarDictionary::operator=(const Var& other) {
other              60 ppapi/cpp/var_dictionary.cc   if (other.is_dictionary()) {
other              61 ppapi/cpp/var_dictionary.cc     Var::operator=(other);
other              36 ppapi/cpp/var_dictionary.h   VarDictionary(const VarDictionary& other);
other              41 ppapi/cpp/var_dictionary.h   VarDictionary& operator=(const VarDictionary& other);
other              51 ppapi/cpp/var_dictionary.h   virtual Var& operator=(const Var& other);
other              23 ppapi/cpp/video_frame.cc VideoFrame::VideoFrame(const VideoFrame& other) : Resource(other) {
other              23 ppapi/cpp/video_frame.h   VideoFrame(const VideoFrame& other);
other              28 ppapi/examples/gles2_spinning_cube/spinning_cube.h   SpinningCube(const SpinningCube& other);
other              29 ppapi/examples/gles2_spinning_cube/spinning_cube.h   SpinningCube& operator=(const SpinningCube& other);
other              45 ppapi/proxy/plugin_var_tracker.cc bool PluginVarTracker::HostVar::operator<(const HostVar& other) const {
other              46 ppapi/proxy/plugin_var_tracker.cc   if (dispatcher < other.dispatcher)
other              48 ppapi/proxy/plugin_var_tracker.cc   if (other.dispatcher < dispatcher)
other              50 ppapi/proxy/plugin_var_tracker.cc   return host_object_id < other.host_object_id;
other             117 ppapi/proxy/plugin_var_tracker.h     bool operator<(const HostVar& other) const;
other              61 ppapi/shared_impl/host_resource.h   bool operator<(const HostResource& other) const {
other              62 ppapi/shared_impl/host_resource.h     if (instance_ != other.instance_)
other              63 ppapi/shared_impl/host_resource.h       return instance_ < other.instance_;
other              64 ppapi/shared_impl/host_resource.h     return host_resource_ < other.host_resource_;
other              23 ppapi/shared_impl/ppb_device_ref_shared.h   bool operator==(const DeviceRefData& other) const {
other              24 ppapi/shared_impl/ppb_device_ref_shared.h     return type == other.type && name == other.name && id == other.id;
other              27 ppapi/shared_impl/ppb_view_shared.cc bool ViewData::Equals(const ViewData& other) const {
other              28 ppapi/shared_impl/ppb_view_shared.cc   return rect.point.x == other.rect.point.x &&
other              29 ppapi/shared_impl/ppb_view_shared.cc          rect.point.y == other.rect.point.y &&
other              30 ppapi/shared_impl/ppb_view_shared.cc          rect.size.width == other.rect.size.width &&
other              31 ppapi/shared_impl/ppb_view_shared.cc          rect.size.height == other.rect.size.height &&
other              32 ppapi/shared_impl/ppb_view_shared.cc          is_fullscreen == other.is_fullscreen &&
other              33 ppapi/shared_impl/ppb_view_shared.cc          is_page_visible == other.is_page_visible &&
other              34 ppapi/shared_impl/ppb_view_shared.cc          clip_rect.point.x == other.clip_rect.point.x &&
other              35 ppapi/shared_impl/ppb_view_shared.cc          clip_rect.point.y == other.clip_rect.point.y &&
other              36 ppapi/shared_impl/ppb_view_shared.cc          clip_rect.size.width == other.clip_rect.size.width &&
other              37 ppapi/shared_impl/ppb_view_shared.cc          clip_rect.size.height == other.clip_rect.size.height &&
other              38 ppapi/shared_impl/ppb_view_shared.cc          device_scale == other.device_scale && css_scale == other.css_scale;
other              22 ppapi/shared_impl/ppb_view_shared.h   bool Equals(const ViewData& other) const;
other              27 ppapi/shared_impl/scoped_pp_resource.cc ScopedPPResource::ScopedPPResource(const ScopedPPResource& other)
other              28 ppapi/shared_impl/scoped_pp_resource.cc     : id_(other.id_) {
other              33 ppapi/shared_impl/scoped_pp_resource.h   ScopedPPResource(const ScopedPPResource& other);
other              30 ppapi/shared_impl/scoped_pp_var.cc ScopedPPVar::ScopedPPVar(const ScopedPPVar& other) : var_(other.var_) {
other              26 ppapi/shared_impl/scoped_pp_var.h   ScopedPPVar(const ScopedPPVar& other);
other              31 ppapi/shared_impl/scoped_pp_var.h   ScopedPPVar& operator=(const ScopedPPVar& other) {
other              32 ppapi/shared_impl/scoped_pp_var.h     return operator=(other.var_);
other              25 printing/page_number.cc void PageNumber::operator=(const PageNumber& other) {
other              26 printing/page_number.cc   ranges_ = other.ranges_;
other              27 printing/page_number.cc   page_number_ = other.page_number_;
other              28 printing/page_number.cc   page_range_index_ = other.page_range_index_;
other              29 printing/page_number.cc   document_page_count_ = other.document_page_count_;
other              74 printing/page_number.cc bool PageNumber::operator==(const PageNumber& other) const {
other              75 printing/page_number.cc   return page_number_ == other.page_number_ &&
other              76 printing/page_number.cc          page_range_index_ == other.page_range_index_;
other              78 printing/page_number.cc bool PageNumber::operator!=(const PageNumber& other) const {
other              79 printing/page_number.cc   return page_number_ != other.page_number_ ||
other              80 printing/page_number.cc          page_range_index_ != other.page_range_index_;
other              25 printing/page_number.h   void operator=(const PageNumber& other);
other              46 printing/page_number.h   bool operator==(const PageNumber& other) const;
other              47 printing/page_number.h   bool operator!=(const PageNumber& other) const;
other              88 remoting/base/dispatch_win.h   void Swap(VARIANT* other) {
other              89 remoting/base/dispatch_win.h     VARIANT temp = *other;
other              90 remoting/base/dispatch_win.h     *other = *this;
other              83 remoting/base/typed_buffer.h   void Swap(TypedBuffer& other) {
other              84 remoting/base/typed_buffer.h     std::swap(buffer_, other.buffer_);
other              85 remoting/base/typed_buffer.h     std::swap(length_, other.length_);
other              76 remoting/host/resizing_host_observer.cc   bool IsBetterThan(const CandidateResolution& other) const {
other              81 remoting/host/resizing_host_observer.cc     if (client_scale_factor() < other.client_scale_factor()) {
other              83 remoting/host/resizing_host_observer.cc     } else if (client_scale_factor() > other.client_scale_factor()) {
other              89 remoting/host/resizing_host_observer.cc     if (area() < other.area()) {
other              91 remoting/host/resizing_host_observer.cc     } else if (area() > other.area()) {
other              96 remoting/host/resizing_host_observer.cc     if (aspect_ratio_goodness() < other.aspect_ratio_goodness()) {
other              98 remoting/host/resizing_host_observer.cc     } else if (aspect_ratio_goodness() > other.aspect_ratio_goodness()) {
other             106 remoting/host/resizing_host_observer.cc         other.resolution().dimensions().width();
other              46 remoting/host/screen_resolution.cc bool ScreenResolution::Equals(const ScreenResolution& other) const {
other              47 remoting/host/screen_resolution.cc   return dimensions_.equals(other.dimensions()) && dpi_.equals(other.dpi());
other              36 remoting/host/screen_resolution.h   bool Equals(const ScreenResolution& other) const;
other              33 remoting/host/win/window_station_and_desktop.cc void WindowStationAndDesktop::Swap(WindowStationAndDesktop& other) {
other              34 remoting/host/win/window_station_and_desktop.cc   std::swap(desktop_, other.desktop_);
other              35 remoting/host/win/window_station_and_desktop.cc   std::swap(window_station_, other.window_station_);
other              32 remoting/host/win/window_station_and_desktop.h   void Swap(WindowStationAndDesktop& other);
other             125 remoting/protocol/authentication_method.cc     const AuthenticationMethod& other) const {
other             126 remoting/protocol/authentication_method.cc   return type_ == other.type_ &&
other             127 remoting/protocol/authentication_method.cc       hash_function_ == other.hash_function_;
other              66 remoting/protocol/authentication_method.h   bool operator ==(const AuthenticationMethod& other) const;
other              67 remoting/protocol/authentication_method.h   bool operator !=(const AuthenticationMethod& other) const {
other              68 remoting/protocol/authentication_method.h     return !(*this == other);
other              85 remoting/protocol/pairing_registry.cc bool PairingRegistry::Pairing::operator==(const Pairing& other) const {
other              86 remoting/protocol/pairing_registry.cc   return created_time_ == other.created_time_ &&
other              87 remoting/protocol/pairing_registry.cc          client_id_ == other.client_id_ &&
other              88 remoting/protocol/pairing_registry.cc          client_name_ == other.client_name_ &&
other              89 remoting/protocol/pairing_registry.cc          shared_secret_ == other.shared_secret_;
other              56 remoting/protocol/pairing_registry.h     bool operator==(const Pairing& other) const;
other             162 sandbox/win/src/crosscall_server.h   bool Matches(IPCParams* other) const {
other             163 sandbox/win/src/crosscall_server.h     return !memcmp(this, other, sizeof(*other));
other             128 sandbox/win/src/policy_low_level.cc PolicyRule::PolicyRule(const PolicyRule& other) {
other             129 sandbox/win/src/policy_low_level.cc   if (this == &other)
other             131 sandbox/win/src/policy_low_level.cc   action_ = other.action_;
other             132 sandbox/win/src/policy_low_level.cc   done_ = other.done_;
other             136 sandbox/win/src/policy_low_level.cc   memcpy(buffer_, other.buffer_, buffer_size);
other             141 sandbox/win/src/policy_low_level.cc       new OpcodeFactory(next_opcode, other.opcode_factory_->memory_size());
other             131 sandbox/win/src/policy_low_level.h   PolicyRule(const PolicyRule& other);
other              67 skia/ext/bitmap_platform_device_cairo.h   BitmapPlatformDevice(const SkBitmap& other, cairo_t* cairo);
other              42 skia/ext/bitmap_platform_device_skia.h   explicit BitmapPlatformDevice(const SkBitmap& other);
other              49 skia/ext/refptr.h   RefPtr(const RefPtr& other)
other              50 skia/ext/refptr.h       : ptr_(other.get()) {
other              55 skia/ext/refptr.h   RefPtr(const RefPtr<U>& other)
other              56 skia/ext/refptr.h       : ptr_(other.get()) {
other              64 skia/ext/refptr.h   RefPtr& operator=(const RefPtr& other) {
other              65 skia/ext/refptr.h     SkRefCnt_SafeAssign(ptr_, other.get());
other              70 skia/ext/refptr.h   RefPtr& operator=(const RefPtr<U>& other) {
other              71 skia/ext/refptr.h     SkRefCnt_SafeAssign(ptr_, other.get());
other             170 sql/connection.cc bool StatementID::operator<(const StatementID& other) const {
other             171 sql/connection.cc   if (number_ != other.number_)
other             172 sql/connection.cc     return number_ < other.number_;
other             173 sql/connection.cc   return strcmp(str_, other.str_) < 0;
other              71 sql/connection.h   bool operator<(const StatementID& other) const;
other              38 sql/connection_unittest.cc   RefCounter(const RefCounter& other)
other              39 sql/connection_unittest.cc       : counter_(other.counter_) {
other              42 sync/api/attachments/attachment_id.cc bool AttachmentId::operator==(const AttachmentId& other) const {
other              43 sync/api/attachments/attachment_id.cc   return proto_.Get().unique_id() == other.proto_.Get().unique_id();
other              46 sync/api/attachments/attachment_id.cc bool AttachmentId::operator!=(const AttachmentId& other) const {
other              47 sync/api/attachments/attachment_id.cc   return !operator==(other);
other              50 sync/api/attachments/attachment_id.cc bool AttachmentId::operator<(const AttachmentId& other) const {
other              51 sync/api/attachments/attachment_id.cc   return proto_.Get().unique_id() < other.proto_.Get().unique_id();
other              30 sync/api/attachments/attachment_id.h   bool operator==(const AttachmentId& other) const;
other              32 sync/api/attachments/attachment_id.h   bool operator!=(const AttachmentId& other) const;
other              35 sync/api/attachments/attachment_id.h   bool operator<(const AttachmentId& other) const;
other              45 sync/api/sync_error.cc SyncError::SyncError(const SyncError& other) {
other              46 sync/api/sync_error.cc   Copy(other);
other              52 sync/api/sync_error.cc SyncError& SyncError::operator=(const SyncError& other) {
other              53 sync/api/sync_error.cc   if (this == &other) {
other              56 sync/api/sync_error.cc   Copy(other);
other              60 sync/api/sync_error.cc void SyncError::Copy(const SyncError& other) {
other              61 sync/api/sync_error.cc   if (other.IsSet()) {
other              62 sync/api/sync_error.cc     Init(other.location(),
other              63 sync/api/sync_error.cc          other.message(),
other              64 sync/api/sync_error.cc          other.model_type(),
other              65 sync/api/sync_error.cc          other.error_type());
other              53 sync/api/sync_error.h   SyncError(const SyncError& other);
other              54 sync/api/sync_error.h   SyncError& operator=(const SyncError& other);
other              83 sync/api/sync_error.h   void Copy(const SyncError& other);
other              51 sync/api/sync_merge_result.h   void CopyFrom(const SyncMergeResult& other);
other              31 sync/internal_api/public/base/ack_handle.cc bool AckHandle::Equals(const AckHandle& other) const {
other              32 sync/internal_api/public/base/ack_handle.cc   return state_ == other.state_ && timestamp_ == other.timestamp_;
other              28 sync/internal_api/public/base/ack_handle.h   bool Equals(const AckHandle& other) const;
other             164 sync/internal_api/public/base/enum_set.h   void PutAll(EnumSet other) {
other             165 sync/internal_api/public/base/enum_set.h     enums_ |= other.enums_;
other             171 sync/internal_api/public/base/enum_set.h   void RetainAll(EnumSet other) {
other             172 sync/internal_api/public/base/enum_set.h     enums_ &= other.enums_;
other             183 sync/internal_api/public/base/enum_set.h   void RemoveAll(EnumSet other) {
other             184 sync/internal_api/public/base/enum_set.h     enums_ &= ~other.enums_;
other             199 sync/internal_api/public/base/enum_set.h   bool HasAll(EnumSet other) const {
other             200 sync/internal_api/public/base/enum_set.h     return (enums_ & other.enums_) == other.enums_;
other             205 sync/internal_api/public/base/enum_set.h   bool Equals(const EnumSet& other) const {
other             206 sync/internal_api/public/base/enum_set.h     return enums_ == other.enums_;
other             142 sync/internal_api/public/base/invalidation.cc bool Invalidation::Equals(const Invalidation& other) const {
other             143 sync/internal_api/public/base/invalidation.cc   return id_ == other.id_
other             144 sync/internal_api/public/base/invalidation.cc       && is_unknown_version_ == other.is_unknown_version_
other             145 sync/internal_api/public/base/invalidation.cc       && version_ == other.version_
other             146 sync/internal_api/public/base/invalidation.cc       && payload_ == other.payload_;
other              41 sync/internal_api/public/base/invalidation.h   bool Equals(const Invalidation& other) const;
other              95 sync/internal_api/public/base/ordinal.h   bool EqualsOrBothInvalid(const Ordinal& other) const;
other             107 sync/internal_api/public/base/ordinal.h   bool LessThan(const Ordinal& other) const;
other             110 sync/internal_api/public/base/ordinal.h   bool GreaterThan(const Ordinal& other) const;
other             114 sync/internal_api/public/base/ordinal.h   bool Equals(const Ordinal& other) const;
other             119 sync/internal_api/public/base/ordinal.h   Ordinal CreateBetween(const Ordinal& other) const;
other             251 sync/internal_api/public/base/ordinal.h bool Ordinal<Traits>::EqualsOrBothInvalid(const Ordinal& other) const {
other             252 sync/internal_api/public/base/ordinal.h   if (!IsValid() && !other.IsValid())
other             255 sync/internal_api/public/base/ordinal.h   if (!IsValid() || !other.IsValid())
other             258 sync/internal_api/public/base/ordinal.h   return Equals(other);
other             272 sync/internal_api/public/base/ordinal.h bool Ordinal<Traits>::LessThan(const Ordinal& other) const {
other             274 sync/internal_api/public/base/ordinal.h   CHECK(other.IsValid());
other             275 sync/internal_api/public/base/ordinal.h   return bytes_ < other.bytes_;
other             279 sync/internal_api/public/base/ordinal.h bool Ordinal<Traits>::GreaterThan(const Ordinal& other) const {
other             281 sync/internal_api/public/base/ordinal.h   CHECK(other.IsValid());
other             282 sync/internal_api/public/base/ordinal.h   return bytes_ > other.bytes_;
other             286 sync/internal_api/public/base/ordinal.h bool Ordinal<Traits>::Equals(const Ordinal& other) const {
other             288 sync/internal_api/public/base/ordinal.h   CHECK(other.IsValid());
other             289 sync/internal_api/public/base/ordinal.h   return bytes_ == other.bytes_;
other             293 sync/internal_api/public/base/ordinal.h Ordinal<Traits> Ordinal<Traits>::CreateBetween(const Ordinal& other) const {
other             295 sync/internal_api/public/base/ordinal.h   CHECK(other.IsValid());
other             296 sync/internal_api/public/base/ordinal.h   CHECK(!Equals(other));
other             298 sync/internal_api/public/base/ordinal.h   if (LessThan(other)) {
other             299 sync/internal_api/public/base/ordinal.h     return CreateOrdinalBetween(*this, other);
other             301 sync/internal_api/public/base/ordinal.h     return CreateOrdinalBetween(other, *this);
other             137 sync/internal_api/public/base/unique_position.cc bool UniquePosition::LessThan(const UniquePosition& other) const {
other             139 sync/internal_api/public/base/unique_position.cc   DCHECK(other.IsValid());
other             141 sync/internal_api/public/base/unique_position.cc   return compressed_ < other.compressed_;
other             144 sync/internal_api/public/base/unique_position.cc bool UniquePosition::Equals(const UniquePosition& other) const {
other             145 sync/internal_api/public/base/unique_position.cc   if (!this->IsValid() && !other.IsValid())
other             148 sync/internal_api/public/base/unique_position.cc   return compressed_ == other.compressed_;
other              77 sync/internal_api/public/base/unique_position.h   bool LessThan(const UniquePosition& other) const;
other              78 sync/internal_api/public/base/unique_position.h   bool Equals(const UniquePosition& other) const;
other              58 sync/internal_api/public/util/immutable_unittest.cc   TokenBase(const TokenBase& other) : core_(other.core_) {
other              62 sync/internal_api/public/util/immutable_unittest.cc   TokenBase& operator=(const TokenBase& other) {
other              63 sync/internal_api/public/util/immutable_unittest.cc     core_ = other.core_;
other              77 sync/internal_api/public/util/immutable_unittest.cc   bool operator<(const TokenBase& other) const {
other              78 sync/internal_api/public/util/immutable_unittest.cc     return std::string(GetToken()) < std::string(other.GetToken());
other              82 sync/internal_api/public/util/immutable_unittest.cc   void swap(TokenBase& other) {
other              84 sync/internal_api/public/util/immutable_unittest.cc     swap(other.core_, core_);
other              88 sync/internal_api/public/util/immutable_unittest.cc   void Swap(TokenBase* other) {
other              90 sync/internal_api/public/util/immutable_unittest.cc     swap(other->core_, core_);
other             289 sync/internal_api/public/util/weak_handle.h   WeakHandle(const WeakHandle<U>& other)  // NOLINT
other             291 sync/internal_api/public/util/weak_handle.h           other.IsInitialized() ?
other             292 sync/internal_api/public/util/weak_handle.h           new internal::WeakHandleCore<T>(other.Get()) :
other              78 sync/notifier/object_id_invalidation_map.cc     const ObjectIdInvalidationMap& other) const {
other              79 sync/notifier/object_id_invalidation_map.cc   return map_ == other.map_;
other              36 sync/notifier/object_id_invalidation_map.h    bool operator==(const ObjectIdInvalidationMap& other) const;
other              96 sync/notifier/p2p_invalidator.cc bool P2PNotificationData::Equals(const P2PNotificationData& other) const {
other              98 sync/notifier/p2p_invalidator.cc       (sender_id_ == other.sender_id_) &&
other              99 sync/notifier/p2p_invalidator.cc       (target_ == other.target_) &&
other             100 sync/notifier/p2p_invalidator.cc       (invalidation_map_ == other.invalidation_map_);
other              72 sync/notifier/p2p_invalidator.h   bool Equals(const P2PNotificationData& other) const;
other              21 sync/notifier/single_object_invalidation_set.cc     const SingleObjectInvalidationSet& other) {
other              22 sync/notifier/single_object_invalidation_set.cc   invalidations_.insert(other.begin(), other.end());
other              57 sync/notifier/single_object_invalidation_set.cc     const SingleObjectInvalidationSet& other) const {
other              60 sync/notifier/single_object_invalidation_set.cc                     other.invalidations_.begin(),
other              36 sync/notifier/single_object_invalidation_set.h   void InsertAll(const SingleObjectInvalidationSet& other);
other              47 sync/notifier/single_object_invalidation_set.h   bool operator==(const SingleObjectInvalidationSet& other) const;
other            1442 third_party/expat/files/lib/xmltok_impl.c       if (state == other) { \
other            1467 third_party/expat/files/lib/xmltok_impl.c         state = other;
other            1481 third_party/expat/files/lib/xmltok_impl.c         state = other;
other            1493 third_party/expat/files/lib/xmltok_impl.c         state = other;
other            1507 third_party/expat/files/lib/xmltok_impl.c         state = other;
other              79 third_party/harfbuzz-ng/src/hb-object-private.hh     inline bool operator == (hb_user_data_item_t &other) const { return key == other.key; }
other             213 third_party/harfbuzz-ng/src/hb-set-private.hh   inline bool is_equal (const hb_set_t *other) const
other             216 third_party/harfbuzz-ng/src/hb-set-private.hh       if (elts[i] != other->elts[i])
other             220 third_party/harfbuzz-ng/src/hb-set-private.hh   inline void set (const hb_set_t *other)
other             224 third_party/harfbuzz-ng/src/hb-set-private.hh       elts[i] = other->elts[i];
other             226 third_party/harfbuzz-ng/src/hb-set-private.hh   inline void union_ (const hb_set_t *other)
other             230 third_party/harfbuzz-ng/src/hb-set-private.hh       elts[i] |= other->elts[i];
other             232 third_party/harfbuzz-ng/src/hb-set-private.hh   inline void intersect (const hb_set_t *other)
other             236 third_party/harfbuzz-ng/src/hb-set-private.hh       elts[i] &= other->elts[i];
other             238 third_party/harfbuzz-ng/src/hb-set-private.hh   inline void subtract (const hb_set_t *other)
other             242 third_party/harfbuzz-ng/src/hb-set-private.hh       elts[i] &= ~other->elts[i];
other             244 third_party/harfbuzz-ng/src/hb-set-private.hh   inline void symmetric_difference (const hb_set_t *other)
other             248 third_party/harfbuzz-ng/src/hb-set-private.hh       elts[i] ^= other->elts[i];
other             287 third_party/harfbuzz-ng/src/hb-set.cc 		 const hb_set_t *other)
other             289 third_party/harfbuzz-ng/src/hb-set.cc   return set->is_equal (other);
other             303 third_party/harfbuzz-ng/src/hb-set.cc 	    const hb_set_t *other)
other             305 third_party/harfbuzz-ng/src/hb-set.cc   set->set (other);
other             319 third_party/harfbuzz-ng/src/hb-set.cc 	      const hb_set_t *other)
other             321 third_party/harfbuzz-ng/src/hb-set.cc   set->union_ (other);
other             335 third_party/harfbuzz-ng/src/hb-set.cc 		  const hb_set_t *other)
other             337 third_party/harfbuzz-ng/src/hb-set.cc   set->intersect (other);
other             351 third_party/harfbuzz-ng/src/hb-set.cc 		 const hb_set_t *other)
other             353 third_party/harfbuzz-ng/src/hb-set.cc   set->subtract (other);
other             367 third_party/harfbuzz-ng/src/hb-set.cc 			     const hb_set_t *other)
other             369 third_party/harfbuzz-ng/src/hb-set.cc   set->symmetric_difference (other);
other             104 third_party/harfbuzz-ng/src/hb-set.h 		 const hb_set_t *other);
other             108 third_party/harfbuzz-ng/src/hb-set.h 	    const hb_set_t *other);
other             112 third_party/harfbuzz-ng/src/hb-set.h 	      const hb_set_t *other);
other             116 third_party/harfbuzz-ng/src/hb-set.h 		  const hb_set_t *other);
other             120 third_party/harfbuzz-ng/src/hb-set.h 		 const hb_set_t *other);
other             124 third_party/harfbuzz-ng/src/hb-set.h 			     const hb_set_t *other);
other             177 third_party/jsoncpp/overrides/include/json/value.h          CZString( const CZString &other );
other             179 third_party/jsoncpp/overrides/include/json/value.h          CZString &operator =( const CZString &other );
other             180 third_party/jsoncpp/overrides/include/json/value.h          bool operator<( const CZString &other ) const;
other             181 third_party/jsoncpp/overrides/include/json/value.h          bool operator==( const CZString &other ) const;
other             186 third_party/jsoncpp/overrides/include/json/value.h          void swap( CZString &other );
other             242 third_party/jsoncpp/overrides/include/json/value.h       Value( const Value &other );
other             245 third_party/jsoncpp/overrides/include/json/value.h       Value &operator=( const Value &other );
other             249 third_party/jsoncpp/overrides/include/json/value.h       void swap( Value &other );
other             253 third_party/jsoncpp/overrides/include/json/value.h       bool operator <( const Value &other ) const;
other             254 third_party/jsoncpp/overrides/include/json/value.h       bool operator <=( const Value &other ) const;
other             255 third_party/jsoncpp/overrides/include/json/value.h       bool operator >=( const Value &other ) const;
other             256 third_party/jsoncpp/overrides/include/json/value.h       bool operator >( const Value &other ) const;
other             258 third_party/jsoncpp/overrides/include/json/value.h       bool operator ==( const Value &other ) const;
other             259 third_party/jsoncpp/overrides/include/json/value.h       bool operator !=( const Value &other ) const;
other             261 third_party/jsoncpp/overrides/include/json/value.h       int compare( const Value &other ) const;
other             293 third_party/jsoncpp/overrides/include/json/value.h       bool isConvertibleTo( ValueType other ) const;
other             627 third_party/jsoncpp/overrides/include/json/value.h       virtual ValueInternalMap *newMapCopy( const ValueInternalMap &other ) = 0;
other             696 third_party/jsoncpp/overrides/include/json/value.h       ValueInternalMap( const ValueInternalMap &other );
other             697 third_party/jsoncpp/overrides/include/json/value.h       ValueInternalMap &operator =( const ValueInternalMap &other );
other             700 third_party/jsoncpp/overrides/include/json/value.h       void swap( ValueInternalMap &other );
other             736 third_party/jsoncpp/overrides/include/json/value.h       int compare( const ValueInternalMap &other ) const;
other             741 third_party/jsoncpp/overrides/include/json/value.h       static bool equals( const IteratorState &x, const IteratorState &other );
other             793 third_party/jsoncpp/overrides/include/json/value.h       ValueInternalArray( const ValueInternalArray &other );
other             794 third_party/jsoncpp/overrides/include/json/value.h       ValueInternalArray &operator =( const ValueInternalArray &other );
other             796 third_party/jsoncpp/overrides/include/json/value.h       void swap( ValueInternalArray &other );
other             807 third_party/jsoncpp/overrides/include/json/value.h       int compare( const ValueInternalArray &other ) const;
other             810 third_party/jsoncpp/overrides/include/json/value.h       static bool equals( const IteratorState &x, const IteratorState &other );
other             892 third_party/jsoncpp/overrides/include/json/value.h       virtual ValueInternalArray *newArrayCopy( const ValueInternalArray &other ) = 0;
other             934 third_party/jsoncpp/overrides/include/json/value.h       bool operator ==( const SelfType &other ) const
other             936 third_party/jsoncpp/overrides/include/json/value.h          return isEqual( other );
other             939 third_party/jsoncpp/overrides/include/json/value.h       bool operator !=( const SelfType &other ) const
other             941 third_party/jsoncpp/overrides/include/json/value.h          return !isEqual( other );
other             944 third_party/jsoncpp/overrides/include/json/value.h       difference_type operator -( const SelfType &other ) const
other             946 third_party/jsoncpp/overrides/include/json/value.h          return computeDistance( other );
other             965 third_party/jsoncpp/overrides/include/json/value.h       difference_type computeDistance( const SelfType &other ) const;
other             967 third_party/jsoncpp/overrides/include/json/value.h       bool isEqual( const SelfType &other ) const;
other             969 third_party/jsoncpp/overrides/include/json/value.h       void copy( const SelfType &other );
other            1010 third_party/jsoncpp/overrides/include/json/value.h       SelfType &operator =( const ValueIteratorBase &other );
other            1058 third_party/jsoncpp/overrides/include/json/value.h       ValueIterator( const ValueConstIterator &other );
other            1059 third_party/jsoncpp/overrides/include/json/value.h       ValueIterator( const ValueIterator &other );
other            1071 third_party/jsoncpp/overrides/include/json/value.h       SelfType &operator =( const SelfType &other );
other             199 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::CZString::CZString( const CZString &other )
other             200 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp : cstr_( other.index_ != noDuplication &&  other.cstr_ != 0
other             201 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp                 ?  duplicateStringValue( other.cstr_ )
other             202 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp                 : other.cstr_ )
other             203 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    , index_( other.cstr_ ? (other.index_ == noDuplication ? noDuplication : duplicate)
other             204 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp                          : other.index_ )
other             215 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::CZString::swap( CZString &other )
other             217 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    std::swap( cstr_, other.cstr_ );
other             218 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    std::swap( index_, other.index_ );
other             222 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::CZString::operator =( const CZString &other )
other             224 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    CZString temp( other );
other             230 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::CZString::operator<( const CZString &other ) const 
other             233 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return strcmp( cstr_, other.cstr_ ) < 0;
other             234 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    return index_ < other.index_;
other             238 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::CZString::operator==( const CZString &other ) const 
other             241 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return strcmp( cstr_, other.cstr_ ) == 0;
other             242 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    return index_ == other.index_;
other             459 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::Value( const Value &other )
other             460 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    : type_( other.type_ )
other             474 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       value_ = other.value_;
other             477 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       if ( other.value_.string_ )
other             479 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp          value_.string_ = duplicateStringValue( other.value_.string_ );
other             488 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       value_.map_ = new ObjectValues( *other.value_.map_ );
other             492 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       value_.array_ = arrayAllocator()->newArrayCopy( *other.value_.array_ );
other             495 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       value_.map_ = mapAllocator()->newMapCopy( *other.value_.map_ );
other             501 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    if ( other.comments_ )
other             506 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp          const CommentInfo &otherComment = other.comments_[comment];
other             550 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::operator=( const Value &other )
other             552 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    Value temp( other );
other             558 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::swap( Value &other )
other             561 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    type_ = other.type_;
other             562 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    other.type_ = temp;
other             563 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    std::swap( value_, other.value_ );
other             565 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    allocated_ = other.allocated_;
other             566 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    other.allocated_ = temp2;
other             577 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::compare( const Value &other ) const
other             579 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    if ( *this < other )
other             581 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    if ( *this > other )
other             588 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::operator <( const Value &other ) const
other             590 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    int typeDelta = type_ - other.type_;
other             598 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.int_ < other.value_.int_;
other             600 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.uint_ < other.value_.uint_;
other             602 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.real_ < other.value_.real_;
other             604 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.bool_ < other.value_.bool_;
other             606 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return ( value_.string_ == 0  &&  other.value_.string_ )
other             607 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp              || ( other.value_.string_  
other             609 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp                   && strcmp( value_.string_, other.value_.string_ ) < 0 );
other             614 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp          int delta = int( value_.map_->size() - other.value_.map_->size() );
other             617 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp          return (*value_.map_) < (*other.value_.map_);
other             621 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.array_->compare( *(other.value_.array_) ) < 0;
other             623 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.map_->compare( *(other.value_.map_) ) < 0;
other             632 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::operator <=( const Value &other ) const
other             634 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    return !(other < *this);
other             638 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::operator >=( const Value &other ) const
other             640 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    return !(*this < other);
other             644 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::operator >( const Value &other ) const
other             646 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    return other < *this;
other             650 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::operator ==( const Value &other ) const
other             656 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    int temp = other.type_;
other             664 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.int_ == other.value_.int_;
other             666 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.uint_ == other.value_.uint_;
other             668 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.real_ == other.value_.real_;
other             670 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.bool_ == other.value_.bool_;
other             672 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return ( value_.string_ == other.value_.string_ )
other             673 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp              || ( other.value_.string_  
other             675 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp                   && strcmp( value_.string_, other.value_.string_ ) == 0 );
other             679 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.map_->size() == other.value_.map_->size()
other             680 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp              && (*value_.map_) == (*other.value_.map_);
other             683 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.array_->compare( *(other.value_.array_) ) == 0;
other             685 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.map_->compare( *(other.value_.map_) ) == 0;
other             694 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::operator !=( const Value &other ) const
other             696 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    return !( *this == other );
other             934 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp Value::isConvertibleTo( ValueType other ) const
other             936 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp    switch ( other )
other             128 third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/scoped_ptr.h   template <typename U> DefaultDeleter(const DefaultDeleter<U>& other) {
other             211 third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/scoped_ptr.h   scoped_ptr_impl(scoped_ptr_impl<U, V>* other)
other             212 third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/scoped_ptr.h       : data_(other->release(), other->get_deleter()) {
other             220 third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/scoped_ptr.h   void TakeState(scoped_ptr_impl<U, V>* other) {
other             223 third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/scoped_ptr.h     reset(other->release());
other             224 third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/scoped_ptr.h     get_deleter() = other->get_deleter();
other             291 third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/scoped_ptr.h     Data(T* ptr_in, const D& other) : D(other), ptr(ptr_in) {}
other             353 third_party/libaddressinput/chromium/cpp/include/libaddressinput/util/internal/scoped_ptr.h   scoped_ptr(scoped_ptr<U, V> other) : impl_(&other.impl_) {
other             212 third_party/libaddressinput/chromium/cpp/src/rule.cc bool FormatElement::operator==(const FormatElement& other) const {
other             213 third_party/libaddressinput/chromium/cpp/src/rule.cc   return field == other.field && literal == other.literal;
other              47 third_party/libaddressinput/chromium/cpp/src/rule.h   bool operator==(const FormatElement& other) const;
other            3309 third_party/libxml/src/parser.c xmlParseNameAndCompare(xmlParserCtxtPtr ctxt, xmlChar const *other) {
other            3310 third_party/libxml/src/parser.c     register const xmlChar *cmp = other;
other            3332 third_party/libxml/src/parser.c     if (ret == other) {
other            1531 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1533 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            1538 third_party/libxml/src/triostr.c   assert(other);
other            1540 third_party/libxml/src/triostr.c   length = self->length + other->length;
other            1543 third_party/libxml/src/triostr.c   trio_copy(&self->content[self->length], other->content);
other            1559 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1561 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            1566 third_party/libxml/src/triostr.c   assert(other);
other            1568 third_party/libxml/src/triostr.c   length = self->length + trio_length(other);
other            1571 third_party/libxml/src/triostr.c   trio_copy(&self->content[self->length], other);
other            1616 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1618 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            1621 third_party/libxml/src/triostr.c   assert(other);
other            1623 third_party/libxml/src/triostr.c   return trio_contains(self->content, other->content);
other            1634 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1636 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            1639 third_party/libxml/src/triostr.c   assert(other);
other            1641 third_party/libxml/src/triostr.c   return trio_contains(self->content, other);
other            1652 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1654 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            1657 third_party/libxml/src/triostr.c   assert(other);
other            1660 third_party/libxml/src/triostr.c   return trio_string_append(self, other);
other            1671 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1673 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            1676 third_party/libxml/src/triostr.c   assert(other);
other            1679 third_party/libxml/src/triostr.c   return trio_xstring_append(self, other);
other            1690 third_party/libxml/src/triostr.c TRIO_ARGS1((other),
other            1691 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            1695 third_party/libxml/src/triostr.c   assert(other);
other            1700 third_party/libxml/src/triostr.c       self->content = TrioDuplicateMax(other->content, other->length);
other            1703 third_party/libxml/src/triostr.c 	  self->length = other->length;
other            1721 third_party/libxml/src/triostr.c TRIO_ARGS1((other),
other            1722 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            1726 third_party/libxml/src/triostr.c   assert(other);
other            1731 third_party/libxml/src/triostr.c       self->content = TrioDuplicateMax(other, trio_length(other));
other            1752 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1754 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            1757 third_party/libxml/src/triostr.c   assert(other);
other            1759 third_party/libxml/src/triostr.c   return trio_equal(self->content, other->content);
other            1770 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1772 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            1775 third_party/libxml/src/triostr.c   assert(other);
other            1777 third_party/libxml/src/triostr.c   return trio_equal(self->content, other);
other            1788 third_party/libxml/src/triostr.c TRIO_ARGS3((self, max, other),
other            1791 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            1794 third_party/libxml/src/triostr.c   assert(other);
other            1796 third_party/libxml/src/triostr.c   return trio_equal_max(self->content, max, other->content);
other            1807 third_party/libxml/src/triostr.c TRIO_ARGS3((self, max, other),
other            1810 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            1813 third_party/libxml/src/triostr.c   assert(other);
other            1815 third_party/libxml/src/triostr.c   return trio_equal_max(self->content, max, other);
other            1826 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1828 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            1831 third_party/libxml/src/triostr.c   assert(other);
other            1833 third_party/libxml/src/triostr.c   return trio_equal_case(self->content, other->content);
other            1844 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1846 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            1849 third_party/libxml/src/triostr.c   assert(other);
other            1851 third_party/libxml/src/triostr.c   return trio_equal_case(self->content, other);
other            1862 third_party/libxml/src/triostr.c TRIO_ARGS3((self, max, other),
other            1865 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            1868 third_party/libxml/src/triostr.c   assert(other);
other            1870 third_party/libxml/src/triostr.c   return trio_equal_case_max(self->content, max, other->content);
other            1881 third_party/libxml/src/triostr.c TRIO_ARGS3((self, max, other),
other            1884 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            1887 third_party/libxml/src/triostr.c   assert(other);
other            1889 third_party/libxml/src/triostr.c   return trio_equal_case_max(self->content, max, other);
other            1989 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            1991 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            1994 third_party/libxml/src/triostr.c   assert(other);
other            1996 third_party/libxml/src/triostr.c   return trio_match(self->content, other->content);
other            2007 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            2009 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            2012 third_party/libxml/src/triostr.c   assert(other);
other            2014 third_party/libxml/src/triostr.c   return trio_match(self->content, other);
other            2025 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            2027 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            2030 third_party/libxml/src/triostr.c   assert(other);
other            2032 third_party/libxml/src/triostr.c   return trio_match_case(self->content, other->content);
other            2043 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            2045 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            2048 third_party/libxml/src/triostr.c   assert(other);
other            2050 third_party/libxml/src/triostr.c   return trio_match_case(self->content, other);
other            2061 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            2063 third_party/libxml/src/triostr.c 	   trio_string_t *other)
other            2066 third_party/libxml/src/triostr.c   assert(other);
other            2068 third_party/libxml/src/triostr.c   return trio_substring(self->content, other->content);
other            2079 third_party/libxml/src/triostr.c TRIO_ARGS2((self, other),
other            2081 third_party/libxml/src/triostr.c 	   TRIO_CONST char *other)
other            2084 third_party/libxml/src/triostr.c   assert(other);
other            2086 third_party/libxml/src/triostr.c   return trio_substring(self->content, other);
other             103 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC trio_string_t *trio_xstring_duplicate TRIO_PROTO((const char *other));
other             111 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_append TRIO_PROTO((trio_string_t *self, trio_string_t *other));
other             112 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_contains TRIO_PROTO((trio_string_t *self, trio_string_t *other));
other             113 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_copy TRIO_PROTO((trio_string_t *self, trio_string_t *other));
other             114 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC trio_string_t *trio_string_duplicate TRIO_PROTO((trio_string_t *other));
other             115 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_equal TRIO_PROTO((trio_string_t *self, trio_string_t *other));
other             117 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_equal_case TRIO_PROTO((trio_string_t *self, trio_string_t *other));
other             118 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *other));
other             126 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_match TRIO_PROTO((trio_string_t *self, trio_string_t *other));
other             127 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_string_match_case TRIO_PROTO((trio_string_t *self, trio_string_t *other));
other             128 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC char *trio_string_substring TRIO_PROTO((trio_string_t *self, trio_string_t *other));
other             131 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_append TRIO_PROTO((trio_string_t *self, const char *other));
other             132 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_contains TRIO_PROTO((trio_string_t *self, const char *other));
other             133 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_copy TRIO_PROTO((trio_string_t *self, const char *other));
other             134 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_equal TRIO_PROTO((trio_string_t *self, const char *other));
other             135 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_equal_max TRIO_PROTO((trio_string_t *self, size_t max, const char *other));
other             136 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_equal_case TRIO_PROTO((trio_string_t *self, const char *other));
other             137 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, const char *other));
other             138 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_match TRIO_PROTO((trio_string_t *self, const char *other));
other             139 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC int trio_xstring_match_case TRIO_PROTO((trio_string_t *self, const char *other));
other             140 third_party/libxml/src/triostr.h TRIO_STRING_PUBLIC char *trio_xstring_substring TRIO_PROTO((trio_string_t *self, const char *other));
other             172 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java   public boolean equals(final Object other) {
other             173 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java     if (other == this) {
other             176 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java     if (!(other instanceof Message)) {
other             179 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java     final Message otherMessage = (Message) other;
other             291 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java     public BuilderType mergeFrom(final Message other) {
other             292 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java       if (other.getDescriptorForType() != getDescriptorForType()) {
other             307 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java            other.getAllFields().entrySet()) {
other             329 third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java       mergeUnknownFields(other.getUnknownFields());
other             381 third_party/protobuf/java/src/main/java/com/google/protobuf/ByteString.java   public ByteString concat(ByteString other) {
other             383 third_party/protobuf/java/src/main/java/com/google/protobuf/ByteString.java     int otherSize = other.size();
other             389 third_party/protobuf/java/src/main/java/com/google/protobuf/ByteString.java     return RopeByteString.concatenate(this, other);
other             821 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java     public int compareTo(final FieldDescriptor other) {
other             822 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       if (other.containingType != containingType) {
other             827 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java       return getNumber() - other.getNumber();
other            1896 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java         final DescriptorIntPair other = (DescriptorIntPair)obj;
other            1897 third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java         return descriptor == other.descriptor && number == other.number;
other             305 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java     public Builder mergeFrom(Message other) {
other             306 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java       if (other instanceof DynamicMessage) {
other             308 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java         DynamicMessage otherDynamicMessage = (DynamicMessage) other;
other             318 third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java         return super.mergeFrom(other);
other             200 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistry.java   private ExtensionRegistry(ExtensionRegistry other) {
other             201 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistry.java     super(other);
other             202 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistry.java     this.extensionsByName = Collections.unmodifiableMap(other.extensionsByName);
other             204 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistry.java         Collections.unmodifiableMap(other.extensionsByNumber);
other             262 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistry.java       final DescriptorIntPair other = (DescriptorIntPair)obj;
other             263 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistry.java       return descriptor == other.descriptor && number == other.number;
other             143 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java   ExtensionRegistryLite(ExtensionRegistryLite other) {
other             144 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java     if (other == EMPTY) {
other             148 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java         Collections.unmodifiableMap(other.extensionsByNumber);
other             181 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java       final ObjectIntPair other = (ObjectIntPair)obj;
other             182 third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java       return object == other.object && number == other.number;
other             476 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java   public void mergeFrom(final FieldSet<FieldDescriptorType> other) {
other             477 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java     for (int i = 0; i < other.fields.getNumArrayEntries(); i++) {
other             478 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java       mergeFromField(other.fields.getArrayEntryAt(i));
other             481 third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java              other.fields.getOverflowEntries()) {
other            1155 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java     protected final void mergeExtensionFields(final ExtendableMessage other) {
other            1157 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java       extensions.mergeFrom(other.extensions);
other             463 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java     protected final void mergeExtensionFields(final MessageType other) {
other             465 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java       extensions.mergeFrom(((ExtendableMessage) other).extensions);
other             679 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java     public int compareTo(ExtensionDescriptor other) {
other             680 third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java       return number - other.number;
other             170 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java   public boolean equals(Object other) {
other             171 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java     if (other == this) {
other             174 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java     if (!(other instanceof ByteString)) {
other             178 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java     if (size() != ((ByteString) other).size()) {
other             185 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java     if (other instanceof LiteralByteString) {
other             186 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java       return equalsRange((LiteralByteString) other, 0, size());
other             187 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java     } else if (other instanceof RopeByteString) {
other             188 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java       return other.equals(this);
other             192 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java               + other.getClass());
other             205 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java   boolean equalsRange(LiteralByteString other, int offset, int length) {
other             206 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java     if (length > other.size()) {
other             210 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java     if (offset + length > other.size()) {
other             213 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java               other.size());
other             217 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java     byte[] otherBytes = other.bytes;
other             220 third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java         other.getOffsetIntoBytes() + offset;
other              70 third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java   boolean equals(Object other);
other             126 third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java     Builder mergeFrom(Message other);
other             438 third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java   public boolean equals(Object other) {
other             439 third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java     if (other == this) {
other             442 third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java     if (!(other instanceof ByteString)) {
other             446 third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java     ByteString otherByteString = (ByteString) other;
other             478 third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java   private boolean equalsFragments(ByteString other) {
other             484 third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java     Iterator<LiteralByteString> thatIter = new PieceIterator(other);
other             425 third_party/protobuf/java/src/main/java/com/google/protobuf/SmallSortedMap.java     public int compareTo(Entry other) {
other             426 third_party/protobuf/java/src/main/java/com/google/protobuf/SmallSortedMap.java       return getKey().compareTo(other.getKey());
other             446 third_party/protobuf/java/src/main/java/com/google/protobuf/SmallSortedMap.java       Map.Entry<?, ?> other = (Map.Entry<?, ?>) o;
other             447 third_party/protobuf/java/src/main/java/com/google/protobuf/SmallSortedMap.java       return equals(key, other.getKey()) && equals(value, other.getValue());
other              95 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java   public boolean equals(final Object other) {
other              96 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     if (this == other) {
other              99 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     return (other instanceof UnknownFieldSet) &&
other             100 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java            fields.equals(((UnknownFieldSet) other).fields);
other             376 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     public Builder mergeFrom(final UnknownFieldSet other) {
other             377 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       if (other != getDefaultInstance()) {
other             378 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         for (final Map.Entry<Integer, Field> entry : other.fields.entrySet()) {
other             698 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java     public boolean equals(final Object other) {
other             699 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       if (this == other) {
other             702 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       if (!(other instanceof Field)) {
other             706 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           ((Field) other).getIdentityArray());
other             873 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java       public Builder mergeFrom(final Field other) {
other             874 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         if (!other.varint.isEmpty()) {
other             878 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           result.varint.addAll(other.varint);
other             880 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         if (!other.fixed32.isEmpty()) {
other             884 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           result.fixed32.addAll(other.fixed32);
other             886 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         if (!other.fixed64.isEmpty()) {
other             890 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           result.fixed64.addAll(other.fixed64);
other             892 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         if (!other.lengthDelimited.isEmpty()) {
other             896 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           result.lengthDelimited.addAll(other.lengthDelimited);
other             898 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java         if (!other.group.isEmpty()) {
other             902 third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java           result.group.addAll(other.group);
other             352 third_party/protobuf/java/src/test/java/com/google/protobuf/SmallSortedMapTest.java     Map<Integer, Integer> other = new HashMap<Integer, Integer>();
other             353 third_party/protobuf/java/src/test/java/com/google/protobuf/SmallSortedMapTest.java     other.put(23, 23);
other             355 third_party/protobuf/java/src/test/java/com/google/protobuf/SmallSortedMapTest.java       map.putAll(other);
other             198 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc   void Append(const FieldGroup& other) {
other             199 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc     if (other.fields_.empty()) {
other             206 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc          (other.preferred_location_ * other.fields_.size())) /
other             207 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc         (fields_.size() + other.fields_.size());
other             208 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc     fields_.insert(fields_.end(), other.fields_.begin(), other.fields_.end());
other             215 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc   bool operator<(const FieldGroup& other) const {
other             216 third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc     return preferred_location_ < other.preferred_location_;
other            1650 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc     inline bool operator<(const SpanKey& other) const {
other            1651 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc       if (descriptor_proto < other.descriptor_proto) return true;
other            1652 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc       if (descriptor_proto > other.descriptor_proto) return false;
other            1653 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc       if (field < other.field) return true;
other            1654 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc       if (field > other.field) return false;
other            1655 third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc       return index < other.index;
other             460 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc void CodeGeneratorRequest::Swap(CodeGeneratorRequest* other) {
other             461 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc   if (other != this) {
other             462 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     file_to_generate_.Swap(&other->file_to_generate_);
other             463 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(parameter_, other->parameter_);
other             464 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     proto_file_.Swap(&other->proto_file_);
other             465 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other             466 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other             467 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other             799 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc void CodeGeneratorResponse_File::Swap(CodeGeneratorResponse_File* other) {
other             800 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc   if (other != this) {
other             801 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(name_, other->name_);
other             802 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(insertion_point_, other->insertion_point_);
other             803 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(content_, other->content_);
other             804 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other             805 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other             806 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            1065 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc void CodeGeneratorResponse::Swap(CodeGeneratorResponse* other) {
other            1066 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc   if (other != this) {
other            1067 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(error_, other->error_);
other            1068 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     file_.Swap(&other->file_);
other            1069 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            1070 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            1071 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other              68 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h   void Swap(CodeGeneratorRequest* other);
other             185 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h   void Swap(CodeGeneratorResponse_File* other);
other             302 third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h   void Swap(CodeGeneratorResponse* other);
other             915 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FileDescriptorSet::Swap(FileDescriptorSet* other) {
other             916 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other             917 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     file_.Swap(&other->file_);
other             918 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other             919 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other             920 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            1602 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FileDescriptorProto::Swap(FileDescriptorProto* other) {
other            1603 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            1604 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(name_, other->name_);
other            1605 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(package_, other->package_);
other            1606 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     dependency_.Swap(&other->dependency_);
other            1607 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     public_dependency_.Swap(&other->public_dependency_);
other            1608 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     weak_dependency_.Swap(&other->weak_dependency_);
other            1609 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     message_type_.Swap(&other->message_type_);
other            1610 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     enum_type_.Swap(&other->enum_type_);
other            1611 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     service_.Swap(&other->service_);
other            1612 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     extension_.Swap(&other->extension_);
other            1613 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(options_, other->options_);
other            1614 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(source_code_info_, other->source_code_info_);
other            1615 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            1616 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            1617 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            1859 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void DescriptorProto_ExtensionRange::Swap(DescriptorProto_ExtensionRange* other) {
other            1860 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            1861 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(start_, other->start_);
other            1862 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(end_, other->end_);
other            1863 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            1864 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            1865 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            2339 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void DescriptorProto::Swap(DescriptorProto* other) {
other            2340 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            2341 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(name_, other->name_);
other            2342 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     field_.Swap(&other->field_);
other            2343 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     extension_.Swap(&other->extension_);
other            2344 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     nested_type_.Swap(&other->nested_type_);
other            2345 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     enum_type_.Swap(&other->enum_type_);
other            2346 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     extension_range_.Swap(&other->extension_range_);
other            2347 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(options_, other->options_);
other            2348 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            2349 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            2350 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            2990 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldDescriptorProto::Swap(FieldDescriptorProto* other) {
other            2991 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            2992 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(name_, other->name_);
other            2993 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(number_, other->number_);
other            2994 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(label_, other->label_);
other            2995 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(type_, other->type_);
other            2996 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(type_name_, other->type_name_);
other            2997 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(extendee_, other->extendee_);
other            2998 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(default_value_, other->default_value_);
other            2999 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(options_, other->options_);
other            3000 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            3001 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            3002 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            3311 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void EnumDescriptorProto::Swap(EnumDescriptorProto* other) {
other            3312 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            3313 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(name_, other->name_);
other            3314 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     value_.Swap(&other->value_);
other            3315 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(options_, other->options_);
other            3316 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            3317 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            3318 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            3624 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void EnumValueDescriptorProto::Swap(EnumValueDescriptorProto* other) {
other            3625 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            3626 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(name_, other->name_);
other            3627 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(number_, other->number_);
other            3628 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(options_, other->options_);
other            3629 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            3630 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            3631 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            3940 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void ServiceDescriptorProto::Swap(ServiceDescriptorProto* other) {
other            3941 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            3942 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(name_, other->name_);
other            3943 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     method_.Swap(&other->method_);
other            3944 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(options_, other->options_);
other            3945 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            3946 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            3947 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            4326 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void MethodDescriptorProto::Swap(MethodDescriptorProto* other) {
other            4327 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            4328 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(name_, other->name_);
other            4329 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(input_type_, other->input_type_);
other            4330 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(output_type_, other->output_type_);
other            4331 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(options_, other->options_);
other            4332 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            4333 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            4334 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            5022 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FileOptions::Swap(FileOptions* other) {
other            5023 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            5024 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(java_package_, other->java_package_);
other            5025 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(java_outer_classname_, other->java_outer_classname_);
other            5026 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(java_multiple_files_, other->java_multiple_files_);
other            5027 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(retain_unknown_fields_, other->retain_unknown_fields_);
other            5028 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(java_generate_equals_and_hash_, other->java_generate_equals_and_hash_);
other            5029 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(optimize_for_, other->optimize_for_);
other            5030 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(go_package_, other->go_package_);
other            5031 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(cc_generic_services_, other->cc_generic_services_);
other            5032 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(java_generic_services_, other->java_generic_services_);
other            5033 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(py_generic_services_, other->py_generic_services_);
other            5034 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     uninterpreted_option_.Swap(&other->uninterpreted_option_);
other            5035 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            5036 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            5037 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            5038 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _extensions_.Swap(&other->_extensions_);
other            5336 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void MessageOptions::Swap(MessageOptions* other) {
other            5337 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            5338 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(message_set_wire_format_, other->message_set_wire_format_);
other            5339 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(no_standard_descriptor_accessor_, other->no_standard_descriptor_accessor_);
other            5340 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     uninterpreted_option_.Swap(&other->uninterpreted_option_);
other            5341 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            5342 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            5343 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            5344 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _extensions_.Swap(&other->_extensions_);
other            5840 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void FieldOptions::Swap(FieldOptions* other) {
other            5841 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            5842 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(ctype_, other->ctype_);
other            5843 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(packed_, other->packed_);
other            5844 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(lazy_, other->lazy_);
other            5845 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(deprecated_, other->deprecated_);
other            5846 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(experimental_map_key_, other->experimental_map_key_);
other            5847 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(weak_, other->weak_);
other            5848 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     uninterpreted_option_.Swap(&other->uninterpreted_option_);
other            5849 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            5850 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            5851 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            5852 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _extensions_.Swap(&other->_extensions_);
other            6113 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void EnumOptions::Swap(EnumOptions* other) {
other            6114 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            6115 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(allow_alias_, other->allow_alias_);
other            6116 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     uninterpreted_option_.Swap(&other->uninterpreted_option_);
other            6117 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            6118 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            6119 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            6120 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _extensions_.Swap(&other->_extensions_);
other            6339 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void EnumValueOptions::Swap(EnumValueOptions* other) {
other            6340 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            6341 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     uninterpreted_option_.Swap(&other->uninterpreted_option_);
other            6342 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            6343 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            6344 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            6345 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _extensions_.Swap(&other->_extensions_);
other            6564 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void ServiceOptions::Swap(ServiceOptions* other) {
other            6565 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            6566 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     uninterpreted_option_.Swap(&other->uninterpreted_option_);
other            6567 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            6568 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            6569 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            6570 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _extensions_.Swap(&other->_extensions_);
other            6789 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void MethodOptions::Swap(MethodOptions* other) {
other            6790 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            6791 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     uninterpreted_option_.Swap(&other->uninterpreted_option_);
other            6792 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            6793 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            6794 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            6795 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _extensions_.Swap(&other->_extensions_);
other            7053 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void UninterpretedOption_NamePart::Swap(UninterpretedOption_NamePart* other) {
other            7054 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            7055 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(name_part_, other->name_part_);
other            7056 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(is_extension_, other->is_extension_);
other            7057 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            7058 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            7059 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            7540 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void UninterpretedOption::Swap(UninterpretedOption* other) {
other            7541 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            7542 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     name_.Swap(&other->name_);
other            7543 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(identifier_value_, other->identifier_value_);
other            7544 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(positive_int_value_, other->positive_int_value_);
other            7545 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(negative_int_value_, other->negative_int_value_);
other            7546 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(double_value_, other->double_value_);
other            7547 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(string_value_, other->string_value_);
other            7548 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(aggregate_value_, other->aggregate_value_);
other            7549 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            7550 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            7551 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            7957 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void SourceCodeInfo_Location::Swap(SourceCodeInfo_Location* other) {
other            7958 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            7959 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     path_.Swap(&other->path_);
other            7960 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     span_.Swap(&other->span_);
other            7961 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(leading_comments_, other->leading_comments_);
other            7962 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(trailing_comments_, other->trailing_comments_);
other            7963 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            7964 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            7965 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other            8163 third_party/protobuf/src/google/protobuf/descriptor.pb.cc void SourceCodeInfo::Swap(SourceCodeInfo* other) {
other            8164 third_party/protobuf/src/google/protobuf/descriptor.pb.cc   if (other != this) {
other            8165 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     location_.Swap(&other->location_);
other            8166 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_has_bits_[0], other->_has_bits_[0]);
other            8167 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     _unknown_fields_.Swap(&other->_unknown_fields_);
other            8168 third_party/protobuf/src/google/protobuf/descriptor.pb.cc     std::swap(_cached_size_, other->_cached_size_);
other             179 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(FileDescriptorSet* other);
other             264 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(FileDescriptorProto* other);
other             485 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(DescriptorProto_ExtensionRange* other);
other             577 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(DescriptorProto* other);
other             743 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(FieldDescriptorProto* other);
other             982 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(EnumDescriptorProto* other);
other            1094 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(EnumValueDescriptorProto* other);
other            1203 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(ServiceDescriptorProto* other);
other            1315 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(MethodDescriptorProto* other);
other            1444 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(FileOptions* other);
other            1672 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(MessageOptions* other);
other            1780 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(FieldOptions* other);
other            1958 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(EnumOptions* other);
other            2056 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(EnumValueOptions* other);
other            2144 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(ServiceOptions* other);
other            2232 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(MethodOptions* other);
other            2320 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(UninterpretedOption_NamePart* other);
other            2417 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(UninterpretedOption* other);
other            2579 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(SourceCodeInfo_Location* other);
other            2709 third_party/protobuf/src/google/protobuf/descriptor.pb.h   void Swap(SourceCodeInfo* other);
other             683 third_party/protobuf/src/google/protobuf/extension_set.cc void ExtensionSet::MergeFrom(const ExtensionSet& other) {
other             684 third_party/protobuf/src/google/protobuf/extension_set.cc   for (map<int, Extension>::const_iterator iter = other.extensions_.begin();
other             685 third_party/protobuf/src/google/protobuf/extension_set.cc        iter != other.extensions_.end(); ++iter) {
other             324 third_party/protobuf/src/google/protobuf/extension_set.h   void MergeFrom(const ExtensionSet& other);
other             325 third_party/protobuf/src/google/protobuf/extension_set.h   void Swap(ExtensionSet* other);
other             417 third_party/protobuf/src/google/protobuf/extension_set.h     virtual void MergeFrom(const LazyMessageExtension& other) = 0;
other              71 third_party/protobuf/src/google/protobuf/message.cc void Message::CheckTypeAndMergeFrom(const MessageLite& other) {
other              72 third_party/protobuf/src/google/protobuf/message.cc   MergeFrom(*down_cast<const Message*>(&other));
other             271 third_party/protobuf/src/google/protobuf/message.h   virtual void CheckTypeAndMergeFrom(const MessageLite& other);
other             108 third_party/protobuf/src/google/protobuf/message_lite.h   virtual void CheckTypeAndMergeFrom(const MessageLite& other) = 0;
other              58 third_party/protobuf/src/google/protobuf/repeated_field.cc void RepeatedPtrFieldBase::Swap(RepeatedPtrFieldBase* other) {
other              59 third_party/protobuf/src/google/protobuf/repeated_field.cc   if (this == other) return;
other              65 third_party/protobuf/src/google/protobuf/repeated_field.cc   elements_       = other->elements_;
other              66 third_party/protobuf/src/google/protobuf/repeated_field.cc   current_size_   = other->current_size_;
other              67 third_party/protobuf/src/google/protobuf/repeated_field.cc   allocated_size_ = other->allocated_size_;
other              68 third_party/protobuf/src/google/protobuf/repeated_field.cc   total_size_     = other->total_size_;
other              70 third_party/protobuf/src/google/protobuf/repeated_field.cc   other->elements_       = swap_elements;
other              71 third_party/protobuf/src/google/protobuf/repeated_field.cc   other->current_size_   = swap_current_size;
other              72 third_party/protobuf/src/google/protobuf/repeated_field.cc   other->allocated_size_ = swap_allocated_size;
other              73 third_party/protobuf/src/google/protobuf/repeated_field.cc   other->total_size_     = swap_total_size;
other              86 third_party/protobuf/src/google/protobuf/repeated_field.h   RepeatedField(const RepeatedField& other);
other              91 third_party/protobuf/src/google/protobuf/repeated_field.h   RepeatedField& operator=(const RepeatedField& other);
other             110 third_party/protobuf/src/google/protobuf/repeated_field.h   void MergeFrom(const RepeatedField& other);
other             111 third_party/protobuf/src/google/protobuf/repeated_field.h   void CopyFrom(const RepeatedField& other);
other             130 third_party/protobuf/src/google/protobuf/repeated_field.h   void Swap(RepeatedField* other);
other             261 third_party/protobuf/src/google/protobuf/repeated_field.h   void MergeFrom(const RepeatedPtrFieldBase& other);
other             263 third_party/protobuf/src/google/protobuf/repeated_field.h   void CopyFrom(const RepeatedPtrFieldBase& other);
other             286 third_party/protobuf/src/google/protobuf/repeated_field.h   void Swap(RepeatedPtrFieldBase* other);
other             406 third_party/protobuf/src/google/protobuf/repeated_field.h   RepeatedPtrField(const RepeatedPtrField& other);
other             411 third_party/protobuf/src/google/protobuf/repeated_field.h   RepeatedPtrField& operator=(const RepeatedPtrField& other);
other             429 third_party/protobuf/src/google/protobuf/repeated_field.h   void MergeFrom(const RepeatedPtrField& other);
other             430 third_party/protobuf/src/google/protobuf/repeated_field.h   void CopyFrom(const RepeatedPtrField& other);
other             445 third_party/protobuf/src/google/protobuf/repeated_field.h   void Swap(RepeatedPtrField* other);
other             558 third_party/protobuf/src/google/protobuf/repeated_field.h inline RepeatedField<Element>::RepeatedField(const RepeatedField& other)
other             562 third_party/protobuf/src/google/protobuf/repeated_field.h   CopyFrom(other);
other             583 third_party/protobuf/src/google/protobuf/repeated_field.h RepeatedField<Element>::operator=(const RepeatedField& other) {
other             584 third_party/protobuf/src/google/protobuf/repeated_field.h   if (this != &other)
other             585 third_party/protobuf/src/google/protobuf/repeated_field.h     CopyFrom(other);
other             674 third_party/protobuf/src/google/protobuf/repeated_field.h inline void RepeatedField<Element>::MergeFrom(const RepeatedField& other) {
other             675 third_party/protobuf/src/google/protobuf/repeated_field.h   if (other.current_size_ != 0) {
other             676 third_party/protobuf/src/google/protobuf/repeated_field.h     Reserve(current_size_ + other.current_size_);
other             677 third_party/protobuf/src/google/protobuf/repeated_field.h     CopyArray(elements_ + current_size_, other.elements_, other.current_size_);
other             678 third_party/protobuf/src/google/protobuf/repeated_field.h     current_size_ += other.current_size_;
other             683 third_party/protobuf/src/google/protobuf/repeated_field.h inline void RepeatedField<Element>::CopyFrom(const RepeatedField& other) {
other             685 third_party/protobuf/src/google/protobuf/repeated_field.h   MergeFrom(other);
other             700 third_party/protobuf/src/google/protobuf/repeated_field.h void RepeatedField<Element>::Swap(RepeatedField* other) {
other             701 third_party/protobuf/src/google/protobuf/repeated_field.h   if (this == other) return;
other             706 third_party/protobuf/src/google/protobuf/repeated_field.h   elements_     = other->elements_;
other             707 third_party/protobuf/src/google/protobuf/repeated_field.h   current_size_ = other->current_size_;
other             708 third_party/protobuf/src/google/protobuf/repeated_field.h   total_size_   = other->total_size_;
other             710 third_party/protobuf/src/google/protobuf/repeated_field.h   other->elements_     = swap_elements;
other             711 third_party/protobuf/src/google/protobuf/repeated_field.h   other->current_size_ = swap_current_size;
other             712 third_party/protobuf/src/google/protobuf/repeated_field.h   other->total_size_   = swap_total_size;
other             863 third_party/protobuf/src/google/protobuf/repeated_field.h inline void RepeatedPtrFieldBase::MergeFrom(const RepeatedPtrFieldBase& other) {
other             864 third_party/protobuf/src/google/protobuf/repeated_field.h   Reserve(current_size_ + other.current_size_);
other             865 third_party/protobuf/src/google/protobuf/repeated_field.h   for (int i = 0; i < other.current_size_; i++) {
other             866 third_party/protobuf/src/google/protobuf/repeated_field.h     TypeHandler::Merge(other.template Get<TypeHandler>(i), Add<TypeHandler>());
other             871 third_party/protobuf/src/google/protobuf/repeated_field.h inline void RepeatedPtrFieldBase::CopyFrom(const RepeatedPtrFieldBase& other) {
other             873 third_party/protobuf/src/google/protobuf/repeated_field.h   RepeatedPtrFieldBase::MergeFrom<TypeHandler>(other);
other            1004 third_party/protobuf/src/google/protobuf/repeated_field.h     const RepeatedPtrField& other) {
other            1005 third_party/protobuf/src/google/protobuf/repeated_field.h   CopyFrom(other);
other            1024 third_party/protobuf/src/google/protobuf/repeated_field.h     const RepeatedPtrField& other) {
other            1025 third_party/protobuf/src/google/protobuf/repeated_field.h   if (this != &other)
other            1026 third_party/protobuf/src/google/protobuf/repeated_field.h     CopyFrom(other);
other            1090 third_party/protobuf/src/google/protobuf/repeated_field.h     const RepeatedPtrField& other) {
other            1091 third_party/protobuf/src/google/protobuf/repeated_field.h   RepeatedPtrFieldBase::MergeFrom<TypeHandler>(other);
other            1096 third_party/protobuf/src/google/protobuf/repeated_field.h     const RepeatedPtrField& other) {
other            1097 third_party/protobuf/src/google/protobuf/repeated_field.h   RepeatedPtrFieldBase::CopyFrom<TypeHandler>(other);
other            1111 third_party/protobuf/src/google/protobuf/repeated_field.h void RepeatedPtrField<Element>::Swap(RepeatedPtrField* other) {
other            1112 third_party/protobuf/src/google/protobuf/repeated_field.h   RepeatedPtrFieldBase::Swap(other);
other            1197 third_party/protobuf/src/google/protobuf/repeated_field.h   RepeatedPtrIterator(const RepeatedPtrIterator<OtherElement>& other)
other            1198 third_party/protobuf/src/google/protobuf/repeated_field.h       : it_(other.it_) {
other             270 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   RepeatedField<int> other(field.begin(), field.end());
other             271 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   ASSERT_EQ(values.size(), other.size());
other             272 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   EXPECT_EQ(values[0], other.Get(0));
other             273 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   EXPECT_EQ(values[1], other.Get(1));
other             679 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   RepeatedPtrField<string> other(field.begin(), field.end());
other             680 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   ASSERT_EQ(values.size(), other.size());
other             681 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   EXPECT_EQ(values[0], other.Get(0));
other             682 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   EXPECT_EQ(values[1], other.Get(1));
other             698 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   RepeatedPtrField<Nested> other(field.begin(), field.end());
other             699 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   ASSERT_EQ(values.size(), other.size());
other             700 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   EXPECT_EQ(values[0].bb(), other.Get(0).bb());
other             701 third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc   EXPECT_EQ(values[1].bb(), other.Get(1).bb());
other             202 third_party/protobuf/src/google/protobuf/stubs/common.cc void LogFinisher::operator=(LogMessage& other) {
other             203 third_party/protobuf/src/google/protobuf/stubs/common.cc   other.Finish();
other             690 third_party/protobuf/src/google/protobuf/stubs/common.h   void operator=(LogMessage& other);
other              87 third_party/protobuf/src/google/protobuf/unknown_field_set.cc void UnknownFieldSet::MergeFrom(const UnknownFieldSet& other) {
other              88 third_party/protobuf/src/google/protobuf/unknown_field_set.cc   for (int i = 0; i < other.field_count(); i++) {
other              89 third_party/protobuf/src/google/protobuf/unknown_field_set.cc     AddField(other.field(i));
other             208 third_party/protobuf/src/google/protobuf/unknown_field_set.cc   UnknownFieldSet other;
other             209 third_party/protobuf/src/google/protobuf/unknown_field_set.cc   if (internal::WireFormatLite::SkipMessage(input, &other) &&
other             211 third_party/protobuf/src/google/protobuf/unknown_field_set.cc     MergeFrom(other);
other              90 third_party/protobuf/src/google/protobuf/unknown_field_set.h   void MergeFrom(const UnknownFieldSet& other);
other             924 third_party/sqlite/src/tool/lemon.c   struct config *cfp, *other;
other             944 third_party/sqlite/src/tool/lemon.c         other = plp->cfp;
other             945 third_party/sqlite/src/tool/lemon.c         Plink_add(&other->fplp,cfp);
other             326 third_party/tcmalloc/chromium/src/deep-heap-profile.h     void AddAnotherRegionStat(const RegionStats& other) {
other             327 third_party/tcmalloc/chromium/src/deep-heap-profile.h       virtual_bytes_ += other.virtual_bytes_;
other             328 third_party/tcmalloc/chromium/src/deep-heap-profile.h       committed_bytes_ += other.committed_bytes_;
other              30 third_party/tcmalloc/chromium/src/heap-profile-stats.h   bool Equivalent(const HeapProfileStats& other) const {
other              31 third_party/tcmalloc/chromium/src/heap-profile-stats.h     return allocs - frees == other.allocs - other.frees &&
other              32 third_party/tcmalloc/chromium/src/heap-profile-stats.h         alloc_size - free_size == other.alloc_size - other.free_size;
other             430 tools/binary_size/java/src/org/chromium/tools/binary_size/Addr2LineWorkerPool.java                         String other = mFileLookupTable.put(
other             432 tools/binary_size/java/src/org/chromium/tools/binary_size/Addr2LineWorkerPool.java                         if (other != null) dupes.add(name);
other             845 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp         if (CXXMethodDecl* other = base->InheritsNonVirtualTrace())
other             846 tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp           ReportOverriddenNonVirtualTrace(parent, trace, other);
other              19 tools/clang/blink_gc_plugin/NeedsTracing.h   NeedsTracing LUB(const NeedsTracing& other) {
other              20 tools/clang/blink_gc_plugin/NeedsTracing.h     return value_ > other.value_ ? value_ : other.value_;
other              22 tools/clang/blink_gc_plugin/NeedsTracing.h   bool operator==(const NeedsTracing& other) {
other              23 tools/clang/blink_gc_plugin/NeedsTracing.h     return value_ == other.value_;
other              17 tools/clang/blink_gc_plugin/TracingStatus.h   TracingStatus LUB(const TracingStatus& other) const {
other              18 tools/clang/blink_gc_plugin/TracingStatus.h     return status_ > other.status_ ? status_ : other.status_;
other              20 tools/clang/blink_gc_plugin/TracingStatus.h   bool operator==(const TracingStatus& other) const {
other              21 tools/clang/blink_gc_plugin/TracingStatus.h     return status_ == other.status_;
other              60 tools/gn/args.cc Args::Args(const Args& other)
other              61 tools/gn/args.cc     : overrides_(other.overrides_),
other              62 tools/gn/args.cc       all_overrides_(other.all_overrides_),
other              63 tools/gn/args.cc       declared_arguments_(other.declared_arguments_) {
other              26 tools/gn/args.h   Args(const Args& other);
other             101 tools/gn/args.h   Args& operator=(const Args& other);  // Disallow assignment.
other              13 tools/gn/build_settings.cc BuildSettings::BuildSettings(const BuildSettings& other)
other              14 tools/gn/build_settings.cc     : root_path_(other.root_path_),
other              15 tools/gn/build_settings.cc       root_path_utf8_(other.root_path_utf8_),
other              16 tools/gn/build_settings.cc       secondary_source_path_(other.secondary_source_path_),
other              17 tools/gn/build_settings.cc       python_path_(other.python_path_),
other              18 tools/gn/build_settings.cc       build_config_file_(other.build_config_file_),
other              19 tools/gn/build_settings.cc       build_dir_(other.build_dir_),
other              20 tools/gn/build_settings.cc       build_to_source_dir_string_(other.build_to_source_dir_string_),
other              21 tools/gn/build_settings.cc       build_args_(other.build_args_) {
other              29 tools/gn/build_settings.h   BuildSettings(const BuildSettings& other);
other              99 tools/gn/build_settings.h   BuildSettings& operator=(const BuildSettings& other);  // Disallow.
other              66 tools/gn/label.h   bool operator==(const Label& other) const {
other              67 tools/gn/label.h     return name_ == other.name_ && dir_ == other.dir_ &&
other              68 tools/gn/label.h            toolchain_dir_ == other.toolchain_dir_ &&
other              69 tools/gn/label.h            toolchain_name_ == other.toolchain_name_;
other              71 tools/gn/label.h   bool operator!=(const Label& other) const {
other              72 tools/gn/label.h     return !operator==(other);
other              74 tools/gn/label.h   bool operator<(const Label& other) const {
other              77 tools/gn/label.h     if (dir_ != other.dir_)
other              78 tools/gn/label.h       return dir_ < other.dir_;
other              79 tools/gn/label.h     if (name_ != other.name_)
other              80 tools/gn/label.h       return name_ < other.name_;
other              81 tools/gn/label.h     if (toolchain_dir_ != other.toolchain_dir_)
other              82 tools/gn/label.h       return toolchain_dir_ < other.toolchain_dir_;
other              83 tools/gn/label.h     return toolchain_name_ < other.toolchain_name_;
other              88 tools/gn/label.h   bool ToolchainsEqual(const Label& other) const {
other              89 tools/gn/label.h     return toolchain_dir_ == other.toolchain_dir_ &&
other              90 tools/gn/label.h            toolchain_name_ == other.toolchain_name_;
other              45 tools/gn/loader.cc   bool operator<(const LoadID& other) const {
other              46 tools/gn/loader.cc     if (file.value() == other.file.value())
other              47 tools/gn/loader.cc       return toolchain_name < other.toolchain_name;
other              48 tools/gn/loader.cc     return file < other.file;
other              23 tools/gn/location.cc bool Location::operator==(const Location& other) const {
other              24 tools/gn/location.cc   return other.file_ == file_ &&
other              25 tools/gn/location.cc          other.line_number_ == line_number_ &&
other              26 tools/gn/location.cc          other.char_offset_ == char_offset_;
other              29 tools/gn/location.cc bool Location::operator!=(const Location& other) const {
other              30 tools/gn/location.cc   return !operator==(other);
other              33 tools/gn/location.cc bool Location::operator<(const Location& other) const {
other              34 tools/gn/location.cc   DCHECK(file_ == other.file_);
other              35 tools/gn/location.cc   if (line_number_ != other.line_number_)
other              36 tools/gn/location.cc     return line_number_ < other.line_number_;
other              37 tools/gn/location.cc   return char_offset_ < other.char_offset_;
other              68 tools/gn/location.cc LocationRange LocationRange::Union(const LocationRange& other) const {
other              69 tools/gn/location.cc   DCHECK(begin_.file() == other.begin_.file());
other              71 tools/gn/location.cc       begin_ < other.begin_ ? begin_ : other.begin_,
other              72 tools/gn/location.cc       end_ < other.end_ ? other.end_ : end_);
other              22 tools/gn/location.h   bool operator==(const Location& other) const;
other              23 tools/gn/location.h   bool operator!=(const Location& other) const;
other              24 tools/gn/location.h   bool operator<(const Location& other) const;
other              47 tools/gn/location.h   LocationRange Union(const LocationRange& other) const;
other              59 tools/gn/ordered_set.h   void append(const OrderedSet<T>& other) {
other              60 tools/gn/ordered_set.h     for (size_t i = 0; i < other.size(); i++)
other              61 tools/gn/ordered_set.h       push_back(other[i]);
other              30 tools/gn/output_file.h   bool operator==(const OutputFile& other) const {
other              31 tools/gn/output_file.h     return value_ == other.value_;
other              33 tools/gn/output_file.h   bool operator!=(const OutputFile& other) const {
other              34 tools/gn/output_file.h     return value_ != other.value_;
other              36 tools/gn/output_file.h   bool operator<(const OutputFile& other) const {
other              37 tools/gn/output_file.h     return value_ < other.value_;
other             130 tools/gn/setup.cc CommonSetup::CommonSetup(const CommonSetup& other)
other             131 tools/gn/setup.cc     : build_settings_(other.build_settings_),
other             134 tools/gn/setup.cc       check_for_bad_items_(other.check_for_bad_items_),
other             135 tools/gn/setup.cc       check_for_unused_overrides_(other.check_for_unused_overrides_) {
other              57 tools/gn/setup.h   CommonSetup(const CommonSetup& other);
other              72 tools/gn/setup.h   CommonSetup& operator=(const CommonSetup& other);  // Disallow.
other              83 tools/gn/source_dir.h   bool operator==(const SourceDir& other) const {
other              84 tools/gn/source_dir.h     return value_ == other.value_;
other              86 tools/gn/source_dir.h   bool operator!=(const SourceDir& other) const {
other              87 tools/gn/source_dir.h     return !operator==(other);
other              89 tools/gn/source_dir.h   bool operator<(const SourceDir& other) const {
other              90 tools/gn/source_dir.h     return value_ < other.value_;
other              62 tools/gn/source_file.h   bool operator==(const SourceFile& other) const {
other              63 tools/gn/source_file.h     return value_ == other.value_;
other              65 tools/gn/source_file.h   bool operator!=(const SourceFile& other) const {
other              66 tools/gn/source_file.h     return !operator==(other);
other              68 tools/gn/source_file.h   bool operator<(const SourceFile& other) const {
other              69 tools/gn/source_file.h     return value_ < other.value_;
other             137 tools/gn/value.cc bool Value::operator==(const Value& other) const {
other             138 tools/gn/value.cc   if (type_ != other.type_)
other             143 tools/gn/value.cc       return boolean_value() == other.boolean_value();
other             145 tools/gn/value.cc       return int_value() == other.int_value();
other             147 tools/gn/value.cc       return string_value() == other.string_value();
other             149 tools/gn/value.cc       if (list_value().size() != other.list_value().size())
other             152 tools/gn/value.cc         if (list_value()[i] != other.list_value()[i])
other             159 tools/gn/value.cc       return scope_value() == other.scope_value();
other             165 tools/gn/value.cc bool Value::operator!=(const Value& other) const {
other             166 tools/gn/value.cc   return !operator==(other);
other             105 tools/gn/value.h   bool operator==(const Value& other) const;
other             106 tools/gn/value.h   bool operator!=(const Value& other) const;
other             188 ui/app_list/app_list_folder_item.cc bool AppListFolderItem::CompareForTest(const AppListItem* other) const {
other             189 ui/app_list/app_list_folder_item.cc   if (!AppListItem::CompareForTest(other))
other             192 ui/app_list/app_list_folder_item.cc       static_cast<const AppListFolderItem*>(other);
other              68 ui/app_list/app_list_folder_item.h   virtual bool CompareForTest(const AppListItem* other) const OVERRIDE;
other              89 ui/app_list/app_list_item.cc bool AppListItem::CompareForTest(const AppListItem* other) const {
other              90 ui/app_list/app_list_item.cc   return id_ == other->id_ &&
other              91 ui/app_list/app_list_item.cc       folder_id_ == other->folder_id_ &&
other              92 ui/app_list/app_list_item.cc       name_ == other->name_ &&
other              93 ui/app_list/app_list_item.cc       short_name_ == other->short_name_ &&
other              94 ui/app_list/app_list_item.cc       GetItemType() == other->GetItemType() &&
other              95 ui/app_list/app_list_item.cc       position_.Equals(other->position_);
other              90 ui/app_list/app_list_item.h   virtual bool CompareForTest(const AppListItem* other) const;
other             225 ui/app_list/views/apps_grid_view.h     bool operator==(const Index& other) const {
other             226 ui/app_list/views/apps_grid_view.h       return page == other.page && slot == other.slot;
other             228 ui/app_list/views/apps_grid_view.h     bool operator!=(const Index& other) const {
other             229 ui/app_list/views/apps_grid_view.h       return page != other.page || slot != other.slot;
other             557 ui/aura/window.cc bool Window::Contains(const Window* other) const {
other             558 ui/aura/window.cc   for (const Window* parent = other; parent; parent = parent->parent_) {
other             200 ui/aura/window.h   bool Contains(const Window* other) const;
other              94 ui/base/clipboard/clipboard.h     bool operator<(const FormatType& other) const;
other             103 ui/base/clipboard/clipboard.h     FormatType(const FormatType& other);
other             104 ui/base/clipboard/clipboard.h     FormatType& operator=(const FormatType& other);
other             107 ui/base/clipboard/clipboard.h     bool Equals(const FormatType& other) const;
other             201 ui/base/clipboard/clipboard_android.cc bool Clipboard::FormatType::Equals(const FormatType& other) const {
other             202 ui/base/clipboard/clipboard_android.cc   return data_ == other.data_;
other             429 ui/base/clipboard/clipboard_aura.cc bool Clipboard::FormatType::operator<(const FormatType& other) const {
other             430 ui/base/clipboard/clipboard_aura.cc   return data_ < other.data_;
other             433 ui/base/clipboard/clipboard_aura.cc bool Clipboard::FormatType::Equals(const FormatType& other) const {
other             434 ui/base/clipboard/clipboard_aura.cc   return data_ == other.data_;
other             214 ui/base/clipboard/clipboard_aurax11.cc bool Clipboard::FormatType::operator<(const FormatType& other) const {
other             215 ui/base/clipboard/clipboard_aurax11.cc   return data_ < other.data_;
other             218 ui/base/clipboard/clipboard_aurax11.cc bool Clipboard::FormatType::Equals(const FormatType& other) const {
other             219 ui/base/clipboard/clipboard_aurax11.cc   return data_ == other.data_;
other             205 ui/base/clipboard/clipboard_gtk.cc bool Clipboard::FormatType::Equals(const FormatType& other) const {
other             206 ui/base/clipboard/clipboard_gtk.cc   return data_ == other.data_;
other             202 ui/base/clipboard/clipboard_win.cc bool Clipboard::FormatType::operator<(const FormatType& other) const {
other             203 ui/base/clipboard/clipboard_win.cc   return ToUINT() < other.ToUINT();
other             206 ui/base/clipboard/clipboard_win.cc bool Clipboard::FormatType::Equals(const FormatType& other) const {
other             207 ui/base/clipboard/clipboard_win.cc   return ToUINT() == other.ToUINT();
other              92 ui/base/dragdrop/os_exchange_data_provider_win.cc   static FormatEtcEnumerator* CloneFromOther(const FormatEtcEnumerator* other);
other             203 ui/base/dragdrop/os_exchange_data_provider_win.cc     const FormatEtcEnumerator* other) {
other             206 ui/base/dragdrop/os_exchange_data_provider_win.cc   ScopedVector<FORMATETC>::const_iterator start = other->contents_.begin();
other             207 ui/base/dragdrop/os_exchange_data_provider_win.cc   while (start != other->contents_.end()) {
other             214 ui/base/dragdrop/os_exchange_data_provider_win.cc   e->cursor_ = other->cursor_;
other              13 ui/base/ime/infolist_entry.cc bool InfolistEntry::operator==(const InfolistEntry& other) const {
other              14 ui/base/ime/infolist_entry.cc   return title == other.title && body == other.body &&
other              15 ui/base/ime/infolist_entry.cc       highlighted == other.highlighted;
other              18 ui/base/ime/infolist_entry.cc bool InfolistEntry::operator!=(const InfolistEntry& other) const {
other              19 ui/base/ime/infolist_entry.cc   return !(*this == other);
other             181 ui/compositor/layer.cc void Layer::StackAbove(Layer* child, Layer* other) {
other             182 ui/compositor/layer.cc   StackRelativeTo(child, other, true);
other             191 ui/compositor/layer.cc void Layer::StackBelow(Layer* child, Layer* other) {
other             192 ui/compositor/layer.cc   StackRelativeTo(child, other, false);
other             195 ui/compositor/layer.cc bool Layer::Contains(const Layer* other) const {
other             196 ui/compositor/layer.cc   for (const Layer* parent = other; parent; parent = parent->parent()) {
other             716 ui/compositor/layer.cc void Layer::StackRelativeTo(Layer* child, Layer* other, bool above) {
other             717 ui/compositor/layer.cc   DCHECK_NE(child, other);
other             719 ui/compositor/layer.cc   DCHECK_EQ(this, other->parent());
other             724 ui/compositor/layer.cc       std::find(children_.begin(), children_.end(), other) - children_.begin();
other             101 ui/compositor/layer.h   void StackAbove(Layer* child, Layer* other);
other             108 ui/compositor/layer.h   void StackBelow(Layer* child, Layer* other);
other             120 ui/compositor/layer.h   bool Contains(const Layer* other) const;
other             363 ui/compositor/layer.h   void StackRelativeTo(Layer* child, Layer* other, bool above);
other             514 ui/compositor/layer_animation_element.cc   static InverseTransformTransition* Clone(const LayerAnimationElement* other) {
other             516 ui/compositor/layer_animation_element.cc       CheckAndCast<const InverseTransformTransition*>(other);
other             807 ui/compositor/layer_animation_element.cc     const LayerAnimationElement* other) {
other             808 ui/compositor/layer_animation_element.cc   return InverseTransformTransition::Clone(other);
other              86 ui/compositor/layer_animation_element.h       const LayerAnimationElement* other);
other             188 ui/compositor/layer_animation_sequence.cc     LayerAnimationElement::AnimatableProperties other) const {
other             189 ui/compositor/layer_animation_sequence.cc   return (properties_ & other) != LayerAnimationElement::UNKNOWN;
other              99 ui/compositor/layer_animation_sequence.h       LayerAnimationElement::AnimatableProperties other) const;
other              18 ui/compositor/test/test_layer_animation_delegate.cc     const LayerAnimationDelegate& other)
other              19 ui/compositor/test/test_layer_animation_delegate.cc     : bounds_(other.GetBoundsForAnimation()),
other              20 ui/compositor/test/test_layer_animation_delegate.cc       transform_(other.GetTransformForAnimation()),
other              21 ui/compositor/test/test_layer_animation_delegate.cc       opacity_(other.GetOpacityForAnimation()),
other              22 ui/compositor/test/test_layer_animation_delegate.cc       visibility_(other.GetVisibilityForAnimation()),
other              18 ui/compositor/test/test_layer_animation_delegate.h   explicit TestLayerAnimationDelegate(const LayerAnimationDelegate& other);
other              92 ui/events/gesture_detection/bitset_32.h   inline bool operator==(const BitSet32& other) const {
other              93 ui/events/gesture_detection/bitset_32.h     return value == other.value;
other              95 ui/events/gesture_detection/bitset_32.h   inline bool operator!=(const BitSet32& other) const {
other              96 ui/events/gesture_detection/bitset_32.h     return value != other.value;
other              44 ui/events/gesture_detection/gesture_event_data_packet.cc     const GestureEventDataPacket& other)
other              45 ui/events/gesture_detection/gesture_event_data_packet.cc     : gesture_count_(other.gesture_count_),
other              46 ui/events/gesture_detection/gesture_event_data_packet.cc       gesture_source_(other.gesture_source_) {
other              47 ui/events/gesture_detection/gesture_event_data_packet.cc   std::copy(other.gestures_, other.gestures_ + other.gesture_count_, gestures_);
other              53 ui/events/gesture_detection/gesture_event_data_packet.cc     const GestureEventDataPacket& other) {
other              54 ui/events/gesture_detection/gesture_event_data_packet.cc   gesture_count_ = other.gesture_count_;
other              55 ui/events/gesture_detection/gesture_event_data_packet.cc   gesture_source_ = other.gesture_source_;
other              56 ui/events/gesture_detection/gesture_event_data_packet.cc   std::copy(other.gestures_, other.gestures_ + other.gesture_count_, gestures_);
other              31 ui/events/gesture_detection/gesture_event_data_packet.h   GestureEventDataPacket(const GestureEventDataPacket& other);
other              33 ui/events/gesture_detection/gesture_event_data_packet.h   GestureEventDataPacket& operator=(const GestureEventDataPacket& other);
other              41 ui/events/gesture_detection/mock_motion_event.cc MockMotionEvent::MockMotionEvent(const MockMotionEvent& other)
other              42 ui/events/gesture_detection/mock_motion_event.cc     : action(other.action),
other              43 ui/events/gesture_detection/mock_motion_event.cc       pointer_count(other.pointer_count),
other              44 ui/events/gesture_detection/mock_motion_event.cc       time(other.time),
other              45 ui/events/gesture_detection/mock_motion_event.cc       id(other.GetId()) {
other              46 ui/events/gesture_detection/mock_motion_event.cc   points[0] = other.points[0];
other              47 ui/events/gesture_detection/mock_motion_event.cc   points[1] = other.points[1];
other              24 ui/events/gesture_detection/mock_motion_event.h   MockMotionEvent(const MockMotionEvent& other);
other             135 ui/events/latency_info.cc void LatencyInfo::CopyLatencyFrom(const LatencyInfo& other,
other             137 ui/events/latency_info.cc   for (LatencyMap::const_iterator it = other.latency_components.begin();
other             138 ui/events/latency_info.cc        it != other.latency_components.end();
other             150 ui/events/latency_info.cc void LatencyInfo::AddNewLatencyFrom(const LatencyInfo& other) {
other             151 ui/events/latency_info.cc     for (LatencyMap::const_iterator it = other.latency_components.begin();
other             152 ui/events/latency_info.cc          it != other.latency_components.end();
other             107 ui/events/latency_info.h   void CopyLatencyFrom(const LatencyInfo& other, LatencyComponentType type);
other             110 ui/events/latency_info.h   void AddNewLatencyFrom(const LatencyInfo& other);
other              18 ui/gfx/font.cc Font::Font(const Font& other) : platform_font_(other.platform_font_) {
other              21 ui/gfx/font.cc Font& Font::operator=(const Font& other) {
other              22 ui/gfx/font.cc   platform_font_ = other.platform_font_;
other              44 ui/gfx/font.h    Font(const Font& other);
other              45 ui/gfx/font.h    Font& operator=(const Font& other);
other              28 ui/gfx/font_list.cc FontList::FontList(const FontList& other) : impl_(other.impl_) {}
other              45 ui/gfx/font_list.cc FontList& FontList::operator=(const FontList& other) {
other              46 ui/gfx/font_list.cc   impl_ = other.impl_;
other              38 ui/gfx/font_list.h   FontList(const FontList& other);
other              59 ui/gfx/font_list.h   FontList& operator=(const FontList& other);
other              64 ui/gfx/geometry/point3_f.h   float SquaredDistanceTo(const Point3F& other) const {
other              65 ui/gfx/geometry/point3_f.h     float dx = x_ - other.x_;
other              66 ui/gfx/geometry/point3_f.h     float dy = y_ - other.y_;
other              67 ui/gfx/geometry/point3_f.h     float dz = z_ - other.z_;
other              46 ui/gfx/geometry/point_base.h   void SetToMin(const Class& other) {
other              47 ui/gfx/geometry/point_base.h     x_ = x_ <= other.x_ ? x_ : other.x_;
other              48 ui/gfx/geometry/point_base.h     y_ = y_ <= other.y_ ? y_ : other.y_;
other              51 ui/gfx/geometry/point_base.h   void SetToMax(const Class& other) {
other              52 ui/gfx/geometry/point_base.h     x_ = x_ >= other.x_ ? x_ : other.x_;
other              53 ui/gfx/geometry/point_base.h     y_ = y_ >= other.y_ ? y_ : other.y_;
other              95 ui/gfx/geometry/rect_base.h   bool operator<(const Class& other) const;
other             109 ui/gfx/geometry/rect_base_impl.h     operator<(const Class& other) const {
other             110 ui/gfx/geometry/rect_base_impl.h   if (origin_ == other.origin_) {
other             111 ui/gfx/geometry/rect_base_impl.h     if (width() == other.width()) {
other             112 ui/gfx/geometry/rect_base_impl.h       return height() < other.height();
other             114 ui/gfx/geometry/rect_base_impl.h       return width() < other.width();
other             117 ui/gfx/geometry/rect_base_impl.h     return origin_ < other.origin_;
other              38 ui/gfx/geometry/size_base.h   void SetToMin(const Class& other) {
other              39 ui/gfx/geometry/size_base.h     width_ = width_ <= other.width_ ? width_ : other.width_;
other              40 ui/gfx/geometry/size_base.h     height_ = height_ <= other.height_ ? height_ : other.height_;
other              43 ui/gfx/geometry/size_base.h   void SetToMax(const Class& other) {
other              44 ui/gfx/geometry/size_base.h     width_ = width_ >= other.width_ ? width_ : other.width_;
other              45 ui/gfx/geometry/size_base.h     height_ = height_ >= other.height_ ? height_ : other.height_;
other              17 ui/gfx/geometry/vector2d.cc void Vector2d::Add(const Vector2d& other) {
other              18 ui/gfx/geometry/vector2d.cc   x_ += other.x_;
other              19 ui/gfx/geometry/vector2d.cc   y_ += other.y_;
other              22 ui/gfx/geometry/vector2d.cc void Vector2d::Subtract(const Vector2d& other) {
other              23 ui/gfx/geometry/vector2d.cc   x_ -= other.x_;
other              24 ui/gfx/geometry/vector2d.cc   y_ -= other.y_;
other              36 ui/gfx/geometry/vector2d.h   void Add(const Vector2d& other);
other              38 ui/gfx/geometry/vector2d.h   void Subtract(const Vector2d& other);
other              40 ui/gfx/geometry/vector2d.h   void operator+=(const Vector2d& other) { Add(other); }
other              41 ui/gfx/geometry/vector2d.h   void operator-=(const Vector2d& other) { Subtract(other); }
other              43 ui/gfx/geometry/vector2d.h   void SetToMin(const Vector2d& other) {
other              44 ui/gfx/geometry/vector2d.h     x_ = x_ <= other.x_ ? x_ : other.x_;
other              45 ui/gfx/geometry/vector2d.h     y_ = y_ <= other.y_ ? y_ : other.y_;
other              48 ui/gfx/geometry/vector2d.h   void SetToMax(const Vector2d& other) {
other              49 ui/gfx/geometry/vector2d.h     x_ = x_ >= other.x_ ? x_ : other.x_;
other              50 ui/gfx/geometry/vector2d.h     y_ = y_ >= other.y_ ? y_ : other.y_;
other              21 ui/gfx/geometry/vector2d_f.cc void Vector2dF::Add(const Vector2dF& other) {
other              22 ui/gfx/geometry/vector2d_f.cc   x_ += other.x_;
other              23 ui/gfx/geometry/vector2d_f.cc   y_ += other.y_;
other              26 ui/gfx/geometry/vector2d_f.cc void Vector2dF::Subtract(const Vector2dF& other) {
other              27 ui/gfx/geometry/vector2d_f.cc   x_ -= other.x_;
other              28 ui/gfx/geometry/vector2d_f.cc   y_ -= other.y_;
other              34 ui/gfx/geometry/vector2d_f.h   void Add(const Vector2dF& other);
other              36 ui/gfx/geometry/vector2d_f.h   void Subtract(const Vector2dF& other);
other              38 ui/gfx/geometry/vector2d_f.h   void operator+=(const Vector2dF& other) { Add(other); }
other              39 ui/gfx/geometry/vector2d_f.h   void operator-=(const Vector2dF& other) { Subtract(other); }
other              41 ui/gfx/geometry/vector2d_f.h   void SetToMin(const Vector2dF& other) {
other              42 ui/gfx/geometry/vector2d_f.h     x_ = x_ <= other.x_ ? x_ : other.x_;
other              43 ui/gfx/geometry/vector2d_f.h     y_ = y_ <= other.y_ ? y_ : other.y_;
other              46 ui/gfx/geometry/vector2d_f.h   void SetToMax(const Vector2dF& other) {
other              47 ui/gfx/geometry/vector2d_f.h     x_ = x_ >= other.x_ ? x_ : other.x_;
other              48 ui/gfx/geometry/vector2d_f.h     y_ = y_ >= other.y_ ? y_ : other.y_;
other              25 ui/gfx/geometry/vector3d_f.cc Vector3dF::Vector3dF(const Vector2dF& other)
other              26 ui/gfx/geometry/vector3d_f.cc     : x_(other.x()),
other              27 ui/gfx/geometry/vector3d_f.cc       y_(other.y()),
other              39 ui/gfx/geometry/vector3d_f.cc void Vector3dF::Add(const Vector3dF& other) {
other              40 ui/gfx/geometry/vector3d_f.cc   x_ += other.x_;
other              41 ui/gfx/geometry/vector3d_f.cc   y_ += other.y_;
other              42 ui/gfx/geometry/vector3d_f.cc   z_ += other.z_;
other              45 ui/gfx/geometry/vector3d_f.cc void Vector3dF::Subtract(const Vector3dF& other) {
other              46 ui/gfx/geometry/vector3d_f.cc   x_ -= other.x_;
other              47 ui/gfx/geometry/vector3d_f.cc   y_ -= other.y_;
other              48 ui/gfx/geometry/vector3d_f.cc   z_ -= other.z_;
other              66 ui/gfx/geometry/vector3d_f.cc void Vector3dF::Cross(const Vector3dF& other) {
other              67 ui/gfx/geometry/vector3d_f.cc   float x = y_ * other.z() - z_ * other.y();
other              68 ui/gfx/geometry/vector3d_f.cc   float y = z_ * other.x() - x_ * other.z();
other              69 ui/gfx/geometry/vector3d_f.cc   float z = x_ * other.y() - y_ * other.x();
other              25 ui/gfx/geometry/vector3d_f.h   explicit Vector3dF(const Vector2dF& other);
other              40 ui/gfx/geometry/vector3d_f.h   void Add(const Vector3dF& other);
other              42 ui/gfx/geometry/vector3d_f.h   void Subtract(const Vector3dF& other);
other              44 ui/gfx/geometry/vector3d_f.h   void operator+=(const Vector3dF& other) { Add(other); }
other              45 ui/gfx/geometry/vector3d_f.h   void operator-=(const Vector3dF& other) { Subtract(other); }
other              47 ui/gfx/geometry/vector3d_f.h   void SetToMin(const Vector3dF& other) {
other              48 ui/gfx/geometry/vector3d_f.h     x_ = x_ <= other.x_ ? x_ : other.x_;
other              49 ui/gfx/geometry/vector3d_f.h     y_ = y_ <= other.y_ ? y_ : other.y_;
other              50 ui/gfx/geometry/vector3d_f.h     z_ = z_ <= other.z_ ? z_ : other.z_;
other              53 ui/gfx/geometry/vector3d_f.h   void SetToMax(const Vector3dF& other) {
other              54 ui/gfx/geometry/vector3d_f.h     x_ = x_ >= other.x_ ? x_ : other.x_;
other              55 ui/gfx/geometry/vector3d_f.h     y_ = y_ >= other.y_ ? y_ : other.y_;
other              56 ui/gfx/geometry/vector3d_f.h     z_ = z_ >= other.z_ ? z_ : other.z_;
other              70 ui/gfx/geometry/vector3d_f.h   void Cross(const Vector3dF& other);
other             581 ui/gfx/image/image.cc Image::Image(const Image& other) : storage_(other.storage_) {
other             584 ui/gfx/image/image.cc Image& Image::operator=(const Image& other) {
other             585 ui/gfx/image/image.cc   storage_ = other.storage_;
other             928 ui/gfx/image/image.cc void Image::SwapRepresentations(gfx::Image* other) {
other             929 ui/gfx/image/image.cc   storage_.swap(other->storage_);
other              94 ui/gfx/image/image.h   Image(const Image& other);
other              97 ui/gfx/image/image.h   Image& operator=(const Image& other);
other             184 ui/gfx/image/image.h   void SwapRepresentations(gfx::Image* other);
other              17 ui/gfx/image/image_family.cc ImageFamily::const_iterator::const_iterator(const const_iterator& other)
other              18 ui/gfx/image/image_family.cc     : map_iterator_(other.map_iterator_) {}
other              21 ui/gfx/image/image_family.cc     const std::map<MapKey, gfx::Image>::const_iterator& other)
other              22 ui/gfx/image/image_family.cc     : map_iterator_(other) {}
other              49 ui/gfx/image/image_family.h     const_iterator(const const_iterator& other);
other              75 ui/gfx/image/image_family.h     bool operator==(const const_iterator& other) const {
other              76 ui/gfx/image/image_family.h       return map_iterator_ == other.map_iterator_;
other              79 ui/gfx/image/image_family.h     bool operator!=(const const_iterator& other) const {
other              80 ui/gfx/image/image_family.h       return map_iterator_ != other.map_iterator_;
other              95 ui/gfx/image/image_family.h         const std::map<MapKey, gfx::Image>::const_iterator& other);
other             211 ui/gfx/image/image_skia.cc ImageSkia::ImageSkia(const ImageSkia& other) : storage_(other.storage_) {
other             214 ui/gfx/image/image_skia.cc ImageSkia& ImageSkia::operator=(const ImageSkia& other) {
other             215 ui/gfx/image/image_skia.cc   storage_ = other.storage_;
other             265 ui/gfx/image/image_skia.cc bool ImageSkia::BackedBySameObjectAs(const gfx::ImageSkia& other) const {
other             266 ui/gfx/image/image_skia.cc   return storage_.get() == other.storage_.get();
other              57 ui/gfx/image/image_skia.h   ImageSkia(const ImageSkia& other);
other              60 ui/gfx/image/image_skia.h   ImageSkia& operator=(const ImageSkia& other);
other              92 ui/gfx/image/image_skia.h   bool BackedBySameObjectAs(const gfx::ImageSkia& other) const;
other             337 ui/gfx/platform_font_pango.cc void PlatformFontPango::InitFromPlatformFont(const PlatformFontPango* other) {
other             338 ui/gfx/platform_font_pango.cc   typeface_ = other->typeface_;
other             339 ui/gfx/platform_font_pango.cc   font_family_ = other->font_family_;
other             340 ui/gfx/platform_font_pango.cc   font_size_pixels_ = other->font_size_pixels_;
other             341 ui/gfx/platform_font_pango.cc   style_ = other->style_;
other             342 ui/gfx/platform_font_pango.cc   height_pixels_ = other->height_pixels_;
other             343 ui/gfx/platform_font_pango.cc   ascent_pixels_ = other->ascent_pixels_;
other             344 ui/gfx/platform_font_pango.cc   cap_height_pixels_ = other->cap_height_pixels_;
other             345 ui/gfx/platform_font_pango.cc   pango_metrics_inited_ = other->pango_metrics_inited_;
other             346 ui/gfx/platform_font_pango.cc   average_width_pixels_ = other->average_width_pixels_;
other             347 ui/gfx/platform_font_pango.cc   underline_position_pixels_ = other->underline_position_pixels_;
other             348 ui/gfx/platform_font_pango.cc   underline_thickness_pixels_ = other->underline_thickness_pixels_;
other              80 ui/gfx/platform_font_pango.h   void InitFromPlatformFont(const PlatformFontPango* other);
other              89 ui/gfx/platform_font_pango.h   void CopyFont(const Font& other);
other              48 ui/gfx/range/range.cc bool Range::operator==(const Range& other) const {
other              49 ui/gfx/range/range.cc   return start() == other.start() && end() == other.end();
other              52 ui/gfx/range/range.cc bool Range::operator!=(const Range& other) const {
other              53 ui/gfx/range/range.cc   return !(*this == other);
other              56 ui/gfx/range/range.cc bool Range::EqualsIgnoringDirection(const Range& other) const {
other              57 ui/gfx/range/range.cc   return GetMin() == other.GetMin() && GetMax() == other.GetMax();
other              80 ui/gfx/range/range.h   bool operator==(const Range& other) const;
other              81 ui/gfx/range/range.h   bool operator!=(const Range& other) const;
other              82 ui/gfx/range/range.h   bool EqualsIgnoringDirection(const Range& other) const;
other             243 ui/gfx/transform.h   Transform operator*(const Transform& other) const {
other             244 ui/gfx/transform.h     return Transform(*this, other);
other             248 ui/gfx/transform.h   Transform& operator*=(const Transform& other) {
other             249 ui/gfx/transform.h     PreconcatTransform(other);
other              41 ui/gfx/win/window_impl.cc   bool Equals(const ClassInfo& other) const {
other              42 ui/gfx/win/window_impl.cc     return (other.style == style && other.icon == icon);
other              67 ui/gl/android/scoped_java_surface.cc void ScopedJavaSurface::MoveFrom(ScopedJavaSurface& other) {
other              69 ui/gl/android/scoped_java_surface.cc   j_surface_.Reset(env, other.j_surface_.Release());
other              70 ui/gl/android/scoped_java_surface.cc   auto_release_ = other.auto_release_;
other              71 ui/gl/android/scoped_java_surface.cc   is_protected_ = other.is_protected_;
other              58 ui/gl/android/scoped_java_surface.h   void MoveFrom(ScopedJavaSurface& other);
other              35 ui/message_center/notification.cc RichNotificationData::RichNotificationData(const RichNotificationData& other)
other              36 ui/message_center/notification.cc     : priority(other.priority),
other              37 ui/message_center/notification.cc       never_timeout(other.never_timeout),
other              38 ui/message_center/notification.cc       timestamp(other.timestamp),
other              39 ui/message_center/notification.cc       context_message(other.context_message),
other              40 ui/message_center/notification.cc       image(other.image),
other              41 ui/message_center/notification.cc       small_image(other.small_image),
other              42 ui/message_center/notification.cc       items(other.items),
other              43 ui/message_center/notification.cc       progress(other.progress),
other              44 ui/message_center/notification.cc       buttons(other.buttons),
other              46 ui/message_center/notification.cc           other.should_make_spoken_feedback_for_popup_updates),
other              47 ui/message_center/notification.cc       clickable(other.clickable) {}
other              73 ui/message_center/notification.cc Notification::Notification(const Notification& other)
other              74 ui/message_center/notification.cc     : type_(other.type_),
other              75 ui/message_center/notification.cc       id_(other.id_),
other              76 ui/message_center/notification.cc       title_(other.title_),
other              77 ui/message_center/notification.cc       message_(other.message_),
other              78 ui/message_center/notification.cc       icon_(other.icon_),
other              79 ui/message_center/notification.cc       display_source_(other.display_source_),
other              80 ui/message_center/notification.cc       notifier_id_(other.notifier_id_),
other              81 ui/message_center/notification.cc       serial_number_(other.serial_number_),
other              82 ui/message_center/notification.cc       optional_fields_(other.optional_fields_),
other              83 ui/message_center/notification.cc       shown_as_popup_(other.shown_as_popup_),
other              84 ui/message_center/notification.cc       is_read_(other.is_read_),
other              85 ui/message_center/notification.cc       delegate_(other.delegate_) {}
other              87 ui/message_center/notification.cc Notification& Notification::operator=(const Notification& other) {
other              88 ui/message_center/notification.cc   type_ = other.type_;
other              89 ui/message_center/notification.cc   id_ = other.id_;
other              90 ui/message_center/notification.cc   title_ = other.title_;
other              91 ui/message_center/notification.cc   message_ = other.message_;
other              92 ui/message_center/notification.cc   icon_ = other.icon_;
other              93 ui/message_center/notification.cc   display_source_ = other.display_source_;
other              94 ui/message_center/notification.cc   notifier_id_ = other.notifier_id_;
other              95 ui/message_center/notification.cc   serial_number_ = other.serial_number_;
other              96 ui/message_center/notification.cc   optional_fields_ = other.optional_fields_;
other              97 ui/message_center/notification.cc   shown_as_popup_ = other.shown_as_popup_;
other              98 ui/message_center/notification.cc   is_read_ = other.is_read_;
other              99 ui/message_center/notification.cc   delegate_ = other.delegate_;
other              39 ui/message_center/notification.h   RichNotificationData(const RichNotificationData& other);
other              67 ui/message_center/notification.h   Notification(const Notification& other);
other              68 ui/message_center/notification.h   Notification& operator=(const Notification& other);
other              27 ui/message_center/notifier_settings.cc bool NotifierId::operator==(const NotifierId& other) const {
other              28 ui/message_center/notifier_settings.cc   if (type != other.type)
other              31 ui/message_center/notifier_settings.cc   if (profile_id != other.profile_id)
other              35 ui/message_center/notifier_settings.cc     return url == other.url;
other              37 ui/message_center/notifier_settings.cc   return id == other.id;
other              40 ui/message_center/notifier_settings.cc bool NotifierId::operator<(const NotifierId& other) const {
other              41 ui/message_center/notifier_settings.cc   if (type != other.type)
other              42 ui/message_center/notifier_settings.cc     return type < other.type;
other              44 ui/message_center/notifier_settings.cc   if (profile_id != other.profile_id)
other              45 ui/message_center/notifier_settings.cc     return profile_id < other.profile_id;
other              48 ui/message_center/notifier_settings.cc     return url < other.url;
other              50 ui/message_center/notifier_settings.cc   return id < other.id;
other              52 ui/message_center/notifier_settings.h   bool operator==(const NotifierId& other) const;
other              54 ui/message_center/notifier_settings.h   bool operator<(const NotifierId& other) const;
other              58 ui/surface/transport_dib.h     bool operator==(const HandleAndSequenceNum& other) const {
other              59 ui/surface/transport_dib.h       return other.handle == handle && other.sequence_num == sequence_num;
other              62 ui/surface/transport_dib.h     bool operator<(const HandleAndSequenceNum& other) const {
other              64 ui/surface/transport_dib.h       if (other.handle != handle)
other              65 ui/surface/transport_dib.h         return other.handle < handle;
other              66 ui/surface/transport_dib.h       return other.sequence_num < sequence_num;
other              84 ui/surface/transport_dib.h     bool operator<(const Id& other) const {
other              85 ui/surface/transport_dib.h       return shmkey < other.shmkey;
other              88 ui/surface/transport_dib.h     bool operator==(const Id& other) const {
other              89 ui/surface/transport_dib.h       return shmkey == other.shmkey;
other              76 ui/v2/public/view.h   void StackChildAbove(View* child, View* other);
other              77 ui/v2/public/view.h   void StackChildBelow(View* child, View* other);
other              24 ui/v2/src/view.cc                           View* other,
other              26 ui/v2/src/view.cc   DCHECK_NE(child, other);
other              28 ui/v2/src/view.cc   DCHECK(other);
other              30 ui/v2/src/view.cc   DCHECK_EQ(parent, other->parent());
other              37 ui/v2/src/view.cc       std::find(children->begin(), children->end(), other) - children->begin();
other             262 ui/v2/src/view.cc void View::StackChildAbove(View* child, View* other) {
other             263 ui/v2/src/view.cc   StackChildRelativeTo(this, &children_, child, other, STACK_ABOVE);
other             266 ui/v2/src/view.cc void View::StackChildBelow(View* child, View* other) {
other             267 ui/v2/src/view.cc   StackChildRelativeTo(this, &children_, child, other, STACK_BELOW);
other              75 ui/views/controls/button/radio_button.cc       Views other;
other              76 ui/views/controls/button/radio_button.cc       container->GetViewsInGroup(GetGroup(), &other);
other              77 ui/views/controls/button/radio_button.cc       for (Views::iterator i(other.begin()); i != other.end(); ++i) {
other              88 ui/views/controls/styled_label.cc     const StyledLabel::StyleRange& other) const {
other              89 ui/views/controls/styled_label.cc   return range.start() < other.range.start();
other             106 ui/views/controls/styled_label.h     bool operator<(const StyleRange& other) const;
other             130 ui/wm/core/window_animations_unittest.cc   scoped_ptr<aura::Window> other(
other             137 ui/wm/core/window_animations_unittest.cc   EXPECT_EQ(0, GetWindowZPosition(other.get()));
other             139 ui/wm/core/window_animations_unittest.cc   EXPECT_EQ(0, GetLayerZPosition(other->layer()));
other             173 ui/wm/core/window_animations_unittest.cc     parent->StackChildAtTop(other.get());
other             175 ui/wm/core/window_animations_unittest.cc     EXPECT_EQ(1, GetWindowZPosition(other.get()));
other             178 ui/wm/core/window_animations_unittest.cc     EXPECT_EQ(1, GetLayerZPosition(other->layer()));
other             197 ui/wm/core/window_animations_unittest.cc   scoped_ptr<aura::Window> other(
other             213 ui/wm/core/window_animations_unittest.cc   EXPECT_EQ(0, GetWindowZPosition(other.get()));
other             238 ui/wm/core/window_animations_unittest.cc     parent->StackChildAtTop(other.get());
other             243 ui/wm/core/window_animations_unittest.cc     EXPECT_EQ(3, GetWindowZPosition(other.get()));
other             248 ui/wm/core/window_animations_unittest.cc     EXPECT_EQ(3, GetLayerZPosition(other->layer()));
other              67 url/gurl.cc    GURL::GURL(const GURL& other)
other              68 url/gurl.cc        : spec_(other.spec_),
other              69 url/gurl.cc          is_valid_(other.is_valid_),
other              70 url/gurl.cc          parsed_(other.parsed_) {
other              71 url/gurl.cc      if (other.inner_url_)
other              72 url/gurl.cc        inner_url_.reset(new GURL(*other.inner_url_));
other             166 url/gurl.cc    GURL& GURL::operator=(GURL other) {
other             167 url/gurl.cc      Swap(&other);
other             343 url/gurl.cc      GURL other(*this);
other             345 url/gurl.cc        return other;
other             348 url/gurl.cc      other.parsed_.query.reset();
other             349 url/gurl.cc      other.parsed_.ref.reset();
other             353 url/gurl.cc      other.spec_[other.parsed_.path.begin] = '/';
other             354 url/gurl.cc      other.parsed_.path.len = 1;
other             355 url/gurl.cc      other.spec_.resize(other.parsed_.path.begin + 1);
other             356 url/gurl.cc      return other;
other             521 url/gurl.cc    void GURL::Swap(GURL* other) {
other             522 url/gurl.cc      spec_.swap(other->spec_);
other             523 url/gurl.cc      std::swap(is_valid_, other->is_valid_);
other             524 url/gurl.cc      std::swap(parsed_, other->parsed_);
other             525 url/gurl.cc      inner_url_.swap(other->inner_url_);
other              28 url/gurl.h       GURL(const GURL& other);
other              56 url/gurl.h       GURL& operator=(GURL other);
other             113 url/gurl.h       bool operator==(const GURL& other) const {
other             114 url/gurl.h         return spec_ == other.spec_;
other             116 url/gurl.h       bool operator!=(const GURL& other) const {
other             117 url/gurl.h         return spec_ != other.spec_;
other             121 url/gurl.h       bool operator<(const GURL& other) const {
other             122 url/gurl.h         return spec_ < other.spec_;
other             124 url/gurl.h       bool operator>(const GURL& other) const {
other             125 url/gurl.h         return spec_ > other.spec_;
other             352 url/gurl.h       void Swap(GURL* other);
other             698 url/third_party/mozilla/url_parse.cc Parsed::Parsed(const Parsed& other) :
other             699 url/third_party/mozilla/url_parse.cc     scheme(other.scheme),
other             700 url/third_party/mozilla/url_parse.cc     username(other.username),
other             701 url/third_party/mozilla/url_parse.cc     password(other.password),
other             702 url/third_party/mozilla/url_parse.cc     host(other.host),
other             703 url/third_party/mozilla/url_parse.cc     port(other.port),
other             704 url/third_party/mozilla/url_parse.cc     path(other.path),
other             705 url/third_party/mozilla/url_parse.cc     query(other.query),
other             706 url/third_party/mozilla/url_parse.cc     ref(other.ref),
other             708 url/third_party/mozilla/url_parse.cc   if (other.inner_parsed_)
other             709 url/third_party/mozilla/url_parse.cc     set_inner_parsed(*other.inner_parsed_);
other             712 url/third_party/mozilla/url_parse.cc Parsed& Parsed::operator=(const Parsed& other) {
other             713 url/third_party/mozilla/url_parse.cc   if (this != &other) {
other             714 url/third_party/mozilla/url_parse.cc     scheme = other.scheme;
other             715 url/third_party/mozilla/url_parse.cc     username = other.username;
other             716 url/third_party/mozilla/url_parse.cc     password = other.password;
other             717 url/third_party/mozilla/url_parse.cc     host = other.host;
other             718 url/third_party/mozilla/url_parse.cc     port = other.port;
other             719 url/third_party/mozilla/url_parse.cc     path = other.path;
other             720 url/third_party/mozilla/url_parse.cc     query = other.query;
other             721 url/third_party/mozilla/url_parse.cc     ref = other.ref;
other             722 url/third_party/mozilla/url_parse.cc     if (other.inner_parsed_)
other             723 url/third_party/mozilla/url_parse.cc       set_inner_parsed(*other.inner_parsed_);
other              50 url/third_party/mozilla/url_parse.h   bool operator==(const Component& other) const {
other              51 url/third_party/mozilla/url_parse.h     return begin == other.begin && len == other.len;
other             118 webkit/browser/fileapi/file_system_url.cc bool FileSystemURL::IsInSameFileSystem(const FileSystemURL& other) const {
other             119 webkit/browser/fileapi/file_system_url.cc   return origin() == other.origin() &&
other             120 webkit/browser/fileapi/file_system_url.cc          type() == other.type() &&
other             121 webkit/browser/fileapi/file_system_url.cc          filesystem_id() == other.filesystem_id();
other             126 webkit/browser/fileapi/file_system_url.h   bool IsInSameFileSystem(const FileSystemURL& other) const;
other             136 webkit/browser/fileapi/file_system_url_unittest.cc   const std::string other("other");
other             146 webkit/browser/fileapi/file_system_url_unittest.cc       CreateFileSystemURL(root1 + other)));
other              19 webkit/browser/quota/storage_observer.cc bool StorageObserver::Filter::operator==(const Filter& other) const {
other              20 webkit/browser/quota/storage_observer.cc   return storage_type == other.storage_type &&
other              21 webkit/browser/quota/storage_observer.cc          origin == other.origin;
other              59 webkit/browser/quota/storage_observer.cc bool StorageObserver::Event::operator==(const Event& other) const {
other              60 webkit/browser/quota/storage_observer.cc   return filter == other.filter &&
other              61 webkit/browser/quota/storage_observer.cc          usage == other.usage &&
other              62 webkit/browser/quota/storage_observer.cc          quota == other.quota;
other              30 webkit/browser/quota/storage_observer.h     bool operator==(const Filter& other) const;
other              67 webkit/browser/quota/storage_observer.h     bool operator==(const Event& other) const;
other              32 webkit/common/blob/scoped_file.cc ScopedFile::ScopedFile(RValue other) {
other              33 webkit/common/blob/scoped_file.cc   MoveFrom(*other.object);
other              76 webkit/common/blob/scoped_file.cc void ScopedFile::MoveFrom(ScopedFile& other) {
other              79 webkit/common/blob/scoped_file.cc   scope_out_policy_ = other.scope_out_policy_;
other              80 webkit/common/blob/scoped_file.cc   scope_out_callbacks_.swap(other.scope_out_callbacks_);
other              81 webkit/common/blob/scoped_file.cc   file_task_runner_ = other.file_task_runner_;
other              82 webkit/common/blob/scoped_file.cc   path_ = other.Release();
other              56 webkit/common/blob/scoped_file.h   ScopedFile(RValue other);
other              84 webkit/common/blob/scoped_file.h   void MoveFrom(ScopedFile& other);
other            1187 webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc     WGC3Denum current, WGC3Denum other) {
other            1188 webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc   gl_->LoseContextCHROMIUM(current, other);
other             561 webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h   virtual void loseContextCHROMIUM(WGC3Denum current, WGC3Denum other);
other              21 webkit/renderer/compositor_bindings/web_transform_operations_impl.cc     const blink::WebTransformOperations& other) const {
other              23 webkit/renderer/compositor_bindings/web_transform_operations_impl.cc       static_cast<const WebTransformOperationsImpl&>(other);
other              23 webkit/renderer/compositor_bindings/web_transform_operations_impl.h   virtual bool canBlendWith(const blink::WebTransformOperations& other) const;
other              61 win8/metro_driver/print_document_source.h     DirectXContext(const DirectXContext& other)
other              62 win8/metro_driver/print_document_source.h         : d3d_device(other.d3d_device),
other              63 win8/metro_driver/print_document_source.h           d2d_factory(other.d2d_factory),
other              64 win8/metro_driver/print_document_source.h           d2d_device(other.d2d_device),
other              65 win8/metro_driver/print_document_source.h           d2d_context(other.d2d_context),
other              66 win8/metro_driver/print_document_source.h           wic_factory(other.wic_factory) {