Searched refs:other (Results 101 - 125 of 1751) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractMapEntry.java74 Map.Entry other = (Map.Entry) obj;
75 return (getKey() == null ? other.getKey() == null : getKey().equals(other.getKey())) && (getValue() == null ? other.getValue() == null : getValue().equals(other.getValue()));
/external/smack/src/org/xbill/DNS/
H A DTSIGRecord.java29 private byte [] other; field in class:TSIGRecord
49 * @param other The other data field. Currently used only in BADTIME
56 byte other[])
65 this.other = other;
86 other = in.readByteArray(otherLen);
88 other = null;
120 if (other == null)
123 sb.append (other
54 TSIGRecord(Name name, int dclass, long ttl, Name alg, Date timeSigned, int fudge, byte [] signature, int originalID, int error, byte other[]) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DFontDescription.h79 bool operator!=(const FontDescription& other) const { return !(*this == other); }
160 inline bool FontDescription::operator==(const FontDescription& other) const
162 return m_familyList == other.m_familyList
163 && m_specifiedSize == other.m_specifiedSize
164 && m_computedSize == other.m_computedSize
165 && m_italic == other.m_italic
166 && m_smallCaps == other.m_smallCaps
167 && m_isAbsoluteSize == other.m_isAbsoluteSize
168 && m_weight == other
[all...]
H A DFloatRect.cpp12 * documentation and/or other materials provided with the distribution.
50 bool FloatRect::intersects(const FloatRect& other) const
53 return !isEmpty() && !other.isEmpty()
54 && x() < other.maxX() && other.x() < maxX()
55 && y() < other.maxY() && other.y() < maxY();
58 bool FloatRect::contains(const FloatRect& other) const
60 return x() <= other.x() && maxX() >= other
64 intersect(const FloatRect& other) argument
82 unite(const FloatRect& other) argument
100 uniteIfNonZero(const FloatRect& other) argument
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DQuotesData.cpp37 bool QuotesData::operator==(const QuotesData& other) const
39 if (this == &other)
41 if (!&other || !this)
43 if (length != other.length)
46 const String* otherData = other.data();
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptprogram_p.h52 inline bool operator==(const QScriptProgramPrivate& other) const;
53 inline bool operator!=(const QScriptProgramPrivate& other) const;
111 bool QScriptProgramPrivate::operator==(const QScriptProgramPrivate& other) const
113 return m_line == other.m_line
114 && JSStringIsEqual(m_fileName, other.m_fileName)
115 && JSStringIsEqual(m_program, other.m_program);
118 bool QScriptProgramPrivate::operator!=(const QScriptProgramPrivate& other) const
120 return m_line != other.m_line
121 || !JSStringIsEqual(m_fileName, other.m_fileName)
122 || !JSStringIsEqual(m_program, other
[all...]
/external/webkit/Source/WebCore/platform/image-decoders/cg/
H A DImageDecoderCG.cpp11 * documentation and/or other materials provided with the distribution.
41 void ImageFrame::copyReferenceToBitmapData(const ImageFrame& other) argument
43 ASSERT(this != &other);
44 m_backingStore = other.m_backingStore;
47 m_size = other.m_size;
48 setHasAlpha(other.m_hasAlpha);
51 bool ImageFrame::copyBitmapData(const ImageFrame& other) argument
53 if (this == &other)
56 m_backingStore.adoptCF(CFDataCreateMutableCopy(kCFAllocatorDefault, 0, other.m_backingStore.get()));
58 m_size = other
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGGlyphElement.h73 bool operator==(const SVGGlyphIdentifier& other) const
75 return isValid == other.isValid
76 && orientation == other.orientation
77 && arabicForm == other.arabicForm
78 && glyphName == other.glyphName
79 && horizontalAdvanceX == other.horizontalAdvanceX
80 && verticalOriginX == other.verticalOriginX
81 && verticalOriginY == other.verticalOriginY
82 && verticalAdvanceY == other.verticalAdvanceY
83 && languages == other
[all...]
/external/llvm/utils/lit/lit/
H A DShCommands.py9 def __cmp__(self, other):
10 if not isinstance(other, Command):
14 (other.args, other.redirects))
48 def __cmp__(self, other):
49 if not isinstance(other, Pipeline):
53 (other.commands, other.negate, self.pipe_err))
75 def __cmp__(self, other):
76 if not isinstance(other, Se
[all...]
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DTextPosition.h11 * documentation and/or other materials provided with the distribution.
69 bool operator==(const TextPosition& other) { return m_line == other.m_line && m_column == other.m_column; } argument
70 bool operator!=(const TextPosition& other) { return !((*this) == other); } argument
95 bool operator==(ZeroBasedNumber other) { return m_value == other.m_value; } argument
96 bool operator!=(ZeroBasedNumber other) { return !((*this) == other); } argument
116 operator ==(OneBasedNumber other) argument
117 operator !=(OneBasedNumber other) argument
[all...]
/external/blktrace/
H A Drbtree.c139 struct rb_node *other; local
145 other = parent->rb_right;
146 if (rb_is_red(other))
148 rb_set_black(other);
151 other = parent->rb_right;
153 if ((!other->rb_left || rb_is_black(other->rb_left)) &&
154 (!other->rb_right || rb_is_black(other->rb_right)))
156 rb_set_red(other);
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DInstructionOffsetValue.java141 * other InstructionOffsetValue. The values of the other InstructionOffsetValue
144 public final Value generalize(InstructionOffsetValue other) argument
146 // If the values array of either is null, return the other one.
149 return other;
152 if (other.values == null)
159 for (int index = 0; index < other.values.length; index++)
161 if (!this.contains(other.values[index]))
169 if (newLength == other.values.length)
171 return other;
222 generalize(Value other) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSphereCollisionVolume.java85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
89 if (other instanceof AABoxCollisionVolume) {
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
97 if (other instanceof SphereCollisionVolume) {
98 SphereCollisionVolume sphereOther = (SphereCollisionVolume)other;
105 final float deltaX = other.getMaxXPosition(otherFlip)
106 - other.getMinXPosition(otherFlip);
107 final float deltaY = other.getMaxYPosition(otherFlip)
108 - other.getMinYPosition(otherFlip);
129 public void growBy(CollisionVolume other) { argument
[all...]
/external/webkit/Source/JavaScriptCore/heap/
H A DStrong.h11 * documentation and/or other materials provided with the distribution.
63 Strong(const Strong& other) argument
66 if (!other.slot())
68 setSlot(HandleHeap::heapFor(other.slot())->allocate());
69 set(other.get());
72 template <typename U> Strong(const Strong<U>& other) argument
75 if (!other.slot())
77 setSlot(HandleHeap::heapFor(other.slot())->allocate());
78 set(other.get());
93 void swap(Strong& other) argument
105 operator =(const Strong<U>& other) argument
116 operator =(const Strong& other) argument
[all...]
H A DWeak.h11 * documentation and/or other materials provided with the distribution.
56 Weak(const Weak& other) argument
59 if (!other.slot())
61 setSlot(HandleHeap::heapFor(other.slot())->copyWeak(other.slot()));
64 template <typename U> Weak(const Weak<U>& other) argument
67 if (!other.slot())
69 setSlot(HandleHeap::heapFor(other.slot())->copyWeak(other.slot()));
84 void swap(Weak& other) argument
109 operator =(const Weak<U>& other) argument
117 operator =(const Weak& other) argument
[all...]
/external/eigen/Eigen/src/StlSupport/
H A Ddetails.h36 typedef aligned_allocator_indirection<U> other; typedef in struct:Eigen::aligned_allocator_indirection::rebind
65 inline workaround_msvc_stl_support(const T& other) : T(other) {} argument
69 inline T& operator=(const OtherT& other) argument
70 { T::operator=(other); return *this; }
71 inline workaround_msvc_stl_support& operator=(const workaround_msvc_stl_support& other) argument
72 { T::operator=(other); return *this; }
/external/icu4c/i18n/
H A Dcurrfmt.cpp29 CurrencyFormat::CurrencyFormat(const CurrencyFormat& other) : argument
30 MeasureFormat(other), fmt(NULL)
32 fmt = (NumberFormat*) other.fmt->clone();
39 UBool CurrencyFormat::operator==(const Format& other) const {
40 if (this == &other) {
43 if (typeid(*this) != typeid(other)) {
46 const CurrencyFormat* c = (const CurrencyFormat*) &other;
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DUserInfo.java82 UserInfo other = (UserInfo) obj;
83 if (this.userType != other.userType) {
86 if (!this.user.equalsIgnoreCase(other.user)) {
89 if (this.password != null && other.password == null)
92 if (other.password != null && this.password == null)
95 if (this.password == other.password)
98 return (this.password.equals(other.password));
/external/proguard/src/proguard/
H A DKeepClassSpecification.java105 KeepClassSpecification other = (KeepClassSpecification)object;
107 this.markClasses == other.markClasses &&
108 this.markConditionally == other.markConditionally &&
109 this.allowShrinking == other.allowShrinking &&
110 this.allowOptimization == other.allowOptimization &&
111 this.allowObfuscation == other.allowObfuscation &&
112 super.equals(other);
/external/proguard/src/proguard/optimize/info/
H A DClassOptimizationInfo.java126 public void merge(ClassOptimizationInfo other) argument
128 this.isInstantiated |= other.isInstantiated;
129 this.isInstanceofed |= other.isInstanceofed;
130 this.isDotClassed |= other.isDotClassed;
131 this.isCaught |= other.isCaught;
132 this.containsPackageVisibleMembers |= other.containsPackageVisibleMembers;
133 this.invokesPackageVisibleMembers |= other.invokesPackageVisibleMembers;
/external/chromium/ui/gfx/
H A Dpoint.h57 Point Add(const Point& other) const{
59 copy.Offset(other.x_, other.y_);
63 Point Subtract(const Point& other) const {
65 copy.Offset(-other.x_, -other.y_);
69 Point Middle(const Point& other) const {
70 return Point((x_ + other.x_) / 2, (y_ + other.y_) / 2);
84 // other
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DPODInterval.h12 * documentation and/or other materials provided with the distribution.
82 // UserData type is a pointer or other type which can be initialized
114 bool overlaps(const PODInterval& other) const
116 return overlaps(other.low(), other.high());
119 // Returns true if this interval is "less" than the other. The
121 bool operator<(const PODInterval& other) const
123 return low() < other.low();
126 // Returns true if this interval is strictly equal to the other,
128 bool operator==(const PODInterval& other) cons
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHValidationParameters.java36 DHValidationParameters other = (DHValidationParameters)o;
38 if (other.counter != this.counter)
43 return Arrays.areEqual(this.seed, other.seed);
H A DDSAValidationParameters.java41 DSAValidationParameters other = (DSAValidationParameters)o;
43 if (other.counter != this.counter)
48 return Arrays.areEqual(this.seed, other.seed);
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstKnownNull.java38 public boolean equals(Object other) { argument
39 return (other instanceof CstKnownNull);
50 protected int compareTo0(Constant other) { argument

Completed in 591 milliseconds

1234567891011>>