Searched defs:other (Results 26 - 50 of 1389) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/cpp/dev/
H A Ddevice_ref_dev.cc29 DeviceRef_Dev::DeviceRef_Dev(const DeviceRef_Dev& other) : Resource(other) { argument
H A Dvar_resource_dev.cc42 VarResource_Dev::VarResource_Dev(const VarResource_Dev& other) : Var(other) {} argument
46 VarResource_Dev& VarResource_Dev::operator=(const VarResource_Dev& other) { argument
47 Var::operator=(other);
51 Var& VarResource_Dev::operator=(const Var& other) { argument
52 if (other.is_resource()) {
53 Var::operator=(other);
/external/chromium_org/ppapi/cpp/private/
H A Dvideo_frame_private.cc29 VideoFrame_Private::VideoFrame_Private(const VideoFrame_Private& other) argument
31 set_image_data(other.image_data());
32 set_timestamp(other.timestamp());
39 const VideoFrame_Private& other) {
40 if (this == &other)
43 set_image_data(other.image_data());
44 set_timestamp(other.timestamp());
38 operator =( const VideoFrame_Private& other) argument
/external/chromium_org/ppapi/cpp/
H A Durl_response_info.cc21 URLResponseInfo::URLResponseInfo(const URLResponseInfo& other) argument
22 : Resource(other) {
/external/chromium_org/ppapi/shared_impl/
H A Dscoped_pp_var.h26 ScopedPPVar(const ScopedPPVar& other);
31 ScopedPPVar& operator=(const ScopedPPVar& other) { argument
32 return operator=(other.var_);
/external/chromium_org/remoting/host/win/
H A Dwindow_station_and_desktop.cc33 void WindowStationAndDesktop::Swap(WindowStationAndDesktop& other) { argument
34 std::swap(desktop_, other.desktop_);
35 std::swap(window_station_, other.window_station_);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DArrayValue.cpp12 * documentation and/or other materials provided with the distribution.
34 ArrayValue& ArrayValue::operator=(const ArrayValue& other) argument
36 m_array = other.m_array;
37 m_isolate = other.m_isolate;
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableDouble.cpp12 * in the documentation and/or other materials provided with the
47 const AnimatableDouble* other = toAnimatableDouble(value); local
48 ASSERT(m_constraint == other->m_constraint);
49 if ((m_constraint == InterpolationIsNonContinuousWithZero) && (!m_number || !other->m_number))
51 return AnimatableDouble::create(blend(m_number, other->m_number, fraction));
59 const AnimatableDouble* other = toAnimatableDouble(value); local
60 if (!other->m_number)
63 return AnimatableDouble::create(m_number + other->m_number);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRuleFeature.cpp70 void RuleFeatureSet::add(const RuleFeatureSet& other) argument
72 HashSet<AtomicString>::const_iterator end = other.idsInRules.end();
73 for (HashSet<AtomicString>::const_iterator it = other.idsInRules.begin(); it != end; ++it)
75 end = other.classesInRules.end();
76 for (HashSet<AtomicString>::const_iterator it = other.classesInRules.begin(); it != end; ++it)
78 end = other.attrsInRules.end();
79 for (HashSet<AtomicString>::const_iterator it = other.attrsInRules.begin(); it != end; ++it)
81 siblingRules.append(other.siblingRules);
82 uncommonAttributeRules.append(other.uncommonAttributeRules);
83 m_usesFirstLineRules = m_usesFirstLineRules || other
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebThreadSafeData.cpp12 * in the documentation and/or other materials provided with the
45 void WebThreadSafeData::assign(const WebThreadSafeData& other) argument
47 m_private = other.m_private;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebNodeList.cpp12 * in the documentation and/or other materials provided with the
49 void WebNodeList::assign(const WebNodeList& other) argument
51 NodeList* p = const_cast<NodeList*>(other.m_private);
H A DWebSpeechGrammar.cpp11 * documentation and/or other materials provided with the distribution.
39 void WebSpeechGrammar::assign(const WebSpeechGrammar& other) argument
41 m_private = other.m_private;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebRTCStatsRequest.h12 * in the documentation and/or other materials provided with the
72 WebRTCStatsRequest(const WebRTCStatsRequest& other) { assign(other); } argument
75 WebRTCStatsRequest& operator=(const WebRTCStatsRequest& other) argument
77 assign(other);
H A DWebRTCStatsResponse.h11 * documentation and/or other materials provided with the distribution.
40 WebRTCStatsResponse(const WebRTCStatsResponse& other) { assign(other); } argument
44 WebRTCStatsResponse& operator=(const WebRTCStatsResponse& other) argument
46 assign(other);
H A DWebSocketStreamError.h12 * in the documentation and/or other materials provided with the
50 WebSocketStreamError(const WebSocketStreamError& other) { assign(other); } argument
H A DWebSpeechSynthesisVoice.h11 * documentation and/or other materials provided with the distribution.
42 WebSpeechSynthesisVoice(const WebSpeechSynthesisVoice& other) { assign(other); } argument
45 WebSpeechSynthesisVoice& operator=(const WebSpeechSynthesisVoice& other) argument
47 assign(other);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebSpeechInputResult.h12 * documentation and/or other materials provided with the distribution.
40 // This class holds one speech recognition result including the text and other related
45 WebSpeechInputResult(const WebSpeechInputResult& other) { assign(other); } argument
48 WebSpeechInputResult& operator=(const WebSpeechInputResult& other) argument
50 assign(other);
55 BLINK_EXPORT void assign(const WebSpeechInputResult& other);
/external/chromium_org/third_party/icu/source/common/
H A Ddtintrv.cpp32 DateInterval::DateInterval(const DateInterval& other) argument
33 : UObject(other) {
34 *this = other;
39 DateInterval::operator=(const DateInterval& other) { argument
40 if ( this != &other ) {
41 fromDate = other.fromDate;
42 toDate = other.toDate;
55 DateInterval::operator==(const DateInterval& other) const {
56 return ( fromDate == other.fromDate && toDate == other
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dcurramt.cpp30 CurrencyAmount::CurrencyAmount(const CurrencyAmount& other) : argument
31 Measure(other) {
34 CurrencyAmount& CurrencyAmount::operator=(const CurrencyAmount& other) { argument
35 Measure::operator=(other);
/external/chromium_org/ui/gfx/
H A Dvector2d.cc17 void Vector2d::Add(const Vector2d& other) { argument
18 x_ += other.x_;
19 y_ += other.y_;
22 void Vector2d::Subtract(const Vector2d& other) { argument
23 x_ -= other.x_;
24 y_ -= other.y_;
/external/chromium_org/webkit/common/cursors/
H A Dwebcursor_android.cc21 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
28 void WebCursor::CopyPlatformData(const WebCursor& other) { argument
/external/doclava/src/com/google/doclava/
H A DSorter.java28 public int compareTo(Object other) { argument
29 return label.compareToIgnoreCase(((Sorter) other).label);
/external/eigen/Eigen/src/Core/
H A DCommaInitializer.h40 inline CommaInitializer(XprType& xpr, const DenseBase<OtherDerived>& other) argument
41 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows())
43 m_xpr.block(0, 0, other.rows(), other.cols()) = other;
66 CommaInitializer& operator,(const DenseBase<OtherDerived>& other)
72 m_currentBlockRows = other.rows();
78 eigen_assert(m_currentBlockRows==other.rows());
82 (m_row, m_col) = other;
[all...]
/external/eigen/Eigen/src/Eigen2Support/
H A DLazy.h54 EvalBeforeAssigningBit>& other)
56 other._expression().derived().addTo(derived()); return derived();
64 EvalBeforeAssigningBit>& other)
66 other._expression().derived().subTo(derived()); return derived();
53 operator +=(const Flagged<ProductBase<ProductDerived, Lhs,Rhs>, 0, EvalBeforeAssigningBit>& other) argument
63 operator -=(const Flagged<ProductBase<ProductDerived, Lhs,Rhs>, 0, EvalBeforeAssigningBit>& other) argument
/external/eigen/doc/
H A Dtutorial.cpp50 Eigen::Matrix4f other = (m4 * m4).lazy(); // forces lazy evaluation local

Completed in 480 milliseconds

1234567891011>>