Searched refs:other (Results 76 - 100 of 3814) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/web/
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();
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DError.cpp35 Error::Error(const Error &other) argument
36 : mCode(other.mCode),
37 mMessage(other.mMessage)
41 Error &Error::operator=(const Error &other) argument
43 mCode = other.mCode;
44 mMessage = other.mMessage;
/external/chromium_org/ui/gfx/geometry/
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/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstLiteral32.java38 public final boolean equals(Object other) { argument
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral32) other).bits;
52 protected int compareTo0(Constant other) { argument
53 int otherBits = ((CstLiteral32) other).bits;
H A DCstLiteral64.java38 public final boolean equals(Object other) { argument
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral64) other).bits;
52 protected int compareTo0(Constant other) { argument
53 long otherBits = ((CstLiteral64) other).bits;
/external/chromium_org/ppapi/cpp/
H A Dpoint.h93 /// Adds two Points (this and other) together by adding their x values and
96 /// @param[in] other A Point.
99 Point operator+(const Point& other) const {
100 return Point(x() + other.x(), y() + other.y());
106 /// @param[in] other A Point.
109 Point operator-(const Point& other) const {
110 return Point(x() - other.x(), y() - other.y());
113 /// Adds two Points (this and other) togethe
119 operator +=(const Point& other) argument
131 operator -=(const Point& other) argument
140 swap(Point& other) argument
258 operator +=(const FloatPoint& other) argument
270 operator -=(const FloatPoint& other) argument
279 swap(FloatPoint& other) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DViewportDescription.h99 bool operator==(const ViewportDescription& other) const
103 return minWidth == other.minWidth
104 && maxWidth == other.maxWidth
105 && minHeight == other.minHeight
106 && maxHeight == other.maxHeight
107 && zoom == other.zoom
108 && minZoom == other.minZoom
109 && maxZoom == other.maxZoom
110 && userZoom == other.userZoom
111 && orientation == other
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DClipRects.h11 * documentation and/or other materials provided with the distribution.
41 static PassRefPtr<ClipRects> create(const ClipRects& other) argument
43 return adoptRef(new ClipRects(other));
79 bool operator==(const ClipRects& other) const
81 return m_overflowClipRect == other.overflowClipRect()
82 && m_fixedClipRect == other.fixedClipRect()
83 && m_posClipRect == other.posClipRect()
84 && fixed() == other.fixed();
87 ClipRects& operator=(const ClipRects& other) argument
89 m_overflowClipRect = other
106 ClipRects(const ClipRects& other) argument
[all...]
/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/tools/gn/
H A Dlabel.h15 // A label represents the name of a target or some other named thing in
56 // other parts of the system. SourceDirs end in slashes, but the user
66 bool operator==(const Label& other) const {
67 return name_ == other.name_ && dir_ == other.dir_ &&
68 toolchain_dir_ == other.toolchain_dir_ &&
69 toolchain_name_ == other.toolchain_name_;
71 bool operator!=(const Label& other) const {
72 return !operator==(other);
74 bool operator<(const Label& other) cons
86 swap(Label& other) argument
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Dprintable_area.js49 * @param {print_preview.PrintableArea} other Other printable area to check
53 equals: function(other) {
54 return other != null &&
55 this.origin_.equals(other.origin_) &&
56 this.size_.equals(other.size_);
/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/net/websockets/
H A Dwebsocket_extension.cc22 bool WebSocketExtension::Parameter::Equals(const Parameter& other) const {
23 return name_ == other.name_ && value_ == other.value_;
33 bool WebSocketExtension::Equals(const WebSocketExtension& other) const {
34 if (name_ != other.name_) return false;
35 if (parameters_.size() != other.parameters_.size()) return false;
36 for (size_t i = 0; i < other.parameters_.size(); ++i) {
37 if (!parameters_[i].Equals(other.parameters_[i]))
/external/chromium_org/ppapi/cpp/dev/
H A Dview_dev.h17 ViewDev(const View& other) : View(other) {} argument
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableDouble.cpp12 * in the documentation and/or other materials provided with the
41 const AnimatableDouble* other = toAnimatableDouble(value); local
42 return (m_constraint == InterpolationIsNonContinuousWithZero) && (!m_number || !other->m_number);
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));
61 const AnimatableDouble* other = toAnimatableDouble(value); local
62 return fabs(m_number - other->m_number);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSTimingFunctionValue.cpp11 * documentation and/or other materials provided with the distribution.
42 bool CSSCubicBezierTimingFunctionValue::equals(const CSSCubicBezierTimingFunctionValue& other) const
44 return m_x1 == other.m_x1 && m_x2 == other.m_x2 && m_y1 == other.m_y1 && m_y2 == other.m_y2;
68 bool CSSStepsTimingFunctionValue::equals(const CSSStepsTimingFunctionValue& other) const
70 return m_steps == other.m_steps && m_stepAtPosition == other.m_stepAtPosition;
/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/deqp/framework/randomshaders/
H A DrsgProgramGenerator.hpp42 ProgramGenerator (const ProgramGenerator& other);
43 ProgramGenerator& operator= (const ProgramGenerator& other);
/external/deqp/modules/gles2/accuracy/
H A Des2aAccuracyTests.hpp45 AccuracyTests (const AccuracyTests& other);
46 AccuracyTests& operator= (const AccuracyTests& other);
H A Des2aTextureFilteringTests.hpp45 TextureFilteringTests (const TextureFilteringTests& other);
46 TextureFilteringTests& operator= (const TextureFilteringTests& other);
H A Des2aTextureMipmapTests.hpp45 TextureMipmapTests (const TextureMipmapTests& other);
46 TextureMipmapTests& operator= (const TextureMipmapTests& other);
H A Des2aVaryingInterpolationTests.hpp45 VaryingInterpolationTests (const VaryingInterpolationTests& other);
46 VaryingInterpolationTests& operator= (const VaryingInterpolationTests& other);
/external/deqp/modules/gles2/functional/
H A Des2fBlendTests.hpp45 BlendTests (const BlendTests& other);
46 BlendTests& operator= (const BlendTests& other);
H A Des2fBufferWriteTests.hpp45 BufferWriteTests (const BufferWriteTests& other);
46 BufferWriteTests& operator= (const BufferWriteTests& other);

Completed in 1700 milliseconds

1234567891011>>