HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 76 - 100 of 5794) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/i18n/unicode/
tmutamt.h 69 TimeUnitAmount(const TimeUnitAmount& other);
76 TimeUnitAmount& operator=(const TimeUnitAmount& other);
96 * @param other the object to compare to.
100 virtual UBool operator==(const UObject& other) const;
105 * @param other the object to compare to.
109 UBool operator!=(const UObject& other) const;
134 * other classes have different class IDs.
158 TimeUnitAmount::operator!=(const UObject& other) const {
159 return !operator==(other);
  /external/chromium_org/ui/gfx/geometry/
vector2d.cc 17 void Vector2d::Add(const Vector2d& other) {
18 x_ += other.x_;
19 y_ += other.y_;
22 void Vector2d::Subtract(const Vector2d& other) {
23 x_ -= other.x_;
24 y_ -= other.y_;
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstLiteral32.java 38 public final boolean equals(Object other) {
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral32) other).bits;
52 protected int compareTo0(Constant other) {
53 int otherBits = ((CstLiteral32) other).bits;
CstLiteral64.java 38 public final boolean equals(Object other) {
39 return (other != null) &&
40 (getClass() == other.getClass()) &&
41 bits == ((CstLiteral64) other).bits;
52 protected int compareTo0(Constant other) {
53 long otherBits = ((CstLiteral64) other).bits;
  /external/icu/icu4c/source/i18n/unicode/
tmutamt.h 69 TimeUnitAmount(const TimeUnitAmount& other);
76 TimeUnitAmount& operator=(const TimeUnitAmount& other);
96 * @param other the object to compare to.
100 virtual UBool operator==(const UObject& other) const;
105 * @param other the object to compare to.
109 UBool operator!=(const UObject& other) const;
134 * other classes have different class IDs.
158 TimeUnitAmount::operator!=(const UObject& other) const {
159 return !operator==(other);
  /external/chromium_org/ppapi/cpp/
point.h 93 /// 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) together by adding their x and
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportDescription.h 99 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.orientatio
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipRects.h 11 * documentation and/or other materials provided with the distribution.
41 static PassRefPtr<ClipRects> create(const ClipRects& other)
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)
89 m_overflowClipRect = other.overflowClipRect()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserMode.cpp 54 CSSParserContext::CSSParserContext(const CSSParserContext& other, UseCounter* useCounter)
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.m_charse
    [all...]
  /cts/tools/dasm/src/java_cup/
terminal_set.java 26 * @param other the set we are cloning from.
28 public terminal_set(terminal_set other)
31 not_null(other);
32 _elements = (BitSet)other._elements.clone();
96 * @param other the set we are testing against.
98 public boolean is_subset_of(terminal_set other)
101 not_null(other);
103 /* make a copy of the other set */
104 BitSet copy_other = (BitSet)other._elements.clone();
110 return copy_other.equals(other._elements)
    [all...]
  /external/chromium_org/tools/gn/
label.h 15 // 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) const
    [all...]
  /external/chromium_org/content/public/browser/
notification_details.h 22 NotificationDetails(const NotificationDetails& other) : ptr_(other.ptr_) {}
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
52 : NotificationDetails(other) {}
  /external/chromium_org/net/websockets/
websocket_extension.cc 22 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/
view_dev.h 17 ViewDev(const View& other) : View(other) {}
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableDouble.cpp 12 * 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/
CSSTimingFunctionValue.cpp 11 * 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/
TextRunIterator.h 11 // in the documentation and/or other materials provided with the
50 TextRunIterator(const TextRunIterator& other)
51 : m_textRun(other.m_textRun)
52 , m_offset(other.m_offset)
63 bool operator==(const TextRunIterator& other)
65 return m_offset == other.m_offset && m_textRun == other.m_textRun;
68 bool operator!=(const TextRunIterator& other) { return !operator==(other); }
  /external/clang/test/SemaTemplate/
typo-dependent-name.cpp 15 bool f(T other) {
16 return this->inner < other;
  /external/deqp/framework/randomshaders/
rsgProgramGenerator.hpp 42 ProgramGenerator (const ProgramGenerator& other);
43 ProgramGenerator& operator= (const ProgramGenerator& other);
  /external/deqp/modules/gles2/accuracy/
es2aAccuracyTests.hpp 45 AccuracyTests (const AccuracyTests& other);
46 AccuracyTests& operator= (const AccuracyTests& other);
es2aTextureFilteringTests.hpp 45 TextureFilteringTests (const TextureFilteringTests& other);
46 TextureFilteringTests& operator= (const TextureFilteringTests& other);
es2aTextureMipmapTests.hpp 45 TextureMipmapTests (const TextureMipmapTests& other);
46 TextureMipmapTests& operator= (const TextureMipmapTests& other);
es2aVaryingInterpolationTests.hpp 45 VaryingInterpolationTests (const VaryingInterpolationTests& other);
46 VaryingInterpolationTests& operator= (const VaryingInterpolationTests& other);
  /external/deqp/modules/gles2/functional/
es2fBlendTests.hpp 45 BlendTests (const BlendTests& other);
46 BlendTests& operator= (const BlendTests& other);
es2fBufferWriteTests.hpp 45 BufferWriteTests (const BufferWriteTests& other);
46 BufferWriteTests& operator= (const BufferWriteTests& other);

Completed in 859 milliseconds

1 2 34 5 6 7 8 91011>>