/external/easymock/src/org/easymock/internal/matchers/ |
Equals.java | 52 Equals other = (Equals) o;
53 return this.expected == null && other.expected == null
55 && this.expected.equals(other.expected);
|
/external/google-tv-pairing-protocol/cpp/src/polo/encoding/ |
encodingoption.h | 63 bool Equals(const EncodingOption& other) const; 88 bool operator()(const EncodingOption& other) const { 89 return option_.Equals(other);
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/ |
PairingRequestAckMessage.java | 67 PairingRequestAckMessage other = (PairingRequestAckMessage) obj; local 70 if (other.mServerName != null) { 73 } else if (!mServerName.equals(other.mServerName)) {
|
/external/guice/extensions/grapher/src/com/google/inject/grapher/ |
BindingEdge.java | 55 BindingEdge other = (BindingEdge) obj; local 56 return super.equals(other) && Objects.equal(type, other.type);
|
DependencyEdge.java | 49 DependencyEdge other = (DependencyEdge) obj; local 50 return super.equals(other) && Objects.equal(injectionPoint, other.injectionPoint);
|
Edge.java | 48 Edge other = (Edge) obj; local 49 return Objects.equal(fromId, other.fromId) && Objects.equal(toId, other.toId);
|
ImplementationNode.java | 48 ImplementationNode other = (ImplementationNode) obj; local 49 return super.equals(other) && Objects.equal(members, other.members);
|
Node.java | 54 Node other = (Node) obj; local 55 return Objects.equal(id, other.id) 56 && (ignoreSourceInComparisons || Objects.equal(source, other.source));
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
TimeZoneRule.java | 79 * @param other The <code>TimeZoneRule</code> object to be compared with. 80 * @return true if the other <code>TimeZoneRule</code> is the same as this one. 82 public boolean isEquivalentTo(TimeZoneRule other) { 83 if (rawOffset == other.rawOffset && dstSavings == other.dstSavings) {
|
/external/icu/icu4c/source/i18n/ |
currfmt.cpp | 27 CurrencyFormat::CurrencyFormat(const CurrencyFormat& other) : 28 MeasureFormat(other), fmt(NULL) 30 fmt = (NumberFormat*) other.fmt->clone();
|
sortkey.cpp | 27 // than the other 73 CollationKey::CollationKey(const CollationKey& other) 74 : UObject(other), fFlagAndLength(other.getLength()), 75 fHashCode(other.fHashCode) 77 if (other.isBogus()) 90 uprv_memcpy(getBytes(), other.getBytes(), length); 147 CollationKey::operator=(const CollationKey& other) 149 if (this != &other) 151 if (other.isBogus() [all...] |
tzgnames.h | 46 virtual UBool operator==(const TimeZoneGenericNames& other) const; 47 virtual UBool operator!=(const TimeZoneGenericNames& other) const {return !operator==(other);};
|
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/ |
MockSocketConnection.java | 54 private MockSocket other; field in class:MockSocketConnection.MockSocket 67 synchronized (other.buffer) { 68 other.buffer.add(Byte.valueOf((byte) b)); 69 other.buffer.notifyAll(); 84 if (other.closed) { 111 void connect(MockSocket other) { 112 this.other = other; 113 other.other = this [all...] |
/external/jcommander/src/main/java/com/beust/jcommander/ |
StringKey.java | 39 StringKey other = (StringKey) obj; 41 if (other.m_name != null) 43 } else if (!m_name.equals(other.m_name))
|
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/extras/LIRC/ |
OISLIRC.h | 38 RemoteInfo( const RemoteInfo &other ) 40 buttons = other.buttons; 41 buttonMap = other.buttonMap;
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/data/ |
ModelData.java | 36 for (ModelMesh other : meshes) {
37 if (other.id.equals(mesh.id)) {
38 throw new GdxRuntimeException("Mesh with id '" + other.id + "' already in model");
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/ |
TextureDescriptor.java | 29 // TODO add other values, see http://www.opengl.org/sdk/docs/man/xhtml/glTexParameter.xml
52 public <V extends T> void set (final TextureDescriptor<V> other) {
53 texture = other.texture;
54 minFilter = other.minFilter;
55 magFilter = other.magFilter;
56 uWrap = other.uWrap;
57 vWrap = other.vWrap;
65 final TextureDescriptor<?> other = (TextureDescriptor<?>)obj;
66 return other.texture == texture && other.minFilter == minFilter && other.magFilter == magFilter && other.uWrap == uWrap [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
Route.java | 106 public boolean equals(Object other) { 107 return (other instanceof RouteHeader) && super.equals(other);
|
RouteList.java | 71 public boolean equals(Object other) { 72 if (!(other instanceof RouteList)) 74 RouteList that = (RouteList) other;
|
/external/pdfium/xfa/src/fxbarcode/common/reedsolomon/ |
BC_ReedSolomonGF256Poly.h | 20 CBC_ReedSolomonGF256Poly* AddOrSubtract(CBC_ReedSolomonGF256Poly* other,
22 CBC_ReedSolomonGF256Poly* Multiply(CBC_ReedSolomonGF256Poly* other,
28 CFX_PtrArray* Divide(CBC_ReedSolomonGF256Poly* other, int32_t& e);
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
LessZeroFrame.java | 86 LessZeroFrame other = (LessZeroFrame)object; local 88 return this.u2offsetDelta == other.u2offsetDelta && 89 this.choppedVariablesCount != other.choppedVariablesCount;
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
UnknownFieldData.java | 13 // in the documentation and/or other materials provided with the 77 UnknownFieldData other = (UnknownFieldData) o; local 78 return tag == other.tag && Arrays.equals(bytes, other.bytes);
|
/external/skia/src/core/ |
SkPictureContentInfo.cpp | 163 void SkPictureContentInfo::swap(SkPictureContentInfo* other) { 164 SkTSwap(fNumOperations, other->fNumOperations); 165 SkTSwap(fNumTexts, other->fNumTexts); 166 SkTSwap(fNumPaintWithPathEffectUses, other->fNumPaintWithPathEffectUses); 167 SkTSwap(fNumFastPathDashEffects, other->fNumFastPathDashEffects); 168 SkTSwap(fNumAAConcavePaths, other->fNumAAConcavePaths); 169 SkTSwap(fNumAAHairlineConcavePaths, other->fNumAAHairlineConcavePaths); 170 SkTSwap(fNumAADFEligibleConcavePaths, other->fNumAADFEligibleConcavePaths); 171 SkTSwap(fNumLayers, other->fNumLayers); 172 SkTSwap(fNumInteriorLayers, other->fNumInteriorLayers) [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/ |
BaseAnnotationElement.java | 13 * in the documentation and/or other materials provided with the 49 AnnotationElement other = (AnnotationElement)o; local 50 return getName().equals(other.getName()) && 51 getValue().equals(other.getValue());
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
Property.java | 78 public boolean equals(Object other) { 79 if (other instanceof Property) { 80 Property p = (Property) other;
|