Searched defs:other (Results 126 - 150 of 1518) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCryptoKey.cpp12 * in the documentation and/or other materials provided with the
108 void WebCryptoKey::assign(const WebCryptoKey& other) argument
110 m_private = other.m_private;
H A DWebData.cpp12 * in the documentation and/or other materials provided with the
43 void WebData::assign(const WebData& other) argument
45 m_private = other.m_private;
H A DWebMediaStreamTrackSourcesRequest.cpp11 * documentation and/or other materials provided with the distribution.
55 void WebMediaStreamTrackSourcesRequest::assign(const WebMediaStreamTrackSourcesRequest& other) argument
57 m_private = other.m_private;
H A DWebPermissionCallbacks.cpp37 void WebPermissionCallbacks::assign(const WebPermissionCallbacks& other) argument
39 m_private = other.m_private;
H A DWebRTCConfiguration.cpp12 * in the documentation and/or other materials provided with the
47 void WebRTCICEServer::assign(const WebRTCICEServer& other) argument
49 m_private = other.m_private;
80 void WebRTCConfiguration::assign(const WebRTCConfiguration& other) argument
82 m_private = other.m_private;
H A DWebRTCOfferOptions.cpp17 void WebRTCOfferOptions::assign(const WebRTCOfferOptions& other) argument
19 m_private = other.m_private;
H A DWebRTCSessionDescription.cpp12 * in the documentation and/or other materials provided with the
69 void WebRTCSessionDescription::assign(const WebRTCSessionDescription& other) argument
71 m_private = other.m_private;
H A DWebRTCSessionDescriptionRequest.cpp12 * in the documentation and/or other materials provided with the
60 void WebRTCSessionDescriptionRequest::assign(const WebRTCSessionDescriptionRequest& other) argument
62 m_private = other.m_private;
H A DWebRTCStatsRequest.cpp12 * in the documentation and/or other materials provided with the
49 void WebRTCStatsRequest::assign(const WebRTCStatsRequest& other) argument
51 m_private = other.m_private;
H A DWebRTCVoidRequest.cpp12 * in the documentation and/or other materials provided with the
59 void WebRTCVoidRequest::assign(const WebRTCVoidRequest& other) argument
61 m_private = other.m_private;
H A DWebSocketStreamError.cpp12 * in the documentation and/or other materials provided with the
44 void WebSocketStreamError::assign(const WebSocketStreamError& other) argument
46 m_private = other.m_private;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterOperations.h11 * documentation and/or other materials provided with the distribution.
43 FilterOperations(const FilterOperations& other) { *this = other; } argument
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextRunIterator.h11 // in the documentation and/or other materials provided with the
50 TextRunIterator(const TextRunIterator& other) argument
51 : m_textRun(other.m_textRun)
52 , m_offset(other.m_offset)
63 bool operator==(const TextRunIterator& other) argument
65 return m_offset == other.m_offset && m_textRun == other.m_textRun;
68 bool operator!=(const TextRunIterator& other) { return !operator==(other); } argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebArrayBufferView.cpp12 * documentation and/or other materials provided with the distribution.
37 void WebArrayBufferView::assign(const WebArrayBufferView& other) argument
39 m_private = other.m_private;
H A DWebDOMError.cpp12 * in the documentation and/or other materials provided with the
51 void WebDOMError::assign(const WebDOMError& other) argument
53 m_private = other.m_private;
H A DWebElementCollection.cpp13 * in the documentation and/or other materials provided with the
47 void WebElementCollection::assign(const WebElementCollection& other) argument
49 m_private = other.m_private;
H A DWebGeolocationError.cpp12 * documentation and/or other materials provided with the distribution.
39 void WebGeolocationError::assign(const WebGeolocationError& other) argument
41 m_private = other.m_private;
H A DWebIDBKeyRange.cpp12 * documentation and/or other materials provided with the distribution.
35 void WebIDBKeyRange::assign(const WebIDBKeyRange& other) argument
37 m_private = other.m_private;
H A DWebMediaDevicesRequest.cpp11 * documentation and/or other materials provided with the distribution.
75 bool WebMediaDevicesRequest::equals(const WebMediaDevicesRequest& other) const
77 if (isNull() || other.isNull())
79 return m_private.get() == other.m_private.get();
82 void WebMediaDevicesRequest::assign(const WebMediaDevicesRequest& other) argument
84 m_private = other.m_private;
H A DWebSpeechRecognitionHandle.cpp11 * documentation and/or other materials provided with the distribution.
38 void WebSpeechRecognitionHandle::assign(const WebSpeechRecognitionHandle& other) argument
40 m_private = other.m_private;
43 bool WebSpeechRecognitionHandle::equals(const WebSpeechRecognitionHandle& other) const
45 return m_private.get() == other.m_private.get();
48 bool WebSpeechRecognitionHandle::lessThan(const WebSpeechRecognitionHandle& other) const
50 return m_private.get() < other.m_private.get();
H A DWebUserGestureToken.cpp12 * in the documentation and/or other materials provided with the
63 void WebUserGestureToken::assign(const WebUserGestureToken& other) argument
65 m_token = other.m_token;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DBitVector.h11 * documentation and/or other materials provided with the distribution.
53 // On the other hand, this BitVector class may not be the fastest around, since
71 BitVector(const BitVector& other) argument
74 (*this) = other;
85 BitVector& operator=(const BitVector& other) argument
87 if (isInline() && other.isInline())
88 m_bitsOrPointer = other.m_bitsOrPointer;
90 setSlow(other);
223 void setSlow(const BitVector& other);
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddiy-fp.cc10 // disclaimer in the documentation and/or other materials provided
37 void DiyFp::Multiply(const DiyFp& other) { argument
45 uint64_t c = other.f_ >> 32;
46 uint64_t d = other.f_ & kM32;
56 e_ += other.e_ + 64;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebMediaConstraints.h12 * in the documentation and/or other materials provided with the
62 WebMediaConstraints(const WebMediaConstraints& other) { assign(other); } argument
65 WebMediaConstraints& operator=(const WebMediaConstraints& other) argument
67 assign(other);
H A DWebMediaDeviceInfo.h11 * documentation and/or other materials provided with the distribution.
47 WebMediaDeviceInfo(const WebMediaDeviceInfo& other) { assign(other); } argument
50 WebMediaDeviceInfo& operator=(const WebMediaDeviceInfo& other) argument
52 assign(other);

Completed in 209 milliseconds

1234567891011>>