Searched defs:other (Results 76 - 100 of 1518) sorted by relevance

1234567891011>>

/external/chromium_org/components/policy/core/common/
H A Dpolicy_namespace.cc16 PolicyNamespace::PolicyNamespace(const PolicyNamespace& other) argument
17 : domain(other.domain),
18 component_id(other.component_id) {}
22 PolicyNamespace& PolicyNamespace::operator=(const PolicyNamespace& other) { argument
23 domain = other.domain;
24 component_id = other.component_id;
28 bool PolicyNamespace::operator<(const PolicyNamespace& other) const {
29 return domain < other.domain ||
30 (domain == other.domain && component_id < other
[all...]
/external/chromium_org/content/browser/android/java/
H A Djava_type.cc71 JavaType::JavaType(const JavaType& other) { argument
72 *this = other;
78 JavaType& JavaType::operator=(const JavaType& other) { argument
79 if (this == &other)
81 type = other.type;
82 if (other.inner_type) {
84 inner_type.reset(new JavaType(*other.inner_type));
88 class_jni_name = other.class_jni_name;
/external/chromium_org/content/browser/renderer_host/
H A Devent_with_latency_info.h32 bool CanCoalesceWith(const EventWithLatencyInfo& other)
34 return WebInputEventTraits::CanCoalesce(other.event, event);
37 void CoalesceWith(const EventWithLatencyInfo& other) { argument
38 WebInputEventTraits::Coalesce(other.event, &event);
42 if (other.latency.trace_id >= 0 &&
43 (latency.trace_id < 0 || other.latency.trace_id < latency.trace_id))
44 latency = other.latency;
H A Dnative_web_keyboard_event_android.cc55 const NativeWebKeyboardEvent& other)
56 : WebKeyboardEvent(other),
57 os_event(NewGlobalRefForKeyEvent(other.os_event)),
58 skip_in_browser(other.skip_in_browser) {
62 const NativeWebKeyboardEvent& other) {
63 WebKeyboardEvent::operator=(other);
65 os_event = NewGlobalRefForKeyEvent(other.os_event);
66 skip_in_browser = other.skip_in_browser;
54 NativeWebKeyboardEvent( const NativeWebKeyboardEvent& other) argument
61 operator =( const NativeWebKeyboardEvent& other) argument
H A Dnative_web_keyboard_event_aura.cc50 const NativeWebKeyboardEvent& other)
51 : WebKeyboardEvent(other),
52 os_event(CopyEvent(other.os_event)),
53 skip_in_browser(other.skip_in_browser),
90 const NativeWebKeyboardEvent& other) {
91 WebKeyboardEvent::operator=(other);
93 os_event = CopyEvent(other.os_event);
94 skip_in_browser = other.skip_in_browser;
95 match_edit_command = other.match_edit_command;
49 NativeWebKeyboardEvent( const NativeWebKeyboardEvent& other) argument
89 operator =( const NativeWebKeyboardEvent& other) argument
/external/chromium_org/content/browser/shared_worker/
H A Dshared_worker_instance.cc27 SharedWorkerInstance::SharedWorkerInstance(const SharedWorkerInstance& other) argument
28 : url_(other.url_),
29 name_(other.name_),
30 content_security_policy_(other.content_security_policy_),
31 security_policy_type_(other.security_policy_type_),
32 resource_context_(other.resource_context_),
33 partition_id_(other.partition_id_) {
61 bool SharedWorkerInstance::Matches(const SharedWorkerInstance& other) const {
62 return Matches(other.url(),
63 other
[all...]
/external/chromium_org/content/common/cursors/
H A Dwebcursor_aurawin.cc46 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
57 void WebCursor::CopyPlatformData(const WebCursor& other) { argument
H A Dwebcursor_aurax11.cc64 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
75 void WebCursor::CopyPlatformData(const WebCursor& other) { argument
78 platform_cursor_ = other.platform_cursor_;
82 device_scale_factor_ = other.device_scale_factor_;
H A Dwebcursor_ozone.cc56 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
67 void WebCursor::CopyPlatformData(const WebCursor& other) { argument
70 platform_cursor_ = other.platform_cursor_;
74 device_scale_factor_ = other.device_scale_factor_;
/external/chromium_org/content/public/browser/
H A Dnotification_details.h22 NotificationDetails(const NotificationDetails& other) : ptr_(other.ptr_) {} argument
30 bool operator!=(const NotificationDetails& other) const {
31 return ptr_ != other.ptr_;
34 bool operator==(const NotificationDetails& other) const {
35 return ptr_ == other.ptr_;
51 Details(const NotificationDetails& other) // NOLINT argument
52 : NotificationDetails(other) {}
H A Dnotification_source.h21 NotificationSource(const NotificationSource& other) : ptr_(other.ptr_) {} argument
29 bool operator!=(const NotificationSource& other) const {
30 return ptr_ != other.ptr_;
32 bool operator==(const NotificationSource& other) const {
33 return ptr_ == other.ptr_;
49 Source(const NotificationSource& other) // NOLINT argument
50 : NotificationSource(other) {}
/external/chromium_org/courgette/
H A Dregion.h36 Region(const Region& other) : start_(other.start_), length_(other.length_) {} argument
38 // Assignment 'operator' makes |this| region the same as |other|.
39 Region& assign(const Region& other) { argument
40 this->start_ = other.start_;
41 this->length_ = other.length_;
/external/chromium_org/extensions/common/permissions/
H A Dmanifest_permission_set_unittest.cc44 const MockManifestPermission* other = variable
46 EXPECT_EQ(name_, other->name_);
52 const MockManifestPermission* other = variable
54 EXPECT_EQ(name_, other->name_);
60 const MockManifestPermission* other = variable
62 EXPECT_EQ(name_, other->name_);
/external/chromium_org/mojo/public/cpp/bindings/
H A Dinterface_request.h19 InterfaceRequest(RValue other) { argument
20 handle_ = other.object->handle_.Pass();
22 InterfaceRequest& operator=(RValue other) { argument
23 handle_ = other.object->handle_.Pass();
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dmessage.cc42 void Message::Swap(Message* other) { argument
43 std::swap(data_num_bytes_, other->data_num_bytes_);
44 std::swap(data_, other->data_);
45 std::swap(handles_, other->handles_);
/external/chromium_org/mojo/system/
H A Dmemory_unittest.cc49 UserPointer<int64_t> other(my_int64_array_ptr.At(3));
50 EXPECT_FALSE(other.IsNull());
51 EXPECT_EQ(789, other.Get());
54 other = my_int64_array_ptr;
55 EXPECT_FALSE(other.IsNull());
56 EXPECT_EQ(456, other.Get());
59 other = NullUserPointer();
60 EXPECT_TRUE(other.IsNull());
63 other = MakeUserPointer(&my_int64_array[1]);
64 other
81 UserPointer<int32_t> other; local
157 UserPointer<int32_t> other; local
[all...]
/external/chromium_org/net/cert/
H A Dcert_verify_result.h27 // Copies from |other| to |this|.
28 void CopyFrom(const CertVerifyResult& other) { argument
29 *this = other;
/external/chromium_org/ppapi/cpp/
H A Dcompositor.cc33 const Compositor& other) : Resource(other) {
32 Compositor( const Compositor& other) argument
H A Ddirectory_entry.cc24 DirectoryEntry::DirectoryEntry(const DirectoryEntry& other) { argument
25 data_.file_ref = other.data_.file_ref;
26 data_.file_type = other.data_.file_type;
37 const DirectoryEntry& other) {
40 data_ = other.data_;
36 operator =( const DirectoryEntry& other) argument
H A Dfile_system.cc29 FileSystem::FileSystem(const FileSystem& other) : Resource(other) { argument
H A Dimage_data.cc29 ImageData::ImageData(const ImageData& other) argument
30 : Resource(other),
31 desc_(other.desc_),
32 data_(other.data_) {
58 ImageData& ImageData::operator=(const ImageData& other) { argument
59 Resource::operator=(other);
60 desc_ = other.desc_;
61 data_ = other.data_;
H A Dmessage_loop.cc33 MessageLoop::MessageLoop(const MessageLoop& other) argument
34 : Resource(other) {
/external/chromium_org/ppapi/cpp/dev/
H A Dbuffer_dev.cc25 Buffer_Dev::Buffer_Dev(const Buffer_Dev& other) argument
26 : Resource(other) {
H A Dfile_chooser_dev.cc43 FileChooser_Dev::FileChooser_Dev(const FileChooser_Dev& other) argument
44 : Resource(other) {
H A Dwidget_dev.cc32 Widget_Dev::Widget_Dev(const Widget_Dev& other) : Resource(other) { argument

Completed in 491 milliseconds

1234567891011>>