Searched defs:other (Results 226 - 250 of 1389) sorted by relevance

1234567891011>>

/external/chromium_org/net/tools/balsa/
H A Dsimple_buffer.h62 void Swap(SimpleBuffer* other) { argument
64 storage_ = other->storage_;
65 other->storage_ = tmp;
68 write_idx_ = other->write_idx_;
69 other->write_idx_ = tmp_int;
72 read_idx_ = other->read_idx_;
73 other->read_idx_ = tmp_int;
76 storage_size_ = other->storage_size_;
77 other->storage_size_ = tmp_int;
/external/chromium_org/ppapi/cpp/dev/
H A Dresource_array_dev.cc31 ResourceArray_Dev::ResourceArray_Dev(const ResourceArray_Dev& other) argument
32 : Resource(other) {
48 const ResourceArray_Dev& other) {
49 Resource::operator=(other);
47 operator =( const ResourceArray_Dev& other) argument
H A Dscrollbar_dev.cc34 Scrollbar_Dev::Scrollbar_Dev(const Scrollbar_Dev& other) argument
35 : Widget_Dev(other) {
/external/chromium_org/ppapi/cpp/extensions/
H A Doptional.h21 Optional(const Optional<T>& other) argument
22 : value_(other.value_ ? new T(*other.value_) : NULL) {
29 Optional<T>& operator=(const T& other) { argument
30 if (value_ == &other)
34 value_ = new T(other);
39 Optional<T>& operator=(const Optional<T>& other) { argument
40 if (value_ == other.value_)
44 if (other.value_)
45 value_ = new T(*other
84 Swap(Optional<T>* other) argument
[all...]
/external/chromium_org/ppapi/cpp/
H A Dhost_resolver.cc36 HostResolver::HostResolver(const HostResolver& other) : Resource(other) { argument
42 HostResolver& HostResolver::operator=(const HostResolver& other) { argument
43 Resource::operator=(other);
H A Dnet_address.cc46 NetAddress::NetAddress(const NetAddress& other) : Resource(other) { argument
52 NetAddress& NetAddress::operator=(const NetAddress& other) { argument
53 Resource::operator=(other);
H A Durl_request_info.cc29 URLRequestInfo::URLRequestInfo(const URLRequestInfo& other) argument
30 : Resource(other) {
/external/chromium_org/ppapi/cpp/private/
H A Dvar_private.h34 VarPrivate(const Var& other) : Var(other) {} argument
/external/chromium_org/skia/ext/
H A Drefptr.h35 // by other objects (i.e. does not have one that needs to be adopted) use the
49 RefPtr(const RefPtr& other) argument
50 : ptr_(other.get()) {
55 RefPtr(const RefPtr<U>& other) argument
56 : ptr_(other.get()) {
64 RefPtr& operator=(const RefPtr& other) { argument
65 SkRefCnt_SafeAssign(ptr_, other.get());
70 RefPtr& operator=(const RefPtr<U>& other) { argument
71 SkRefCnt_SafeAssign(ptr_, other.get());
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScopedPersistent.h12 * in the documentation and/or other materials provided with the
79 bool operator==(const ScopedPersistent<T>& other) argument
81 return m_handle == other.m_handle;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPropertySourceData.cpp12 * in the documentation and/or other materials provided with the
72 CSSPropertySourceData::CSSPropertySourceData(const CSSPropertySourceData& other) argument
73 : name(other.name)
74 , value(other.value)
75 , important(other.important)
76 , disabled(other.disabled)
77 , parsedOk(other.parsedOk)
78 , range(other.range)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPendingScript.h11 * documentation and/or other materials provided with the distribution.
61 PendingScript(const PendingScript& other) argument
62 : ResourceOwner(other)
63 , m_watchingForLoad(other.m_watchingForLoad)
64 , m_element(other.m_element)
65 , m_startingPosition(other.m_startingPosition)
67 setScriptResource(other.resource());
72 PendingScript& operator=(const PendingScript& other) argument
74 if (this == &other)
77 m_watchingForLoad = other
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
H A DKeyframeValueList.h12 * documentation and/or other materials provided with the distribution.
55 KeyframeValueList(const KeyframeValueList& other) argument
56 : m_property(other.property())
58 for (size_t i = 0; i < other.m_values.size(); ++i)
59 m_values.append(other.m_values[i]->clone());
62 KeyframeValueList& operator=(const KeyframeValueList& other) argument
64 KeyframeValueList copy(other);
69 void swap(KeyframeValueList& other) argument
71 std::swap(m_property, other.m_property);
72 m_values.swap(other
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestLocation.cpp84 HitTestLocation::HitTestLocation(const HitTestLocation& other, const LayoutSize& offset, RenderRegion* region) argument
85 : m_point(other.m_point)
86 , m_boundingBox(other.m_boundingBox)
87 , m_transformedPoint(other.m_transformedPoint)
88 , m_transformedRect(other.m_transformedRect)
89 , m_region(region ? region : other.m_region)
90 , m_isRectBased(other.m_isRectBased)
91 , m_isRectilinear(other.m_isRectilinear)
96 HitTestLocation::HitTestLocation(const HitTestLocation& other) argument
97 : m_point(other
111 operator =(const HitTestLocation& other) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBasicShapes.cpp13 * disclaimer in the documentation and/or other materials
39 bool BasicShape::canBlend(const BasicShape* other) const
42 if (type() != other->type())
47 && static_cast<const BasicShapePolygon*>(this)->values().size() != static_cast<const BasicShapePolygon*>(other)->values().size())
70 PassRefPtr<BasicShape> BasicShapeRectangle::blend(const BasicShape* other, double progress) const argument
72 ASSERT(type() == other->type());
74 const BasicShapeRectangle* o = static_cast<const BasicShapeRectangle*>(other);
100 PassRefPtr<BasicShape> BasicShapeCircle::blend(const BasicShape* other, double progress) const argument
102 ASSERT(type() == other->type());
104 const BasicShapeCircle* o = static_cast<const BasicShapeCircle*>(other);
127 blend(const BasicShape* other, double progress) const argument
158 blend(const BasicShape* other, double progress) const argument
200 blend(const BasicShape* other, double progress) const argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCString.cpp13 * in the documentation and/or other materials provided with the
41 int WebCString::compare(const WebCString& other) const
44 if (isNull() != other.isNull())
50 return strcmp(m_private->data(), other.m_private->data());
58 void WebCString::assign(const WebCString& other) argument
60 assign(other.m_private.get());
H A DWebRTCStatsResponse.cpp11 * documentation and/or other materials provided with the distribution.
41 void WebRTCStatsResponse::assign(const WebRTCStatsResponse& other) argument
43 m_private = other.m_private;
H A DWebSourceInfo.cpp11 * documentation and/or other materials provided with the distribution.
67 void WebSourceInfo::assign(const WebSourceInfo& other) argument
69 m_private = other.m_private;
H A DWebSpeechSynthesisUtterance.cpp12 * documentation and/or other materials provided with the distribution.
49 void WebSpeechSynthesisUtterance::assign(const WebSpeechSynthesisUtterance& other) argument
51 m_private = other.m_private;
H A DWebSpeechSynthesisVoice.cpp11 * documentation and/or other materials provided with the distribution.
40 void WebSpeechSynthesisVoice::assign(const WebSpeechSynthesisVoice& other) argument
42 m_private = other.m_private;
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
H A DImageFrame.cpp12 * documentation and/or other materials provided with the distribution.
49 ImageFrame& ImageFrame::operator=(const ImageFrame& other) argument
51 if (this == &other)
54 m_bitmap = other.m_bitmap->clone();
60 m_pixelsChanged = other.m_pixelsChanged;
61 setMemoryAllocator(other.allocator());
62 setOriginalFrameRect(other.originalFrameRect());
63 setStatus(other.status());
64 setDuration(other.duration());
65 setDisposalMethod(other
95 copyBitmapData(const ImageFrame& other) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDOMError.cpp12 * in the documentation and/or other materials provided with the
53 void WebDOMError::assign(const WebDOMError& other) argument
55 m_private = other.m_private;
H A DWebDOMFileSystem.cpp12 * in the documentation and/or other materials provided with the
58 void WebDOMFileSystem::assign(const WebDOMFileSystem& other) argument
60 m_private = other.m_private;
H A DWebPagePopupImpl.h12 * in the documentation and/or other materials provided with the
64 bool hasSamePopupClient(WebPagePopupImpl* other) { return other && m_popupClient == other->m_popupClient; } argument
H A DWebSerializedScriptValue.cpp12 * in the documentation and/or other materials provided with the
65 void WebSerializedScriptValue::assign(const WebSerializedScriptValue& other) argument
67 m_private = other.m_private;

Completed in 422 milliseconds

1234567891011>>