Searched defs:other (Results 101 - 125 of 1518) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/cpp/private/
H A Dvideo_destination_private.cc38 const VideoDestination_Private& other)
39 : Resource(other) {
37 VideoDestination_Private( const VideoDestination_Private& other) argument
H A Dvideo_source_private.cc35 VideoSource_Private::VideoSource_Private(const VideoSource_Private& other) argument
36 : Resource(other) {
/external/chromium_org/ppapi/cpp/
H A Dresource.cc17 Resource::Resource(const Resource& other) : pp_resource_(other.pp_resource_) { argument
27 Resource& Resource::operator=(const Resource& other) { argument
28 if (!other.is_null())
29 Module::Get()->core()->AddRefResource(other.pp_resource_);
32 pp_resource_ = other.pp_resource_;
H A Dvar_array.cc46 VarArray::VarArray(const VarArray& other) : Var(other) { argument
52 VarArray& VarArray::operator=(const VarArray& other) { argument
53 Var::operator=(other);
57 Var& VarArray::operator=(const Var& other) { argument
58 if (other.is_array()) {
59 Var::operator=(other);
H A Dvar_array_buffer.cc38 pp::VarArrayBuffer& VarArrayBuffer::operator=(const VarArrayBuffer& other) { argument
39 Var::operator=(other);
43 pp::Var& VarArrayBuffer::operator=(const Var& other) { argument
44 if (other.is_array_buffer()) {
45 return Var::operator=(other);
H A Dvar_dictionary.cc46 VarDictionary::VarDictionary(const VarDictionary& other) argument
47 : Var(other) {
54 const VarDictionary& other) {
55 Var::operator=(other);
59 Var& VarDictionary::operator=(const Var& other) { argument
60 if (other.is_dictionary()) {
61 Var::operator=(other);
53 operator =( const VarDictionary& other) argument
H A Dvideo_frame.cc23 VideoFrame::VideoFrame(const VideoFrame& other) : Resource(other) { argument
/external/chromium_org/ppapi/cpp/trusted/
H A Dfile_chooser_trusted.cc41 FileChooser_Trusted::FileChooser_Trusted(const FileChooser_Trusted& other) argument
42 : FileChooser_Dev(other),
43 save_as_(other.save_as_),
44 suggested_file_name_(other.suggested_file_name_) {
48 const FileChooser_Trusted& other) {
49 FileChooser_Dev::operator=(other);
50 save_as_ = other.save_as_;
51 suggested_file_name_ = other.suggested_file_name_;
47 operator =( const FileChooser_Trusted& other) argument
/external/chromium_org/ppapi/shared_impl/
H A Dscoped_pp_resource.cc27 ScopedPPResource::ScopedPPResource(const ScopedPPResource& other) argument
28 : id_(other.id_) {
H A Dscoped_pp_var.h29 ScopedPPVar(const ScopedPPVar& other);
34 ScopedPPVar& operator=(const ScopedPPVar& other) { argument
35 return operator=(other.var_);
/external/chromium_org/printing/
H A Dpage_number.cc25 void PageNumber::operator=(const PageNumber& other) { argument
26 ranges_ = other.ranges_;
27 page_number_ = other.page_number_;
28 page_range_index_ = other.page_range_index_;
29 document_page_count_ = other.document_page_count_;
74 bool PageNumber::operator==(const PageNumber& other) const {
75 return page_number_ == other.page_number_ &&
76 page_range_index_ == other.page_range_index_;
78 bool PageNumber::operator!=(const PageNumber& other) const {
79 return page_number_ != other
[all...]
/external/chromium_org/storage/browser/blob/
H A Dblob_data_handle.cc47 BlobDataHandle::BlobDataHandle(const BlobDataHandle& other) { argument
48 io_task_runner_ = other.io_task_runner_;
49 shared_ = other.shared_;
/external/chromium_org/storage/common/blob/
H A Dscoped_file.cc32 ScopedFile::ScopedFile(RValue other) { argument
33 MoveFrom(*other.object);
76 void ScopedFile::MoveFrom(ScopedFile& other) { argument
79 scope_out_policy_ = other.scope_out_policy_;
80 scope_out_callbacks_.swap(other.scope_out_callbacks_);
81 file_task_runner_ = other.file_task_runner_;
82 path_ = other.Release();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DRetainedDOMInfo.cpp12 * in the documentation and/or other materials provided with the
54 bool RetainedDOMInfo::IsEquivalent(v8::RetainedObjectInfo* other) argument
56 ASSERT(other);
57 if (other == this)
59 if (strcmp(GetLabel(), other->GetLabel()))
61 return static_cast<blink::RetainedObjectInfo*>(other)->GetEquivalenceClass() == this->GetEquivalenceClass();
H A DSharedPersistent.h12 * in the documentation and/or other materials provided with the
57 bool operator==(const SharedPersistent<T>& other) argument
59 return m_value == other.m_value;
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInterpolableValue.cpp59 PassOwnPtrWillBeRawPtr<InterpolableValue> InterpolableAnimatableValue::interpolate(const InterpolableValue &other, const double percentage) const argument
61 const InterpolableAnimatableValue& otherValue = toInterpolableAnimatableValue(other);
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserMode.cpp54 CSSParserContext::CSSParserContext(const CSSParserContext& other, UseCounter* useCounter) argument
55 : m_baseURL(other.m_baseURL)
56 , m_charset(other.m_charset)
57 , m_mode(other.m_mode)
58 , m_referrer(other.m_referrer)
59 , m_isHTMLDocument(other.m_isHTMLDocument)
60 , m_useLegacyBackgroundSizeShorthandBehavior(other.m_useLegacyBackgroundSizeShorthandBehavior)
65 bool CSSParserContext::operator==(const CSSParserContext& other) const
67 return m_baseURL == other.m_baseURL
68 && m_charset == other
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeRenderingTraversal.h49 bool operator==(const ParentDetails& other) argument
51 return m_insertionPoint == other.m_insertionPoint;
H A DStyleSheetCollection.cpp42 void StyleSheetCollection::swap(StyleSheetCollection& other) argument
44 m_styleSheetsForStyleSheetList.swap(other.m_styleSheetsForStyleSheetList);
45 m_activeAuthorStyleSheets.swap(other.m_activeAuthorStyleSheets);
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DContentDistribution.cpp34 void ContentDistribution::swap(ContentDistribution& other) argument
36 m_nodes.swap(other.m_nodes);
37 m_indices.swap(other.m_indices);
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceOwner.h12 * in the documentation and/or other materials provided with the
49 ResourceOwner(const ResourceOwner& other) { setResource(other.resource()); } argument
55 ResourceOwner& operator=(const ResourceOwner& other);
106 inline ResourceOwner<R, C>& ResourceOwner<R, C>::operator=(const ResourceOwner<R, C>& other) argument
108 if (this == &other)
110 setResource(other.resource());
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageScaleConstraints.cpp12 * in the documentation and/or other materials provided with the
44 void PageScaleConstraints::overrideWith(const PageScaleConstraints& other) argument
46 if (other.initialScale != -1) {
47 initialScale = other.initialScale;
49 minimumScale = std::min(minimumScale, other.initialScale);
51 if (other.minimumScale != -1)
52 minimumScale = other.minimumScale;
53 if (other.maximumScale != -1)
54 maximumScale = other.maximumScale;
55 if (!other
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestingTransformState.h11 * documentation and/or other materials provided with the distribution.
50 static PassRefPtr<HitTestingTransformState> create(const HitTestingTransformState& other) argument
52 return adoptRef(new HitTestingTransformState(other));
80 HitTestingTransformState(const HitTestingTransformState& other) argument
82 , m_lastPlanarPoint(other.m_lastPlanarPoint)
83 , m_lastPlanarQuad(other.m_lastPlanarQuad)
84 , m_lastPlanarArea(other.m_lastPlanarArea)
85 , m_accumulatedTransform(other.m_accumulatedTransform)
86 , m_accumulatingTransform(other.m_accumulatingTransform)
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DNinePieceImage.cpp67 NinePieceImageData::NinePieceImageData(const NinePieceImageData& other) argument
69 , fill(other.fill)
70 , horizontalRule(other.horizontalRule)
71 , verticalRule(other.verticalRule)
72 , image(other.image)
73 , imageSlices(other.imageSlices)
74 , borderSlices(other.borderSlices)
75 , outset(other.outset)
79 bool NinePieceImageData::operator==(const NinePieceImageData& other) const
81 return dataEquivalent(image, other
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCredential.cpp17 void WebCredential::assign(const WebCredential& other) argument
19 m_platformCredential = other.m_platformCredential;

Completed in 3717 milliseconds

1234567891011>>